diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/.gitignore b/GEMstack/onboard/visualization/sr_viz/threeD/.gitignore
new file mode 100644
index 000000000..4a7f73a2e
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/.gitignore
@@ -0,0 +1,24 @@
+# Nuxt dev/build outputs
+.output
+.data
+.nuxt
+.nitro
+.cache
+dist
+
+# Node dependencies
+node_modules
+
+# Logs
+logs
+*.log
+
+# Misc
+.DS_Store
+.fleet
+.idea
+
+# Local env files
+.env
+.env.*
+!.env.example
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/README.md b/GEMstack/onboard/visualization/sr_viz/threeD/README.md
new file mode 100644
index 000000000..e215bc4cc
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/README.md
@@ -0,0 +1,36 @@
+This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+# or
+pnpm dev
+# or
+bun dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
+
+This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
+
+## Learn More
+
+To learn more about Next.js, take a look at the following resources:
+
+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
+
+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
+
+## Deploy on Vercel
+
+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
+
+Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/eslint.config.mjs b/GEMstack/onboard/visualization/sr_viz/threeD/eslint.config.mjs
new file mode 100644
index 000000000..c85fb67c4
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/eslint.config.mjs
@@ -0,0 +1,16 @@
+import { dirname } from "path";
+import { fileURLToPath } from "url";
+import { FlatCompat } from "@eslint/eslintrc";
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = dirname(__filename);
+
+const compat = new FlatCompat({
+ baseDirectory: __dirname,
+});
+
+const eslintConfig = [
+ ...compat.extends("next/core-web-vitals", "next/typescript"),
+];
+
+export default eslintConfig;
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/README.md b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/README.md
new file mode 100644
index 000000000..d77b503f4
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/README.md
@@ -0,0 +1,77 @@
+# Nuxt Minimal Starter
+
+Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
+
+## Setup
+
+You need to have **Node.js** - ```18.x``` or newer. A good way to install different versions of Node.js is using Node Version Manager ([nvm](https://github.com/nvm-sh/nvm)).
+
+Make sure to install dependencies:
+
+```bash
+# npm
+npm install
+
+# pnpm
+pnpm install
+
+# yarn
+yarn install
+
+# bun
+bun install
+```
+
+## Development Server
+
+Start the development server on `http://localhost:3000`:
+
+```bash
+# npm
+npm run dev
+
+# pnpm
+pnpm dev
+
+# yarn
+yarn dev
+
+# bun
+bun run dev
+```
+
+## Production
+
+Build the application for production:
+
+```bash
+# npm
+npm run build
+
+# pnpm
+pnpm build
+
+# yarn
+yarn build
+
+# bun
+bun run build
+```
+
+Locally preview production build:
+
+```bash
+# npm
+npm run preview
+
+# pnpm
+pnpm preview
+
+# yarn
+yarn preview
+
+# bun
+bun run preview
+```
+
+Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/app.vue b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/app.vue
new file mode 100644
index 000000000..2b1be0907
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/app.vue
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/AxesReference.vue b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/AxesReference.vue
new file mode 100644
index 000000000..693fc97de
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/AxesReference.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Car.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Car.js
new file mode 100644
index 000000000..92496ada6
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Car.js
@@ -0,0 +1,149 @@
+import * as THREE from "three";
+import { GLTFLoader } from "three/examples/jsm/loaders/GLTFLoader.js";
+import URDFLoader from 'urdf-loader';
+const CAR_X = 19651.6005859375;
+const CAR_Y = 14238.344896316528;
+const CAR_Z = 47565.92169100046;
+const SCALE_RATE = 0.0002;
+export const CAR_WIDTH = CAR_X * SCALE_RATE;
+export const CAR_HEIGHT = CAR_Y * SCALE_RATE;
+export const CAR_LENGTH = CAR_Z * SCALE_RATE;
+
+export class Car {
+ constructor(modelPath, position = { x: 0, y: 0, z: 0 }, heading = Math.PI / 2, onLoadCallback) {
+ this.position = new THREE.Vector3(position.x, position.y, position.z);
+ this.heading = heading;
+ this.velocity = 0;
+ this.wheelBase = CAR_LENGTH * 5 / 8;
+ this.maxSpeed = 20;
+ this.acceleration = 0.5;
+ this.friction = 0.98;
+ this.steerAngle = 0;
+ this.maxSteerAngle = Math.PI / 6;
+
+ const loader = new GLTFLoader();
+ loader.load(
+ modelPath,
+ (gltf) => {
+ this.group = gltf.scene;
+ const bodyColor = '#ffffff';
+ this.group.traverse((child) => {
+ if (
+ child instanceof THREE.Mesh &&
+ child.material instanceof THREE.MeshStandardMaterial
+ ) {
+ child.material = child.material.clone();
+ child.material.color.set(bodyColor);
+ }
+ });
+ this.group.position.set(this.position.x, this.position.y, this.position.z);
+ // this.group.scale.set(SCALE_RATE, SCALE_RATE, SCALE_RATE);
+ this.group.rotation.y = this.heading;
+
+ if (onLoadCallback) onLoadCallback(this);
+ },
+ undefined,
+ (error) => console.error("Error loading car model:", error)
+ );
+ // const loader = new URDFLoader();
+ // loader.load(
+ // modelPath,
+ // (car) => {
+ // this.group = car;
+ // this.group.position.set(this.position.x, this.position.y, this.position.z);
+ // // this.group.scale.set(SCALE_RATE, SCALE_RATE, SCALE_RATE);
+ // this.group.rotation.x = -Math.PI / 2;
+ // this.group.rotation.z = -this.heading;
+
+ // if (onLoadCallback) onLoadCallback(this);
+ // },
+ // undefined,
+ // (error) => console.error("Error loading car model:", error)
+ // );
+ }
+
+ update(keys, dt) {
+ if (!this.group) return;
+
+ if (keys.forward) this.velocity = Math.min(this.velocity + this.acceleration, this.maxSpeed);
+ if (keys.backward) this.velocity = Math.max(this.velocity - this.acceleration, -this.maxSpeed);
+ this.velocity *= this.friction;
+
+ if (keys.right) this.steerAngle = Math.max(this.steerAngle - 0.02, -this.maxSteerAngle);
+ if (keys.left) this.steerAngle = Math.min(this.steerAngle + 0.02, this.maxSteerAngle);
+ if (!keys.left && !keys.right) this.steerAngle *= 0.9;
+
+ const frontWheel = this.position.clone().add(new THREE.Vector3(
+ Math.sin(this.heading) * (this.wheelBase / 2) - Math.cos(this.heading) * (CAR_WIDTH / 2),
+ 0,
+ Math.cos(this.heading) * (this.wheelBase / 2) + Math.sin(this.heading) * (CAR_WIDTH / 2)
+ ));
+ const backWheel = this.position.clone().add(new THREE.Vector3(
+ -Math.sin(this.heading) * (this.wheelBase / 2) - Math.cos(this.heading) * (CAR_WIDTH / 2),
+ 0,
+ -Math.cos(this.heading) * (this.wheelBase / 2) + Math.sin(this.heading) * (CAR_WIDTH / 2)
+ ));
+
+ backWheel.add(new THREE.Vector3(
+ Math.sin(this.heading) * this.velocity * dt,
+ 0,
+ Math.cos(this.heading) * this.velocity * dt
+ ));
+ frontWheel.add(new THREE.Vector3(
+ Math.sin(this.heading + this.steerAngle) * this.velocity * dt,
+ 0,
+ Math.cos(this.heading + this.steerAngle) * this.velocity * dt
+ ));
+
+ this.position = frontWheel.clone().add(backWheel).multiplyScalar(0.5).add(new THREE.Vector3(
+ Math.cos(this.heading) * (CAR_WIDTH / 2),
+ 0,
+ -Math.sin(this.heading) * (CAR_WIDTH / 2)
+ ));
+ this.heading = Math.atan2(frontWheel.x - backWheel.x, frontWheel.z - backWheel.z);
+
+ this.group.position.copy(this.position);
+ this.group.rotation.z = -this.heading;
+ }
+ updateFromLog(logData) {
+ if (!this.group) return;
+ this.velocity = logData.velocity;
+ this.acceleration = logData.acceleration;
+ this.steerAngle = logData.steering_wheel_angle;
+ this.position.set(logData.position[1], logData.position[2], logData.position[0]);
+ this.heading = logData.rotation[1];
+ this.group.position.copy(this.position);
+ this.group.rotation.y = this.heading;
+ }
+
+
+ dispose() {
+ if (!this.group) return;
+
+ this.group.traverse((child) => {
+ if (child.isMesh) {
+ child.geometry.dispose();
+
+ if (child.material) {
+ if (Array.isArray(child.material)) {
+ child.material.forEach((material) => {
+ material.map?.dispose();
+ material.normalMap?.dispose();
+ material.roughnessMap?.dispose();
+ material.dispose();
+ });
+ } else {
+ child.material.map?.dispose();
+ child.material.normalMap?.dispose();
+ child.material.roughnessMap?.dispose();
+ child.material.dispose();
+ }
+ }
+ }
+ });
+
+ this.group.removeFromParent();
+ this.group = null;
+ }
+}
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Human.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Human.js
new file mode 100644
index 000000000..9ccc6dbd2
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Human.js
@@ -0,0 +1,86 @@
+import * as THREE from "three";
+import { CAR_HEIGHT } from "./Car.js";
+import { HUMAN_BODY_RATIOS, HUMAN_TO_CAR_HEIGHT_RATIO } from "../utils/constants.js";
+
+const HUMAN_HEIGHT = CAR_HEIGHT * HUMAN_TO_CAR_HEIGHT_RATIO;
+const HUMAN_BODY_LENGTH = HUMAN_HEIGHT * HUMAN_BODY_RATIOS.body;
+const HUMAN_HEAD_RADIUS = HUMAN_HEIGHT * HUMAN_BODY_RATIOS.head;
+const HUMAN_HEAD_COLOR = 0xffcc99;
+const HUMAN_ARM_LENGTH = HUMAN_HEIGHT * HUMAN_BODY_RATIOS.arm;
+const HUMAN_LEG_LENGTH = HUMAN_HEIGHT * HUMAN_BODY_RATIOS.leg;
+const HUMAN_LEG_COLOR = 0x555555;
+
+export default class Human {
+ constructor(color = 0x00aaff, position = { x: 0, y: 0, z: 0 }, rotation = 0) {
+ this.group = new THREE.Group();
+
+ const bodyGeometry = new THREE.BoxGeometry(HUMAN_BODY_LENGTH / 1.2, HUMAN_BODY_LENGTH, HUMAN_BODY_LENGTH / 1.6);
+ const bodyMaterial = new THREE.MeshStandardMaterial({ color });
+ this.body = new THREE.Mesh(bodyGeometry, bodyMaterial);
+ this.body.position.y = HUMAN_LEG_LENGTH + (HUMAN_BODY_LENGTH / 2);
+ this.group.add(this.body);
+
+ const headGeometry = new THREE.SphereGeometry(HUMAN_HEAD_RADIUS);
+ const headMaterial = new THREE.MeshStandardMaterial({ color: HUMAN_HEAD_COLOR });
+ this.head = new THREE.Mesh(headGeometry, headMaterial);
+ this.head.position.y = HUMAN_LEG_LENGTH + HUMAN_BODY_LENGTH + HUMAN_HEAD_RADIUS;
+ this.group.add(this.head);
+
+ const armGeometry = new THREE.CylinderGeometry(HUMAN_ARM_LENGTH / 6, HUMAN_ARM_LENGTH / 6, HUMAN_ARM_LENGTH);
+ const armMaterial = new THREE.MeshStandardMaterial({ color });
+
+ this.leftShoulderPivot = new THREE.Group();
+ this.leftShoulderPivot.position.set(
+ (HUMAN_BODY_LENGTH / 1.2) / 2 + HUMAN_ARM_LENGTH / 6,
+ HUMAN_LEG_LENGTH + HUMAN_BODY_LENGTH - HUMAN_ARM_LENGTH / 1.7,
+ 0
+ );
+ this.group.add(this.leftShoulderPivot);
+
+ this.leftArm = new THREE.Mesh(armGeometry, armMaterial);
+ this.leftShoulderPivot.add(this.leftArm);
+
+ this.rightShoulderPivot = new THREE.Group();
+ this.rightShoulderPivot.position.set(
+ -(HUMAN_BODY_LENGTH / 1.2) / 2 - HUMAN_ARM_LENGTH / 6,
+ HUMAN_LEG_LENGTH + HUMAN_BODY_LENGTH - HUMAN_ARM_LENGTH / 1.7,
+ 0
+ );
+ this.group.add(this.rightShoulderPivot);
+
+ this.rightArm = new THREE.Mesh(armGeometry, armMaterial);
+ this.rightShoulderPivot.add(this.rightArm);
+
+ const legGeometry = new THREE.CylinderGeometry(HUMAN_LEG_LENGTH / 6, HUMAN_LEG_LENGTH / 6, HUMAN_LEG_LENGTH);
+ const legMaterial = new THREE.MeshStandardMaterial({ color: HUMAN_LEG_COLOR });
+ this.leftLeg = new THREE.Mesh(legGeometry, legMaterial);
+ this.rightLeg = new THREE.Mesh(legGeometry, legMaterial);
+ this.leftLeg.position.set(-HUMAN_LEG_LENGTH / 6, HUMAN_LEG_LENGTH / 2, 0);
+ this.rightLeg.position.set(HUMAN_LEG_LENGTH / 6, HUMAN_LEG_LENGTH / 2, 0);
+ this.group.add(this.leftLeg, this.rightLeg);
+
+ this.group.position.set(position.x, position.y, position.z);
+ this.group.rotation.y = rotation;
+
+ this.walkingSpeed = 0;
+ this.walkingPhase = 0;
+ }
+ updateFromLog(logData) {
+ if (!this.group) return;
+ this.group.position.set(logData.position[1], logData.position[2], logData.position[0]);
+ this.group.rotation.y = logData.rotation[1];
+ this.walkingSpeed = logData.velocity;
+ }
+
+ walk() {
+ this.walkingPhase += this.walkingSpeed;
+
+ const swingAmount = Math.PI / 6;
+
+ this.leftShoulderPivot.rotation.x = Math.sin(this.walkingPhase) * swingAmount;
+ this.rightShoulderPivot.rotation.x = -Math.sin(this.walkingPhase) * swingAmount;
+
+ this.leftLeg.rotation.x = -Math.sin(this.walkingPhase) * swingAmount;
+ this.rightLeg.rotation.x = Math.sin(this.walkingPhase) * swingAmount;
+ }
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/LogReader.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/LogReader.js
new file mode 100644
index 000000000..e9f4eede5
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/LogReader.js
@@ -0,0 +1,63 @@
+export default class LogReader {
+ constructor(logData, scene, createFuncs) {
+ this.framerate = logData.framerate || 60;
+ this.totalFrames = logData.totalFrames || 0;
+ this.frames = logData.data || [];
+ this.scene = scene;
+ this.currentFrame = 0;
+ this.playing = true;
+ this.createFuncs = createFuncs;
+ this.models = {}
+ this.car = null;
+ for (const type of Object.keys(createFuncs)) {
+ this.models[type] = new Map();
+ }
+ }
+
+ update(dt) {
+ if (!this.playing) return;
+
+ const frameData = this.frames[this.currentFrame];
+ if (!frameData) return;
+
+ frameData.objects.forEach(obj => {
+ const id = obj.id;
+ const type = obj.type;
+ const position = obj.position;
+ if (this.models[type].has(id)) {
+ const model = this.models[type].get(id);
+ if ((type === 'vehicle' && obj.frame === 0) || type !== 'vehicle') {
+ model.updateFromLog(obj);
+ }
+ } else {
+ const createFunc = this.createFuncs[type];
+ if (createFunc) {
+ const orientation = obj.orientation || obj.misc.orientation;
+ const model = createFunc(position[1], position[2], position[0], orientation);
+ if (type === 'vehicle' && id === 0) {
+ this.car = model;
+ }
+ this.models[type].set(id, model);
+ }
+ }
+ });
+
+ this.currentFrame++;
+ if (this.currentFrame >= this.frames.length) {
+ this.playing = false;
+ }
+ }
+
+ reset() {
+ this.currentFrame = 0;
+ this.playing = true;
+ }
+
+ pause() {
+ this.playing = false;
+ }
+
+ play() {
+ this.playing = true;
+ }
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/RoadVehicleViz.vue b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/RoadVehicleViz.vue
new file mode 100644
index 000000000..d30159bc3
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/RoadVehicleViz.vue
@@ -0,0 +1,328 @@
+
+
+
+
+
+
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/StreetLight.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/StreetLight.js
new file mode 100644
index 000000000..8bd998ba8
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/StreetLight.js
@@ -0,0 +1,51 @@
+import * as THREE from "three";
+import { GLTFLoader } from "three/examples/jsm/loaders/GLTFLoader.js";
+const SCALE_RATE = 1;
+const MODEL_MAPS = {
+ 0: "single-arm",
+ 1: "double-arm",
+};
+const TEXTURE_MAPS = {
+ "BaseColor": "map",
+ "Metalness": "metalnessMap",
+ "Roughness": "roughnessMap",
+ "Normal": "normalMap",
+ "Transmission": "transmissionMap",
+ "Emission": "emissiveMap",
+};
+
+export default class StreetLight {
+ constructor(modelPath, position = { x: 0, y: 0, z: 0 }, onLoadCallback) {
+ this.position = new THREE.Vector3(position.x, position.y, position.z);
+
+ const loader = new GLTFLoader();
+ loader.load(
+ modelPath,
+ (gltf) => {
+ this.group = gltf.scene;
+ for (let i = 0; i < this.group.children.length; i++) {
+ const model = MODEL_MAPS[i];
+ const model_texture_folder_path = `/textures/${model} street light pole/`;
+ for (const [textureName, textureMap] of Object.entries(TEXTURE_MAPS)) {
+ const texturePath = model_texture_folder_path + model + '_' + textureName + ".jpg";
+ const textureLoader = new THREE.TextureLoader();
+ const texture = textureLoader.load(texturePath);
+ this.group.children[i].material[textureMap] = texture;
+ }
+ this.group.children[i].material.transparent = true;
+ this.group.children[i].material.emissive = new THREE.Color(0xffffff);
+ this.group.children[i].material.roughness = 0.5;
+ }
+ this.group.position.set(this.position.x, this.position.y, this.position.z);
+ this.group.scale.set(SCALE_RATE, SCALE_RATE, SCALE_RATE);
+
+ if (onLoadCallback) onLoadCallback(this);
+ console.log(this.group);
+ },
+ (xhr) => {
+ console.log((xhr.loaded / xhr.total * 100) + '% loaded');
+ },
+ (error) => console.error("Error loading street light model:", error)
+ );
+ }
+}
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/TrafficLight.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/TrafficLight.js
new file mode 100644
index 000000000..4762c2867
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/TrafficLight.js
@@ -0,0 +1,94 @@
+// import * as THREE from "three";
+
+// const POLE_RADIUS = 0.1;
+// const POLE_HEIGHT = 4;
+// const POLE_COLOR = 0x555555;
+// const BOX_WIDTH = 0.5;
+// const BOX_HEIGHT = 1.5;
+// const BOX_DEPTH = 0.4;
+// const BOX_COLOR = 0x222222;
+// const LIGHT_RADIUS = 0.15;
+// const LIGHT_OFFSET = 0.2;
+
+// export default class TrafficLight {
+// constructor(position, direction = 0) {
+// this.group = new THREE.Group();
+// this.createPole();
+// this.createLightBox();
+// this.createLights();
+// this.group.position.set(position.x, 0, position.z);
+// this.group.rotation.y = direction;
+// }
+
+// createPole() {
+// const poleGeometry = new THREE.CylinderGeometry(POLE_RADIUS, POLE_RADIUS, POLE_HEIGHT, 8);
+// const poleMaterial = new THREE.MeshStandardMaterial({ color: POLE_COLOR });
+// this.pole = new THREE.Mesh(poleGeometry, poleMaterial);
+// this.pole.position.y = POLE_HEIGHT / 2;
+// this.group.add(this.pole);
+// }
+
+// createLightBox() {
+// const boxGeometry = new THREE.BoxGeometry(BOX_WIDTH, BOX_HEIGHT, BOX_DEPTH);
+// const boxMaterial = new THREE.MeshStandardMaterial({ color: BOX_COLOR });
+// this.lightBox = new THREE.Mesh(boxGeometry, boxMaterial);
+// this.lightBox.position.set(0, POLE_HEIGHT * 7 / 8, 0);
+// this.group.add(this.lightBox);
+// }
+
+// createLights() {
+// this.lights = {
+// red: this.createLight(0xff0000, this.lightBox.position.y + 2 * LIGHT_RADIUS),
+// yellow: this.createLight(0xffff00, this.lightBox.position.y),
+// green: this.createLight(0x00ff00, this.lightBox.position.y - 2 * LIGHT_RADIUS),
+// };
+// Object.values(this.lights).forEach(light => this.group.add(light));
+// this.setLightState("red"); // Default state
+// }
+
+// createLight(color, yPos) {
+// const lightGeometry = new THREE.SphereGeometry(LIGHT_RADIUS);
+// const lightMaterial = new THREE.MeshStandardMaterial({ color, emissive: color, emissiveIntensity: 0 });
+// const light = new THREE.Mesh(lightGeometry, lightMaterial);
+// light.position.set(0, yPos, LIGHT_OFFSET);
+// return light;
+// }
+
+// setLightState(state) {
+// Object.keys(this.lights).forEach(key => {
+// this.lights[key].material.emissiveIntensity = key === state ? 1 : 0;
+// });
+// }
+// }
+import * as THREE from "three";
+import { GLTFLoader } from "three/examples/jsm/loaders/GLTFLoader.js";
+const SCALE_RATE = 1;
+
+export default class TrafficLight {
+ constructor(modelPath, position = { x: 0, y: 0, z: 0 }, rotation = 0, onLoadCallback) {
+ this.position = new THREE.Vector3(position.x, position.y, position.z);
+ // this.durations = {
+ // red: 5,
+ // yellow: 2,
+ // green: 5,
+ // };
+ // this.tick = 0;
+
+ const loader = new GLTFLoader();
+ loader.load(
+ modelPath,
+ (gltf) => {
+ this.group = gltf.scene;
+
+ this.group.position.set(this.position.x, this.position.y, this.position.z);
+ this.group.scale.set(SCALE_RATE, SCALE_RATE, SCALE_RATE);
+ this.group.rotation.y = rotation;
+
+ if (onLoadCallback) onLoadCallback(this);
+ },
+ undefined,
+ (error) => console.error("Error loading traffic light model:", error)
+ );
+ }
+ updateFromLog(logData) { }
+}
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/data.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/data.json
new file mode 100644
index 000000000..3a2b3178c
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/data.json
@@ -0,0 +1,41 @@
+{
+ "framerate": 60,
+ "totalFrames": 100,
+ "data": [
+ {
+ "frame": 0,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0 (current),
+ "position": [x, y, z],
+ "steering_wheel_angle": 0,
+ "velocity": 0,
+ "acceleration": 0,
+ "rotation": [pitch, yaw, roll],
+ "misc": [
+ ...(rest of the vehicle data)
+ ]
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "position": [x, y, z],
+ "velocity": 0,
+ "acceleration": 0,
+ "misc": [
+ ...(rotation, etc.)
+ ]
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "position": [x, y, z],
+ "misc": [
+ ...(rest of the traffic_light data)
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/nuxt.config.ts b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/nuxt.config.ts
new file mode 100644
index 000000000..e11336ba3
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/nuxt.config.ts
@@ -0,0 +1,6 @@
+// https://nuxt.com/docs/api/configuration/nuxt-config
+export default defineNuxtConfig({
+ compatibilityDate: '2024-11-01',
+ devtools: { enabled: true },
+ modules: ['@unocss/nuxt'],
+})
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package-lock.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package-lock.json
new file mode 100644
index 000000000..5b16ff0f0
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package-lock.json
@@ -0,0 +1,10333 @@
+{
+ "name": "nuxt-app",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "nuxt-app",
+ "hasInstallScript": true,
+ "dependencies": {
+ "nuxt": "^3.16.1",
+ "three": "^0.174.0",
+ "urdf-loader": "^0.12.4",
+ "vue": "^3.5.13",
+ "vue-router": "^4.5.0"
+ },
+ "devDependencies": {
+ "@unocss/nuxt": "^66.1.0-beta.6",
+ "unocss": "^66.1.0-beta.6"
+ }
+ },
+ "node_modules/@ampproject/remapping": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
+ "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@antfu/install-pkg": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-1.0.0.tgz",
+ "integrity": "sha512-xvX6P/lo1B3ej0OsaErAjqgFYzYVcJpamjLAFLYh9vRJngBrMoUG7aVnrGTeqM7yxbyTD5p3F2+0/QUEh8Vzhw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "package-manager-detector": "^0.2.8",
+ "tinyexec": "^0.3.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@antfu/install-pkg/node_modules/package-manager-detector": {
+ "version": "0.2.11",
+ "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.2.11.tgz",
+ "integrity": "sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "quansync": "^0.2.7"
+ }
+ },
+ "node_modules/@antfu/utils": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-8.1.1.tgz",
+ "integrity": "sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.26.2",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
+ "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.26.8",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz",
+ "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz",
+ "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.26.2",
+ "@babel/generator": "^7.26.10",
+ "@babel/helper-compilation-targets": "^7.26.5",
+ "@babel/helper-module-transforms": "^7.26.0",
+ "@babel/helpers": "^7.26.10",
+ "@babel/parser": "^7.26.10",
+ "@babel/template": "^7.26.9",
+ "@babel/traverse": "^7.26.10",
+ "@babel/types": "^7.26.10",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/core/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.10.tgz",
+ "integrity": "sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.26.10",
+ "@babel/types": "^7.26.10",
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-annotate-as-pure": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz",
+ "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.26.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
+ "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.26.5",
+ "@babel/helper-validator-option": "^7.25.9",
+ "browserslist": "^4.24.0",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/helper-create-class-features-plugin": {
+ "version": "7.26.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.26.9.tgz",
+ "integrity": "sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "@babel/helper-member-expression-to-functions": "^7.25.9",
+ "@babel/helper-optimise-call-expression": "^7.25.9",
+ "@babel/helper-replace-supers": "^7.26.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
+ "@babel/traverse": "^7.26.9",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/helper-member-expression-to-functions": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz",
+ "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
+ "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.26.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
+ "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "@babel/traverse": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-optimise-call-expression": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz",
+ "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-plugin-utils": {
+ "version": "7.26.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz",
+ "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-replace-supers": {
+ "version": "7.26.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz",
+ "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-member-expression-to-functions": "^7.25.9",
+ "@babel/helper-optimise-call-expression": "^7.25.9",
+ "@babel/traverse": "^7.26.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz",
+ "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
+ "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
+ "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
+ "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helpers": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.10.tgz",
+ "integrity": "sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/template": "^7.26.9",
+ "@babel/types": "^7.26.10"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz",
+ "integrity": "sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.26.10"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-jsx": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz",
+ "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-typescript": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz",
+ "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-typescript": {
+ "version": "7.26.8",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.8.tgz",
+ "integrity": "sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.25.9",
+ "@babel/helper-create-class-features-plugin": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.26.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
+ "@babel/plugin-syntax-typescript": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.26.9",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz",
+ "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.26.2",
+ "@babel/parser": "^7.26.9",
+ "@babel/types": "^7.26.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.10.tgz",
+ "integrity": "sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.26.2",
+ "@babel/generator": "^7.26.10",
+ "@babel/parser": "^7.26.10",
+ "@babel/template": "^7.26.9",
+ "@babel/types": "^7.26.10",
+ "debug": "^4.3.1",
+ "globals": "^11.1.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz",
+ "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@cloudflare/kv-asset-handler": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.4.0.tgz",
+ "integrity": "sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==",
+ "license": "MIT OR Apache-2.0",
+ "dependencies": {
+ "mime": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/@cloudflare/kv-asset-handler/node_modules/mime": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz",
+ "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==",
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
+ "node_modules/@emnapi/core": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.3.1.tgz",
+ "integrity": "sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/wasi-threads": "1.0.1",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/runtime": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz",
+ "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/wasi-threads": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.1.tgz",
+ "integrity": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@esbuild/aix-ppc64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz",
+ "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz",
+ "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz",
+ "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz",
+ "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz",
+ "integrity": "sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz",
+ "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz",
+ "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz",
+ "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz",
+ "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz",
+ "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz",
+ "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz",
+ "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==",
+ "cpu": [
+ "loong64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz",
+ "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==",
+ "cpu": [
+ "mips64el"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz",
+ "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz",
+ "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==",
+ "cpu": [
+ "riscv64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz",
+ "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==",
+ "cpu": [
+ "s390x"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz",
+ "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz",
+ "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz",
+ "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz",
+ "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz",
+ "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz",
+ "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz",
+ "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz",
+ "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz",
+ "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@iconify/types": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz",
+ "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@iconify/utils": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-2.3.0.tgz",
+ "integrity": "sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@antfu/install-pkg": "^1.0.0",
+ "@antfu/utils": "^8.1.0",
+ "@iconify/types": "^2.0.0",
+ "debug": "^4.4.0",
+ "globals": "^15.14.0",
+ "kolorist": "^1.8.0",
+ "local-pkg": "^1.0.0",
+ "mlly": "^1.7.4"
+ }
+ },
+ "node_modules/@iconify/utils/node_modules/globals": {
+ "version": "15.15.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz",
+ "integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@ioredis/commands": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz",
+ "integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==",
+ "license": "MIT"
+ },
+ "node_modules/@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@isaacs/fs-minipass": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
+ "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^7.0.4"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
+ "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/set-array": "^1.2.1",
+ "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/set-array": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/source-map": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
+ "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
+ "license": "MIT"
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.25",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@kwsites/file-exists": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz",
+ "integrity": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.1.1"
+ }
+ },
+ "node_modules/@kwsites/promise-deferred": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz",
+ "integrity": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==",
+ "license": "MIT"
+ },
+ "node_modules/@mapbox/node-pre-gyp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz",
+ "integrity": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "consola": "^3.2.3",
+ "detect-libc": "^2.0.0",
+ "https-proxy-agent": "^7.0.5",
+ "node-fetch": "^2.6.7",
+ "nopt": "^8.0.0",
+ "semver": "^7.5.3",
+ "tar": "^7.4.0"
+ },
+ "bin": {
+ "node-pre-gyp": "bin/node-pre-gyp"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@mapbox/node-pre-gyp/node_modules/detect-libc": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
+ "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@napi-rs/wasm-runtime": {
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.7.tgz",
+ "integrity": "sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "^1.3.1",
+ "@emnapi/runtime": "^1.3.1",
+ "@tybys/wasm-util": "^0.9.0"
+ }
+ },
+ "node_modules/@netlify/functions": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-3.0.4.tgz",
+ "integrity": "sha512-Ox8+ABI+nsLK+c4/oC5dpquXuEIjzfTlJrdQKgQijCsDQoje7inXFAtKDLvvaGvuvE+PVpMLwQcIUL6P9Ob1hQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@netlify/serverless-functions-api": "1.36.0"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/@netlify/serverless-functions-api": {
+ "version": "1.36.0",
+ "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.36.0.tgz",
+ "integrity": "sha512-z6okREyK8in0486a22Oro0k+YsuyEjDXJt46FpgeOgXqKJ9ElM8QPll0iuLBkpbH33ENiNbIPLd1cuClRQnhiw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nuxt/cli": {
+ "version": "3.23.1",
+ "resolved": "https://registry.npmjs.org/@nuxt/cli/-/cli-3.23.1.tgz",
+ "integrity": "sha512-vwHicydSXkpQlrjSOHOMLx4rULMNke1tqT+B2rGkVX9RMWJu9jdvp6GqRWJfqeeLoFG0gYNr02pSp6ulxuwOMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "c12": "^3.0.2",
+ "chokidar": "^4.0.3",
+ "citty": "^0.1.6",
+ "clipboardy": "^4.0.0",
+ "consola": "^3.4.2",
+ "defu": "^6.1.4",
+ "fuse.js": "^7.1.0",
+ "giget": "^2.0.0",
+ "h3": "^1.15.1",
+ "httpxy": "^0.1.7",
+ "jiti": "^2.4.2",
+ "listhen": "^1.9.0",
+ "nypm": "^0.6.0",
+ "ofetch": "^1.4.1",
+ "ohash": "^2.0.11",
+ "pathe": "^2.0.3",
+ "perfect-debounce": "^1.0.0",
+ "pkg-types": "^2.1.0",
+ "scule": "^1.3.0",
+ "semver": "^7.7.1",
+ "std-env": "^3.8.1",
+ "tinyexec": "^0.3.2",
+ "ufo": "^1.5.4"
+ },
+ "bin": {
+ "nuxi": "bin/nuxi.mjs",
+ "nuxi-ng": "bin/nuxi.mjs",
+ "nuxt": "bin/nuxi.mjs",
+ "nuxt-cli": "bin/nuxi.mjs"
+ },
+ "engines": {
+ "node": "^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@nuxt/devalue": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz",
+ "integrity": "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==",
+ "license": "MIT"
+ },
+ "node_modules/@nuxt/devtools": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/@nuxt/devtools/-/devtools-2.3.1.tgz",
+ "integrity": "sha512-SA/ShgsB/E1DMAC7BZI6sP00djvOXfhrwaqdpb1rNNOqNJ/JX1oc+LVNtKTPAzxUouDsv5sAeEVdPT5enync2g==",
+ "license": "MIT",
+ "dependencies": {
+ "@nuxt/devtools-kit": "2.3.1",
+ "@nuxt/devtools-wizard": "2.3.1",
+ "@nuxt/kit": "^3.16.1",
+ "@vue/devtools-core": "^7.7.2",
+ "@vue/devtools-kit": "^7.7.2",
+ "birpc": "^2.2.0",
+ "consola": "^3.4.2",
+ "destr": "^2.0.3",
+ "error-stack-parser-es": "^1.0.5",
+ "execa": "^8.0.1",
+ "fast-npm-meta": "^0.3.1",
+ "get-port-please": "^3.1.2",
+ "hookable": "^5.5.3",
+ "image-meta": "^0.2.1",
+ "is-installed-globally": "^1.0.0",
+ "launch-editor": "^2.10.0",
+ "local-pkg": "^1.1.1",
+ "magicast": "^0.3.5",
+ "nypm": "^0.6.0",
+ "ohash": "^2.0.11",
+ "pathe": "^2.0.3",
+ "perfect-debounce": "^1.0.0",
+ "pkg-types": "^2.1.0",
+ "semver": "^7.7.1",
+ "simple-git": "^3.27.0",
+ "sirv": "^3.0.1",
+ "structured-clone-es": "^1.0.0",
+ "tinyglobby": "^0.2.12",
+ "vite-plugin-inspect": "^11.0.0",
+ "vite-plugin-vue-tracer": "^0.1.1",
+ "which": "^5.0.0",
+ "ws": "^8.18.1"
+ },
+ "bin": {
+ "devtools": "cli.mjs"
+ },
+ "peerDependencies": {
+ "vite": ">=6.0"
+ }
+ },
+ "node_modules/@nuxt/devtools-kit": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/@nuxt/devtools-kit/-/devtools-kit-2.3.1.tgz",
+ "integrity": "sha512-sggap7UTV0823cZk1buCEdd3KG+dMo73DpBuN+zHFC8UG3PfSKDlbVmQGb0TegxWTXG6BwItNQo8gd+pZzf/MA==",
+ "license": "MIT",
+ "dependencies": {
+ "@nuxt/kit": "^3.16.1",
+ "@nuxt/schema": "^3.16.1",
+ "execa": "^8.0.1"
+ },
+ "peerDependencies": {
+ "vite": ">=6.0"
+ }
+ },
+ "node_modules/@nuxt/devtools-wizard": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/@nuxt/devtools-wizard/-/devtools-wizard-2.3.1.tgz",
+ "integrity": "sha512-FqJVncQ9XiVR3uVwnqxHysCShfwrsK8JL4Q8rNrQoY9ly0Q7h6vimX44asFZSSCQ25WYo74PikdvVKV/bZW+qg==",
+ "license": "MIT",
+ "dependencies": {
+ "consola": "^3.4.2",
+ "diff": "^7.0.0",
+ "execa": "^8.0.1",
+ "magicast": "^0.3.5",
+ "pathe": "^2.0.3",
+ "pkg-types": "^2.1.0",
+ "prompts": "^2.4.2",
+ "semver": "^7.7.1"
+ },
+ "bin": {
+ "devtools-wizard": "cli.mjs"
+ }
+ },
+ "node_modules/@nuxt/kit": {
+ "version": "3.16.1",
+ "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.16.1.tgz",
+ "integrity": "sha512-Perby8hJGUeCWad5oTVXb/Ibvp18ZCUC5PxHHu+acMDmVfnxSo48yqk7qNd09VkTF3LEzoEjNZpmW2ZWN0ry7A==",
+ "license": "MIT",
+ "dependencies": {
+ "c12": "^3.0.2",
+ "consola": "^3.4.2",
+ "defu": "^6.1.4",
+ "destr": "^2.0.3",
+ "errx": "^0.1.0",
+ "exsolve": "^1.0.4",
+ "globby": "^14.1.0",
+ "ignore": "^7.0.3",
+ "jiti": "^2.4.2",
+ "klona": "^2.0.6",
+ "knitwork": "^1.2.0",
+ "mlly": "^1.7.4",
+ "ohash": "^2.0.11",
+ "pathe": "^2.0.3",
+ "pkg-types": "^2.1.0",
+ "scule": "^1.3.0",
+ "semver": "^7.7.1",
+ "std-env": "^3.8.1",
+ "ufo": "^1.5.4",
+ "unctx": "^2.4.1",
+ "unimport": "^4.1.2",
+ "untyped": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=18.12.0"
+ }
+ },
+ "node_modules/@nuxt/schema": {
+ "version": "3.16.1",
+ "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.16.1.tgz",
+ "integrity": "sha512-Ri8bmT6MljpVR4DlXf9+acfgGaI4OTEdAzJU5aF2rJS78abtpnBxjXBG65kuhoL1LUlfKppDl8fTkUw5LM2JXQ==",
+ "license": "MIT",
+ "dependencies": {
+ "consola": "^3.4.2",
+ "defu": "^6.1.4",
+ "pathe": "^2.0.3",
+ "std-env": "^3.8.1"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.10.0"
+ }
+ },
+ "node_modules/@nuxt/telemetry": {
+ "version": "2.6.6",
+ "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.6.6.tgz",
+ "integrity": "sha512-Zh4HJLjzvm3Cq9w6sfzIFyH9ozK5ePYVfCUzzUQNiZojFsI2k1QkSBrVI9BGc6ArKXj/O6rkI6w7qQ+ouL8Cag==",
+ "license": "MIT",
+ "dependencies": {
+ "@nuxt/kit": "^3.15.4",
+ "citty": "^0.1.6",
+ "consola": "^3.4.2",
+ "destr": "^2.0.3",
+ "dotenv": "^16.4.7",
+ "git-url-parse": "^16.0.1",
+ "is-docker": "^3.0.0",
+ "ofetch": "^1.4.1",
+ "package-manager-detector": "^1.1.0",
+ "pathe": "^2.0.3",
+ "rc9": "^2.1.2",
+ "std-env": "^3.8.1"
+ },
+ "bin": {
+ "nuxt-telemetry": "bin/nuxt-telemetry.mjs"
+ },
+ "engines": {
+ "node": ">=18.12.0"
+ }
+ },
+ "node_modules/@nuxt/vite-builder": {
+ "version": "3.16.1",
+ "resolved": "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.16.1.tgz",
+ "integrity": "sha512-6A/cK743xeGcoMh//Ev1HAybb5VDwovxRsNeubfuqlDxBR7WL695SAfIhEAmxpVDz8LYQBuz/NwGhTaBh7hgaQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nuxt/kit": "3.16.1",
+ "@rollup/plugin-replace": "^6.0.2",
+ "@vitejs/plugin-vue": "^5.2.3",
+ "@vitejs/plugin-vue-jsx": "^4.1.2",
+ "autoprefixer": "^10.4.21",
+ "consola": "^3.4.2",
+ "cssnano": "^7.0.6",
+ "defu": "^6.1.4",
+ "esbuild": "^0.25.1",
+ "escape-string-regexp": "^5.0.0",
+ "exsolve": "^1.0.4",
+ "externality": "^1.0.2",
+ "get-port-please": "^3.1.2",
+ "h3": "^1.15.1",
+ "jiti": "^2.4.2",
+ "knitwork": "^1.2.0",
+ "magic-string": "^0.30.17",
+ "mlly": "^1.7.4",
+ "mocked-exports": "^0.1.1",
+ "ohash": "^2.0.11",
+ "pathe": "^2.0.3",
+ "perfect-debounce": "^1.0.0",
+ "pkg-types": "^2.1.0",
+ "postcss": "^8.5.3",
+ "rollup-plugin-visualizer": "^5.14.0",
+ "std-env": "^3.8.1",
+ "ufo": "^1.5.4",
+ "unenv": "^2.0.0-rc.15",
+ "unplugin": "^2.2.1",
+ "vite": "^6.2.2",
+ "vite-node": "^3.0.9",
+ "vite-plugin-checker": "^0.9.1",
+ "vue-bundle-renderer": "^2.1.1"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0.0"
+ },
+ "peerDependencies": {
+ "vue": "^3.3.4"
+ }
+ },
+ "node_modules/@oxc-parser/binding-darwin-arm64": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.56.5.tgz",
+ "integrity": "sha512-rj4WZqQVJQgLnGnDu2ciIOC5SqcBPc4x11RN0NwuedSGzny5mtBdNVLwt0+8iB15lIjrOKg5pjYJ8GQVPca5HA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-darwin-x64": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.56.5.tgz",
+ "integrity": "sha512-Rr7aMkqcxGIM6fgkpaj9SJj0u1O1g+AT7mJwmdi5PLSQRPR4CkDKfztEnAj5k+d2blWvh9nPZH8G0OCwxIHk1Q==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-arm-gnueabihf": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.56.5.tgz",
+ "integrity": "sha512-jcFCThrWUt5k1GM43tdmI1m2dEnWUPPHHTWKBJbZBXzXLrJJzkqv5OU87Spf1004rYj9swwpa13kIldFwMzglA==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-arm64-gnu": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.56.5.tgz",
+ "integrity": "sha512-zo/9RDgWvugKxCpHHcAC5EW0AqoEvODJ4Iv4aT1Xonv6kcydbyPSXJBQhhZUvTXTAFIlQKl6INHl+Xki9Qs3fw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-arm64-musl": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.56.5.tgz",
+ "integrity": "sha512-SCIqrL5apVbrtMoqOpKX/Ez+c46WmW0Tyhtu+Xby281biH+wYu70m+fux9ZsGmbHc2ojd4FxUcaUdCZtb5uTOQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-x64-gnu": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.56.5.tgz",
+ "integrity": "sha512-I2mpX35NWo83hay4wrnzFLk3VuGK1BBwHaqvEdqsCode8iG8slYJRJPICVbCEWlkR3rotlTQ+608JcRU0VqZ5Q==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-x64-musl": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.56.5.tgz",
+ "integrity": "sha512-xfzUHGYOh3PGWZdBuY5r1czvE8EGWPAmhTWHqkw3/uAfUVWN/qrrLjMojiaiWyUgl/9XIFg05m5CJH9dnngh5Q==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-wasm32-wasi": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.56.5.tgz",
+ "integrity": "sha512-+z3Ofmc1v5kcu8fXgG5vn7T1f52P47ceTTmTXsm5HPY7rq5EMYRUaBnxH6cesXwY1OVVCwYlIZbCiy8Pm1w8zQ==",
+ "cpu": [
+ "wasm32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@napi-rs/wasm-runtime": "^0.2.7"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-win32-arm64-msvc": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.56.5.tgz",
+ "integrity": "sha512-pRg8QrbMh8PgnXBreiONoJBR306u+JN19BXQC7oKIaG4Zxt9Mn8XIyuhUv3ytqjLudSiG2ERWQUoCGLs+yfW0A==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-win32-x64-msvc": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.56.5.tgz",
+ "integrity": "sha512-VALZNcuyw/6rwsxOACQ2YS6rey2d/ym4cNfXqJrHB/MZduAPj4xvij72gHGu3Ywm31KVGLVWk/mrMRiM9CINcA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@oxc-parser/wasm": {
+ "version": "0.60.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/wasm/-/wasm-0.60.0.tgz",
+ "integrity": "sha512-Dkf9/D87WGBCW3L0+1DtpAfL4SrNsgeRvxwjpKCtbH7Kf6K+pxrT0IridaJfmWKu1Ml+fDvj+7HEyBcfUC/TXQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@oxc-project/types": "^0.60.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/Boshen"
+ }
+ },
+ "node_modules/@oxc-project/types": {
+ "version": "0.60.0",
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.60.0.tgz",
+ "integrity": "sha512-prhfNnb3ATFHOCv7mzKFfwLij5RzoUz6Y1n525ZhCEqfq5wreCXL+DyVoq3ShukPo7q45ZjYIdjFUgjj+WKzng==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/Boshen"
+ }
+ },
+ "node_modules/@parcel/watcher": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz",
+ "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "dependencies": {
+ "detect-libc": "^1.0.3",
+ "is-glob": "^4.0.3",
+ "micromatch": "^4.0.5",
+ "node-addon-api": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "@parcel/watcher-android-arm64": "2.5.1",
+ "@parcel/watcher-darwin-arm64": "2.5.1",
+ "@parcel/watcher-darwin-x64": "2.5.1",
+ "@parcel/watcher-freebsd-x64": "2.5.1",
+ "@parcel/watcher-linux-arm-glibc": "2.5.1",
+ "@parcel/watcher-linux-arm-musl": "2.5.1",
+ "@parcel/watcher-linux-arm64-glibc": "2.5.1",
+ "@parcel/watcher-linux-arm64-musl": "2.5.1",
+ "@parcel/watcher-linux-x64-glibc": "2.5.1",
+ "@parcel/watcher-linux-x64-musl": "2.5.1",
+ "@parcel/watcher-win32-arm64": "2.5.1",
+ "@parcel/watcher-win32-ia32": "2.5.1",
+ "@parcel/watcher-win32-x64": "2.5.1"
+ }
+ },
+ "node_modules/@parcel/watcher-android-arm64": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz",
+ "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-darwin-arm64": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz",
+ "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-darwin-x64": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz",
+ "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-freebsd-x64": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz",
+ "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm-glibc": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz",
+ "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm-musl": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz",
+ "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm64-glibc": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz",
+ "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm64-musl": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz",
+ "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-x64-glibc": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz",
+ "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-x64-musl": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz",
+ "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-wasm": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.5.1.tgz",
+ "integrity": "sha512-RJxlQQLkaMMIuWRozy+z2vEqbaQlCuaCgVZIUCzQLYggY22LZbP5Y1+ia+FD724Ids9e+XIyOLXLrLgQSHIthw==",
+ "bundleDependencies": [
+ "napi-wasm"
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "is-glob": "^4.0.3",
+ "micromatch": "^4.0.5",
+ "napi-wasm": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-wasm/node_modules/napi-wasm": {
+ "version": "1.1.0",
+ "inBundle": true,
+ "license": "MIT"
+ },
+ "node_modules/@parcel/watcher-win32-arm64": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz",
+ "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-win32-ia32": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz",
+ "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-win32-x64": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz",
+ "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@polka/url": {
+ "version": "1.0.0-next.28",
+ "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz",
+ "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==",
+ "license": "MIT"
+ },
+ "node_modules/@poppinss/colors": {
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/@poppinss/colors/-/colors-4.1.4.tgz",
+ "integrity": "sha512-FA+nTU8p6OcSH4tLDY5JilGYr1bVWHpNmcLr7xmMEdbWmKHa+3QZ+DqefrXKmdjO/brHTnQZo20lLSjaO7ydog==",
+ "license": "MIT",
+ "dependencies": {
+ "kleur": "^4.1.5"
+ },
+ "engines": {
+ "node": ">=18.16.0"
+ }
+ },
+ "node_modules/@poppinss/colors/node_modules/kleur": {
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
+ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@poppinss/dumper": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/@poppinss/dumper/-/dumper-0.6.3.tgz",
+ "integrity": "sha512-iombbn8ckOixMtuV1p3f8jN6vqhXefNjJttoPaJDMeIk/yIGhkkL3OrHkEjE9SRsgoAx1vBUU2GtgggjvA5hCA==",
+ "license": "MIT",
+ "dependencies": {
+ "@poppinss/colors": "^4.1.4",
+ "@sindresorhus/is": "^7.0.1",
+ "supports-color": "^10.0.0"
+ }
+ },
+ "node_modules/@poppinss/dumper/node_modules/supports-color": {
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.0.0.tgz",
+ "integrity": "sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "node_modules/@poppinss/exception": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@poppinss/exception/-/exception-1.2.1.tgz",
+ "integrity": "sha512-aQypoot0HPSJa6gDPEPTntc1GT6QINrSbgRlRhadGW2WaYqUK3tK4Bw9SBMZXhmxd3GeAlZjVcODHgiu+THY7A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@quansync/fs": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/@quansync/fs/-/fs-0.1.1.tgz",
+ "integrity": "sha512-sx8J1O/+j2lqs8MvsEz6rs/6UAUpCb4fu7C6EqtMqzbS3CmqLkTDTOMK+DrWukvyUuHzl8DhMjfNJzQDTqfGJg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "quansync": "^0.2.4"
+ },
+ "engines": {
+ "node": ">=20.18.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sxzz"
+ }
+ },
+ "node_modules/@redocly/ajv": {
+ "version": "8.11.2",
+ "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz",
+ "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==",
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2",
+ "uri-js-replace": "^1.0.1"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/@redocly/config": {
+ "version": "0.22.1",
+ "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.22.1.tgz",
+ "integrity": "sha512-1CqQfiG456v9ZgYBG9xRQHnpXjt8WoSnDwdkX6gxktuK69v2037hTAR1eh0DGIqpZ1p4k82cGH8yTNwt7/pI9g==",
+ "license": "MIT"
+ },
+ "node_modules/@redocly/openapi-core": {
+ "version": "1.34.0",
+ "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.34.0.tgz",
+ "integrity": "sha512-Ji00EiLQRXq0pJIz5pAjGF9MfQvQVsQehc6uIis6sqat8tG/zh25Zi64w6HVGEDgJEzUeq/CuUlD0emu3Hdaqw==",
+ "license": "MIT",
+ "dependencies": {
+ "@redocly/ajv": "^8.11.2",
+ "@redocly/config": "^0.22.0",
+ "colorette": "^1.2.0",
+ "https-proxy-agent": "^7.0.5",
+ "js-levenshtein": "^1.1.6",
+ "js-yaml": "^4.1.0",
+ "minimatch": "^5.0.1",
+ "pluralize": "^8.0.0",
+ "yaml-ast-parser": "0.0.43"
+ },
+ "engines": {
+ "node": ">=18.17.0",
+ "npm": ">=9.5.0"
+ }
+ },
+ "node_modules/@redocly/openapi-core/node_modules/minimatch": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@rollup/plugin-alias": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-5.1.1.tgz",
+ "integrity": "sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/plugin-commonjs": {
+ "version": "28.0.3",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.3.tgz",
+ "integrity": "sha512-pyltgilam1QPdn+Zd9gaCfOLcnjMEJ9gV+bTw6/r73INdvzf1ah9zLIJBm+kW7R6IUFIQ1YO+VqZtYxZNWFPEQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@rollup/pluginutils": "^5.0.1",
+ "commondir": "^1.0.1",
+ "estree-walker": "^2.0.2",
+ "fdir": "^6.2.0",
+ "is-reference": "1.2.1",
+ "magic-string": "^0.30.3",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=16.0.0 || 14 >= 14.17"
+ },
+ "peerDependencies": {
+ "rollup": "^2.68.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/plugin-commonjs/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "license": "MIT"
+ },
+ "node_modules/@rollup/plugin-inject": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz",
+ "integrity": "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==",
+ "license": "MIT",
+ "dependencies": {
+ "@rollup/pluginutils": "^5.0.1",
+ "estree-walker": "^2.0.2",
+ "magic-string": "^0.30.3"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/plugin-inject/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "license": "MIT"
+ },
+ "node_modules/@rollup/plugin-json": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz",
+ "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==",
+ "license": "MIT",
+ "dependencies": {
+ "@rollup/pluginutils": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/plugin-node-resolve": {
+ "version": "16.0.1",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-16.0.1.tgz",
+ "integrity": "sha512-tk5YCxJWIG81umIvNkSod2qK5KyQW19qcBF/B78n1bjtOON6gzKoVeSzAE8yHCZEDmqkHKkxplExA8KzdJLJpA==",
+ "license": "MIT",
+ "dependencies": {
+ "@rollup/pluginutils": "^5.0.1",
+ "@types/resolve": "1.20.2",
+ "deepmerge": "^4.2.2",
+ "is-module": "^1.0.0",
+ "resolve": "^1.22.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^2.78.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/plugin-replace": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-6.0.2.tgz",
+ "integrity": "sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@rollup/pluginutils": "^5.0.1",
+ "magic-string": "^0.30.3"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/plugin-terser": {
+ "version": "0.4.4",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz",
+ "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==",
+ "license": "MIT",
+ "dependencies": {
+ "serialize-javascript": "^6.0.1",
+ "smob": "^1.0.0",
+ "terser": "^5.17.4"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^2.0.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/pluginutils": {
+ "version": "5.1.4",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz",
+ "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0",
+ "estree-walker": "^2.0.2",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@rollup/pluginutils/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "license": "MIT"
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.36.0.tgz",
+ "integrity": "sha512-jgrXjjcEwN6XpZXL0HUeOVGfjXhPyxAbbhD0BlXUB+abTOpbPiN5Wb3kOT7yb+uEtATNYF5x5gIfwutmuBA26w==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.36.0.tgz",
+ "integrity": "sha512-NyfuLvdPdNUfUNeYKUwPwKsE5SXa2J6bCt2LdB/N+AxShnkpiczi3tcLJrm5mA+eqpy0HmaIY9F6XCa32N5yzg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.36.0.tgz",
+ "integrity": "sha512-JQ1Jk5G4bGrD4pWJQzWsD8I1n1mgPXq33+/vP4sk8j/z/C2siRuxZtaUA7yMTf71TCZTZl/4e1bfzwUmFb3+rw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.36.0.tgz",
+ "integrity": "sha512-6c6wMZa1lrtiRsbDziCmjE53YbTkxMYhhnWnSW8R/yqsM7a6mSJ3uAVT0t8Y/DGt7gxUWYuFM4bwWk9XCJrFKA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.36.0.tgz",
+ "integrity": "sha512-KXVsijKeJXOl8QzXTsA+sHVDsFOmMCdBRgFmBb+mfEb/7geR7+C8ypAml4fquUt14ZyVXaw2o1FWhqAfOvA4sg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.36.0.tgz",
+ "integrity": "sha512-dVeWq1ebbvByI+ndz4IJcD4a09RJgRYmLccwlQ8bPd4olz3Y213uf1iwvc7ZaxNn2ab7bjc08PrtBgMu6nb4pQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.36.0.tgz",
+ "integrity": "sha512-bvXVU42mOVcF4le6XSjscdXjqx8okv4n5vmwgzcmtvFdifQ5U4dXFYaCB87namDRKlUL9ybVtLQ9ztnawaSzvg==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.36.0.tgz",
+ "integrity": "sha512-JFIQrDJYrxOnyDQGYkqnNBtjDwTgbasdbUiQvcU8JmGDfValfH1lNpng+4FWlhaVIR4KPkeddYjsVVbmJYvDcg==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.36.0.tgz",
+ "integrity": "sha512-KqjYVh3oM1bj//5X7k79PSCZ6CvaVzb7Qs7VMWS+SlWB5M8p3FqufLP9VNp4CazJ0CsPDLwVD9r3vX7Ci4J56A==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.36.0.tgz",
+ "integrity": "sha512-QiGnhScND+mAAtfHqeT+cB1S9yFnNQ/EwCg5yE3MzoaZZnIV0RV9O5alJAoJKX/sBONVKeZdMfO8QSaWEygMhw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.36.0.tgz",
+ "integrity": "sha512-1ZPyEDWF8phd4FQtTzMh8FQwqzvIjLsl6/84gzUxnMNFBtExBtpL51H67mV9xipuxl1AEAerRBgBwFNpkw8+Lg==",
+ "cpu": [
+ "loong64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.36.0.tgz",
+ "integrity": "sha512-VMPMEIUpPFKpPI9GZMhJrtu8rxnp6mJR3ZzQPykq4xc2GmdHj3Q4cA+7avMyegXy4n1v+Qynr9fR88BmyO74tg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.36.0.tgz",
+ "integrity": "sha512-ttE6ayb/kHwNRJGYLpuAvB7SMtOeQnVXEIpMtAvx3kepFQeowVED0n1K9nAdraHUPJ5hydEMxBpIR7o4nrm8uA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.36.0.tgz",
+ "integrity": "sha512-4a5gf2jpS0AIe7uBjxDeUMNcFmaRTbNv7NxI5xOCs4lhzsVyGR/0qBXduPnoWf6dGC365saTiwag8hP1imTgag==",
+ "cpu": [
+ "s390x"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.36.0.tgz",
+ "integrity": "sha512-5KtoW8UWmwFKQ96aQL3LlRXX16IMwyzMq/jSSVIIyAANiE1doaQsx/KRyhAvpHlPjPiSU/AYX/8m+lQ9VToxFQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-musl": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.36.0.tgz",
+ "integrity": "sha512-sycrYZPrv2ag4OCvaN5js+f01eoZ2U+RmT5as8vhxiFz+kxwlHrsxOwKPSA8WyS+Wc6Epid9QeI/IkQ9NkgYyQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.36.0.tgz",
+ "integrity": "sha512-qbqt4N7tokFwwSVlWDsjfoHgviS3n/vZ8LK0h1uLG9TYIRuUTJC88E1xb3LM2iqZ/WTqNQjYrtmtGmrmmawB6A==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.36.0.tgz",
+ "integrity": "sha512-t+RY0JuRamIocMuQcfwYSOkmdX9dtkr1PbhKW42AMvaDQa+jOdpUYysroTF/nuPpAaQMWp7ye+ndlmmthieJrQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.36.0.tgz",
+ "integrity": "sha512-aRXd7tRZkWLqGbChgcMMDEHjOKudo1kChb1Jt1IfR8cY/KIpgNviLeJy5FUb9IpSuQj8dU2fAYNMPW/hLKOSTw==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@sindresorhus/is": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-7.0.1.tgz",
+ "integrity": "sha512-QWLl2P+rsCJeofkDNIT3WFmb6NrRud1SUYW8dIhXK/46XFV8Q/g7Bsvib0Askb0reRLe+WYPeeE+l5cH7SlkuQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
+ }
+ },
+ "node_modules/@sindresorhus/merge-streams": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz",
+ "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@speed-highlight/core": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.7.tgz",
+ "integrity": "sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==",
+ "license": "CC0-1.0"
+ },
+ "node_modules/@trysound/sax": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
+ "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/@tybys/wasm-util": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz",
+ "integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@types/eslint": {
+ "version": "9.6.1",
+ "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz",
+ "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/estree": "*",
+ "@types/json-schema": "*"
+ }
+ },
+ "node_modules/@types/eslint-scope": {
+ "version": "3.7.7",
+ "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz",
+ "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/eslint": "*",
+ "@types/estree": "*"
+ }
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
+ "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
+ "license": "MIT"
+ },
+ "node_modules/@types/json-schema": {
+ "version": "7.0.15",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/@types/node": {
+ "version": "22.13.11",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.11.tgz",
+ "integrity": "sha512-iEUCUJoU0i3VnrCmgoWCXttklWcvoCIx4jzcP22fioIVSdTmjgoEvmAO/QPw6TcS9k5FrNgn4w7q5lGOd1CT5g==",
+ "devOptional": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "undici-types": "~6.20.0"
+ }
+ },
+ "node_modules/@types/parse-path": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/@types/parse-path/-/parse-path-7.0.3.tgz",
+ "integrity": "sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg==",
+ "license": "MIT"
+ },
+ "node_modules/@types/resolve": {
+ "version": "1.20.2",
+ "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz",
+ "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==",
+ "license": "MIT"
+ },
+ "node_modules/@unhead/vue": {
+ "version": "2.0.0-rc.13",
+ "resolved": "https://registry.npmjs.org/@unhead/vue/-/vue-2.0.0-rc.13.tgz",
+ "integrity": "sha512-9jF2Y85HtEdxfaa6Y4wn2Gh1eXJHVNvvecWs3+qfEV83kSOFFowOpm6nIYmNpVGPQtnS0OW1JeIZjQEPZR+LAQ==",
+ "license": "MIT",
+ "dependencies": {
+ "hookable": "^5.5.3",
+ "unhead": "2.0.0-rc.13"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/harlan-zw"
+ },
+ "peerDependencies": {
+ "vue": ">=3.5.13"
+ }
+ },
+ "node_modules/@unocss/astro": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/astro/-/astro-66.1.0-beta.6.tgz",
+ "integrity": "sha512-LL4DqqMB5D++c5aPZAis1YjzqvwstLVOYwcoXfuA8Ty96/HgCK8XZINpfZUwUND8FqlpFjnqs0NgUm4NkDDexg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/reset": "66.1.0-beta.6",
+ "@unocss/vite": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
+ },
+ "peerDependenciesMeta": {
+ "vite": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@unocss/cli": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/cli/-/cli-66.1.0-beta.6.tgz",
+ "integrity": "sha512-HLO04NOfTWjrGtpXxpB41vO8oj/pL+R4Ma/E4pnh4Zzq2e5RDMhyQvgiYSdS6PeIGB5AQDrgmd41EuGHsp23qg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@ampproject/remapping": "^2.3.0",
+ "@unocss/config": "66.1.0-beta.6",
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/preset-uno": "66.1.0-beta.6",
+ "cac": "^6.7.14",
+ "chokidar": "^3.6.0",
+ "colorette": "^2.0.20",
+ "consola": "^3.4.0",
+ "magic-string": "^0.30.17",
+ "pathe": "^2.0.3",
+ "perfect-debounce": "^1.0.0",
+ "tinyglobby": "^0.2.12",
+ "unplugin-utils": "^0.2.4"
+ },
+ "bin": {
+ "unocss": "bin/unocss.mjs"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/cli/node_modules/chokidar": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ },
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/@unocss/cli/node_modules/colorette": {
+ "version": "2.0.20",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
+ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@unocss/cli/node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/@unocss/cli/node_modules/readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/@unocss/config": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/config/-/config-66.1.0-beta.6.tgz",
+ "integrity": "sha512-jLAxHSgMCEhIjCwOwfENtFM3gevU4QDQeaG4VVEYGFJ/oj27JJrl/j6HlUBdhFiR0Q7yf6QFCXlKTP/+put0/Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "unconfig": "^7.3.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/core": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/core/-/core-66.1.0-beta.6.tgz",
+ "integrity": "sha512-TQLxpBZPl6m4HhS6/FMr0Vbn22tGWgbGPyfJyjTSYY/LTug42aIUPnTQnqFSRwGiUnBfp3+oAhG/t/lZ6U74tw==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/extractor-arbitrary-variants": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-66.1.0-beta.6.tgz",
+ "integrity": "sha512-jUI5Ncppngy8NKv8p9ubUi0FAw6Vcrx7hC7aWaqEFdfA2cDGpR5XHyWJozkT7BbfZs+SnA76b6qwuEtcXwYTAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/inspector": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/inspector/-/inspector-66.1.0-beta.6.tgz",
+ "integrity": "sha512-YjK017dGMtN8Q067d9n9aCKFXGB8jD13PomKmKOWs3YfmPQE1qQjqQUXH4Zf/jhGMvaB72BHevqctLRHguHfww==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/rule-utils": "66.1.0-beta.6",
+ "colorette": "^2.0.20",
+ "gzip-size": "^6.0.0",
+ "sirv": "^3.0.1",
+ "vue-flow-layout": "^0.1.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/inspector/node_modules/colorette": {
+ "version": "2.0.20",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
+ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@unocss/inspector/node_modules/gzip-size": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz",
+ "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "duplexer": "^0.1.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@unocss/nuxt": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/nuxt/-/nuxt-66.1.0-beta.6.tgz",
+ "integrity": "sha512-W+Fl1NAjOuZeB4mG5p2lTPk4CltYtzmbnVMVhg1wpk6ttePR1PcP3bCaFwa+/e/CGAdK6vQOi9Ui6zon3pkQ4g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@nuxt/kit": "^3.16.0",
+ "@unocss/config": "66.1.0-beta.6",
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/preset-attributify": "66.1.0-beta.6",
+ "@unocss/preset-icons": "66.1.0-beta.6",
+ "@unocss/preset-tagify": "66.1.0-beta.6",
+ "@unocss/preset-typography": "66.1.0-beta.6",
+ "@unocss/preset-uno": "66.1.0-beta.6",
+ "@unocss/preset-web-fonts": "66.1.0-beta.6",
+ "@unocss/preset-wind": "66.1.0-beta.6",
+ "@unocss/reset": "66.1.0-beta.6",
+ "@unocss/vite": "66.1.0-beta.6",
+ "@unocss/webpack": "66.1.0-beta.6",
+ "unocss": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/postcss": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/postcss/-/postcss-66.1.0-beta.6.tgz",
+ "integrity": "sha512-WvpOKr7rPRfb8ttUYpta/WlH/rk0hwZUj59hSW5aMFs/EfaKolIurcSz6UU/yDGBly4T3F+MadqbjSU91iJ8xg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/config": "66.1.0-beta.6",
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/rule-utils": "66.1.0-beta.6",
+ "css-tree": "^3.1.0",
+ "postcss": "^8.5.3",
+ "tinyglobby": "^0.2.12"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.21"
+ }
+ },
+ "node_modules/@unocss/postcss/node_modules/css-tree": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
+ "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mdn-data": "2.12.2",
+ "source-map-js": "^1.0.1"
+ },
+ "engines": {
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@unocss/postcss/node_modules/mdn-data": {
+ "version": "2.12.2",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
+ "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/@unocss/preset-attributify": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-attributify/-/preset-attributify-66.1.0-beta.6.tgz",
+ "integrity": "sha512-JTSTh7x+DXa1hWe4xCztOeYc0zNpbv0USiHfgM303ZcDr5zNKG4iGAebBqcmAu8CUB+Tq3OJOA4m/dqfkVAAuQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/preset-icons": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-icons/-/preset-icons-66.1.0-beta.6.tgz",
+ "integrity": "sha512-zj+PaJ7gSIebtnMnLmzzn9e3tVCO9r2+nOz5v0DWpBfMfpSId4EkXtG3hMllRG8WEH8frZz5qBM3yFuhk8NqqQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@iconify/utils": "^2.3.0",
+ "@unocss/core": "66.1.0-beta.6",
+ "ofetch": "^1.4.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/preset-mini": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-mini/-/preset-mini-66.1.0-beta.6.tgz",
+ "integrity": "sha512-MoF32nio5jzKi40VOeOU4k2uZvYUm2GKIxTRZ8C8mb7bFFphoMQD0/Pfr9oWpNC7jl7msuKt8i4xUknK5GAVDQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/extractor-arbitrary-variants": "66.1.0-beta.6",
+ "@unocss/rule-utils": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/preset-tagify": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-tagify/-/preset-tagify-66.1.0-beta.6.tgz",
+ "integrity": "sha512-pym/P+A8CtSp6ek/twe82hW50lsh8miJ7m/oNfU9oHNM/Lo0XQhnIaVvHwefprX+isyKW4KJWBBZ/gX3tbz+9Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/preset-typography": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-typography/-/preset-typography-66.1.0-beta.6.tgz",
+ "integrity": "sha512-M6o4oXUMXo6RmclqsnUCXYJCW9cBJYYZcl4M2ofejNkCaqplAwWvc7X7TPvUjcURfwHf+CiXx42DXB0k+FCmlA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/preset-mini": "66.1.0-beta.6",
+ "@unocss/rule-utils": "66.1.0-beta.6"
+ }
+ },
+ "node_modules/@unocss/preset-uno": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-uno/-/preset-uno-66.1.0-beta.6.tgz",
+ "integrity": "sha512-zFvQ8sxSGcHoZBkMNngQIdQTFJgoNx5UosydUynLMzs86NFkwd/BAcS2cZBy+buLiuqV1oM2uSyxjLeAqury8g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/preset-wind3": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/preset-web-fonts": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-web-fonts/-/preset-web-fonts-66.1.0-beta.6.tgz",
+ "integrity": "sha512-G9EUBFuFT5sbh1rHsc5oJVHTKK9FMUvtoELaS5HRnxYtr6CR9iepXMNNRb8tmjwx5ewStn7cBKHCGHxnoij3Ew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "ofetch": "^1.4.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/preset-wind": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-wind/-/preset-wind-66.1.0-beta.6.tgz",
+ "integrity": "sha512-1H1YH5OQTGG3mFo54BZELkKWO4iE0UgH4W2+RdnWHEKYIpXImk8JtAkiO5iK0gJafoSQjx592fZ70krQKmNamQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/preset-wind3": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/preset-wind3": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-wind3/-/preset-wind3-66.1.0-beta.6.tgz",
+ "integrity": "sha512-AWLf5bT/tjXao5BIdgeDG/XxQoRKvh+G7DQGzJJe4vkOv8QK7QHG8LuqaadEkLTgTY1DaIXshK9d7+E/fFAcFw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/preset-mini": "66.1.0-beta.6",
+ "@unocss/rule-utils": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/preset-wind4": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/preset-wind4/-/preset-wind4-66.1.0-beta.6.tgz",
+ "integrity": "sha512-8OuBpnPbwId4/6sZe4j52+2shnyY/A3/y7RvhRow2xMgvEPBpJdkGHDDE+igwXF3Bhpd7FZS93NpyMLLX42imA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/extractor-arbitrary-variants": "66.1.0-beta.6",
+ "@unocss/rule-utils": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/reset": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/reset/-/reset-66.1.0-beta.6.tgz",
+ "integrity": "sha512-HIB+JT1/1LbDChcbYmWAmSNMHMBYMcgubc5W0nIEZbfT4JGF/ZsbFeAhpbau/k/Ny5w5XlBD24CESkYewldgyw==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/rule-utils": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/rule-utils/-/rule-utils-66.1.0-beta.6.tgz",
+ "integrity": "sha512-9RxYUGq96Ro+5XbevFlzKKwtROIv9c6VZbG+i34pMaw8ALFsCj34iGFvBs4ohTf03XkCCyMlr2f2KdFc9cj/Sw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "^66.1.0-beta.6",
+ "magic-string": "^0.30.17"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/transformer-attributify-jsx": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-66.1.0-beta.6.tgz",
+ "integrity": "sha512-Qp9kvq7nRjFRuUfM5zJ1Mz/JxjRNvRReL1m0t9lrgDQl3pc1+7pIxlQSEn0NJHaOQc8CBpLgTDRmwWLOtlB6SQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/transformer-compile-class": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/transformer-compile-class/-/transformer-compile-class-66.1.0-beta.6.tgz",
+ "integrity": "sha512-MckRTk6zh9GwjxIhvbckKko4VqESkaYLOLmHK0eVOioEPyV2B8eCqgrMLpYJlrpCIRbZV8ttAGNCiB8MsQgR/w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/transformer-directives": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/transformer-directives/-/transformer-directives-66.1.0-beta.6.tgz",
+ "integrity": "sha512-+/U6MV9IiPuCoE2+CKkXbpAlN7X8WembjdtM0jFTXJWJdrb11xI8bMTfGnhohKs94naQL6lEmow/wZVFgIIJug==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/rule-utils": "66.1.0-beta.6",
+ "css-tree": "^3.1.0"
+ }
+ },
+ "node_modules/@unocss/transformer-directives/node_modules/css-tree": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
+ "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mdn-data": "2.12.2",
+ "source-map-js": "^1.0.1"
+ },
+ "engines": {
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
+ }
+ },
+ "node_modules/@unocss/transformer-directives/node_modules/mdn-data": {
+ "version": "2.12.2",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
+ "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/@unocss/transformer-variant-group": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/transformer-variant-group/-/transformer-variant-group-66.1.0-beta.6.tgz",
+ "integrity": "sha512-Liug/F5nHYBLoUbo+47unrzKjYKxmN7HAw/jjQpzjKGn4bN6ZzCDodY3h6q5e8XsxFIkZlt3JZPZkMKjSf1E0Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/core": "66.1.0-beta.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@unocss/vite": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/vite/-/vite-66.1.0-beta.6.tgz",
+ "integrity": "sha512-/3yAxOJm8UFiNOBcuRQELrgQX55fJnb0wBNNSeW1YsE5vLCDNvP0acibDmqyKk2O+Ch9yw8duC60FKIptVzJhQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@ampproject/remapping": "^2.3.0",
+ "@unocss/config": "66.1.0-beta.6",
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/inspector": "66.1.0-beta.6",
+ "chokidar": "^3.6.0",
+ "magic-string": "^0.30.17",
+ "tinyglobby": "^0.2.12",
+ "unplugin-utils": "^0.2.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
+ }
+ },
+ "node_modules/@unocss/vite/node_modules/chokidar": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ },
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/@unocss/vite/node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/@unocss/vite/node_modules/readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/@unocss/webpack": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/@unocss/webpack/-/webpack-66.1.0-beta.6.tgz",
+ "integrity": "sha512-c6RSh8l2R2wBJ/PBUGLg0GCMrcLOWoQrKf+EEadNsFfXFFC2FqGrGNCDHkA3IpJXZdLiVAYVf4RAWEeMa1EEUQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@ampproject/remapping": "^2.3.0",
+ "@unocss/config": "66.1.0-beta.6",
+ "@unocss/core": "66.1.0-beta.6",
+ "chokidar": "^3.6.0",
+ "magic-string": "^0.30.17",
+ "tinyglobby": "^0.2.12",
+ "unplugin": "^2.2.0",
+ "unplugin-utils": "^0.2.4",
+ "webpack-sources": "^3.2.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "webpack": "^4 || ^5"
+ }
+ },
+ "node_modules/@unocss/webpack/node_modules/chokidar": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "anymatch": "~3.1.2",
+ "braces": "~3.0.2",
+ "glob-parent": "~5.1.2",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.6.0"
+ },
+ "engines": {
+ "node": ">= 8.10.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/@unocss/webpack/node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/@unocss/webpack/node_modules/readdirp": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "picomatch": "^2.2.1"
+ },
+ "engines": {
+ "node": ">=8.10.0"
+ }
+ },
+ "node_modules/@vercel/nft": {
+ "version": "0.29.2",
+ "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.29.2.tgz",
+ "integrity": "sha512-A/Si4mrTkQqJ6EXJKv5EYCDQ3NL6nJXxG8VGXePsaiQigsomHYQC9xSpX8qGk7AEZk4b1ssbYIqJ0ISQQ7bfcA==",
+ "license": "MIT",
+ "dependencies": {
+ "@mapbox/node-pre-gyp": "^2.0.0",
+ "@rollup/pluginutils": "^5.1.3",
+ "acorn": "^8.6.0",
+ "acorn-import-attributes": "^1.9.5",
+ "async-sema": "^3.1.1",
+ "bindings": "^1.4.0",
+ "estree-walker": "2.0.2",
+ "glob": "^10.4.5",
+ "graceful-fs": "^4.2.9",
+ "node-gyp-build": "^4.2.2",
+ "picomatch": "^4.0.2",
+ "resolve-from": "^5.0.0"
+ },
+ "bin": {
+ "nft": "out/cli.js"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@vercel/nft/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "license": "MIT"
+ },
+ "node_modules/@vitejs/plugin-vue": {
+ "version": "5.2.3",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.3.tgz",
+ "integrity": "sha512-IYSLEQj4LgZZuoVpdSUCw3dIynTWQgPlaRP6iAvMle4My0HdYwr5g5wQAfwOeHQBmYwEkqF70nRpSilr6PoUDg==",
+ "license": "MIT",
+ "engines": {
+ "node": "^18.0.0 || >=20.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^5.0.0 || ^6.0.0",
+ "vue": "^3.2.25"
+ }
+ },
+ "node_modules/@vitejs/plugin-vue-jsx": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.1.2.tgz",
+ "integrity": "sha512-4Rk0GdE0QCdsIkuMmWeg11gmM4x8UmTnZR/LWPm7QJ7+BsK4tq08udrN0isrrWqz5heFy9HLV/7bOLgFS8hUjA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.26.7",
+ "@babel/plugin-transform-typescript": "^7.26.7",
+ "@vue/babel-plugin-jsx": "^1.2.5"
+ },
+ "engines": {
+ "node": "^18.0.0 || >=20.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^5.0.0 || ^6.0.0",
+ "vue": "^3.0.0"
+ }
+ },
+ "node_modules/@vue-macros/common": {
+ "version": "1.16.1",
+ "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-1.16.1.tgz",
+ "integrity": "sha512-Pn/AWMTjoMYuquepLZP813BIcq8DTZiNCoaceuNlvaYuOTd8DqBZWc5u0uOMQZMInwME1mdSmmBAcTluiV9Jtg==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/compiler-sfc": "^3.5.13",
+ "ast-kit": "^1.4.0",
+ "local-pkg": "^1.0.0",
+ "magic-string-ast": "^0.7.0",
+ "pathe": "^2.0.2",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=16.14.0"
+ },
+ "peerDependencies": {
+ "vue": "^2.7.0 || ^3.2.25"
+ },
+ "peerDependenciesMeta": {
+ "vue": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@vue/babel-helper-vue-transform-on": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.4.0.tgz",
+ "integrity": "sha512-mCokbouEQ/ocRce/FpKCRItGo+013tHg7tixg3DUNS+6bmIchPt66012kBMm476vyEIJPafrvOf4E5OYj3shSw==",
+ "license": "MIT"
+ },
+ "node_modules/@vue/babel-plugin-jsx": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.4.0.tgz",
+ "integrity": "sha512-9zAHmwgMWlaN6qRKdrg1uKsBKHvnUU+Py+MOCTuYZBoZsopa90Di10QRjB+YPnVss0BZbG/H5XFwJY1fTxJWhA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.26.5",
+ "@babel/plugin-syntax-jsx": "^7.25.9",
+ "@babel/template": "^7.26.9",
+ "@babel/traverse": "^7.26.9",
+ "@babel/types": "^7.26.9",
+ "@vue/babel-helper-vue-transform-on": "1.4.0",
+ "@vue/babel-plugin-resolve-type": "1.4.0",
+ "@vue/shared": "^3.5.13"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@vue/babel-plugin-resolve-type": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.4.0.tgz",
+ "integrity": "sha512-4xqDRRbQQEWHQyjlYSgZsWj44KfiF6D+ktCuXyZ8EnVDYV3pztmXJDf1HveAjUAXxAnR8daCQT51RneWWxtTyQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.26.2",
+ "@babel/helper-module-imports": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.26.5",
+ "@babel/parser": "^7.26.9",
+ "@vue/compiler-sfc": "^3.5.13"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sxzz"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@vue/compiler-core": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz",
+ "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.25.3",
+ "@vue/shared": "3.5.13",
+ "entities": "^4.5.0",
+ "estree-walker": "^2.0.2",
+ "source-map-js": "^1.2.0"
+ }
+ },
+ "node_modules/@vue/compiler-core/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "license": "MIT"
+ },
+ "node_modules/@vue/compiler-dom": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz",
+ "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/compiler-core": "3.5.13",
+ "@vue/shared": "3.5.13"
+ }
+ },
+ "node_modules/@vue/compiler-sfc": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz",
+ "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.25.3",
+ "@vue/compiler-core": "3.5.13",
+ "@vue/compiler-dom": "3.5.13",
+ "@vue/compiler-ssr": "3.5.13",
+ "@vue/shared": "3.5.13",
+ "estree-walker": "^2.0.2",
+ "magic-string": "^0.30.11",
+ "postcss": "^8.4.48",
+ "source-map-js": "^1.2.0"
+ }
+ },
+ "node_modules/@vue/compiler-sfc/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "license": "MIT"
+ },
+ "node_modules/@vue/compiler-ssr": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz",
+ "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/compiler-dom": "3.5.13",
+ "@vue/shared": "3.5.13"
+ }
+ },
+ "node_modules/@vue/devtools-api": {
+ "version": "6.6.4",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
+ "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
+ "license": "MIT"
+ },
+ "node_modules/@vue/devtools-core": {
+ "version": "7.7.2",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-core/-/devtools-core-7.7.2.tgz",
+ "integrity": "sha512-lexREWj1lKi91Tblr38ntSsy6CvI8ba7u+jmwh2yruib/ltLUcsIzEjCnrkh1yYGGIKXbAuYV2tOG10fGDB9OQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/devtools-kit": "^7.7.2",
+ "@vue/devtools-shared": "^7.7.2",
+ "mitt": "^3.0.1",
+ "nanoid": "^5.0.9",
+ "pathe": "^2.0.2",
+ "vite-hot-client": "^0.2.4"
+ },
+ "peerDependencies": {
+ "vue": "^3.0.0"
+ }
+ },
+ "node_modules/@vue/devtools-kit": {
+ "version": "7.7.2",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.2.tgz",
+ "integrity": "sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/devtools-shared": "^7.7.2",
+ "birpc": "^0.2.19",
+ "hookable": "^5.5.3",
+ "mitt": "^3.0.1",
+ "perfect-debounce": "^1.0.0",
+ "speakingurl": "^14.0.1",
+ "superjson": "^2.2.1"
+ }
+ },
+ "node_modules/@vue/devtools-kit/node_modules/birpc": {
+ "version": "0.2.19",
+ "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.19.tgz",
+ "integrity": "sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/@vue/devtools-shared": {
+ "version": "7.7.2",
+ "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.2.tgz",
+ "integrity": "sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==",
+ "license": "MIT",
+ "dependencies": {
+ "rfdc": "^1.4.1"
+ }
+ },
+ "node_modules/@vue/reactivity": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.13.tgz",
+ "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/shared": "3.5.13"
+ }
+ },
+ "node_modules/@vue/runtime-core": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.13.tgz",
+ "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/reactivity": "3.5.13",
+ "@vue/shared": "3.5.13"
+ }
+ },
+ "node_modules/@vue/runtime-dom": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz",
+ "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/reactivity": "3.5.13",
+ "@vue/runtime-core": "3.5.13",
+ "@vue/shared": "3.5.13",
+ "csstype": "^3.1.3"
+ }
+ },
+ "node_modules/@vue/server-renderer": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.13.tgz",
+ "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/compiler-ssr": "3.5.13",
+ "@vue/shared": "3.5.13"
+ },
+ "peerDependencies": {
+ "vue": "3.5.13"
+ }
+ },
+ "node_modules/@vue/shared": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz",
+ "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==",
+ "license": "MIT"
+ },
+ "node_modules/@webassemblyjs/ast": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz",
+ "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/helper-numbers": "1.13.2",
+ "@webassemblyjs/helper-wasm-bytecode": "1.13.2"
+ }
+ },
+ "node_modules/@webassemblyjs/floating-point-hex-parser": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz",
+ "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/helper-api-error": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz",
+ "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/helper-buffer": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz",
+ "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/helper-numbers": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz",
+ "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/floating-point-hex-parser": "1.13.2",
+ "@webassemblyjs/helper-api-error": "1.13.2",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "node_modules/@webassemblyjs/helper-wasm-bytecode": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz",
+ "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/helper-wasm-section": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz",
+ "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.14.1",
+ "@webassemblyjs/helper-buffer": "1.14.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.13.2",
+ "@webassemblyjs/wasm-gen": "1.14.1"
+ }
+ },
+ "node_modules/@webassemblyjs/ieee754": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz",
+ "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@xtuc/ieee754": "^1.2.0"
+ }
+ },
+ "node_modules/@webassemblyjs/leb128": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz",
+ "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "peer": true,
+ "dependencies": {
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "node_modules/@webassemblyjs/utf8": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz",
+ "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/wasm-edit": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz",
+ "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.14.1",
+ "@webassemblyjs/helper-buffer": "1.14.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.13.2",
+ "@webassemblyjs/helper-wasm-section": "1.14.1",
+ "@webassemblyjs/wasm-gen": "1.14.1",
+ "@webassemblyjs/wasm-opt": "1.14.1",
+ "@webassemblyjs/wasm-parser": "1.14.1",
+ "@webassemblyjs/wast-printer": "1.14.1"
+ }
+ },
+ "node_modules/@webassemblyjs/wasm-gen": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz",
+ "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.14.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.13.2",
+ "@webassemblyjs/ieee754": "1.13.2",
+ "@webassemblyjs/leb128": "1.13.2",
+ "@webassemblyjs/utf8": "1.13.2"
+ }
+ },
+ "node_modules/@webassemblyjs/wasm-opt": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz",
+ "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.14.1",
+ "@webassemblyjs/helper-buffer": "1.14.1",
+ "@webassemblyjs/wasm-gen": "1.14.1",
+ "@webassemblyjs/wasm-parser": "1.14.1"
+ }
+ },
+ "node_modules/@webassemblyjs/wasm-parser": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz",
+ "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.14.1",
+ "@webassemblyjs/helper-api-error": "1.13.2",
+ "@webassemblyjs/helper-wasm-bytecode": "1.13.2",
+ "@webassemblyjs/ieee754": "1.13.2",
+ "@webassemblyjs/leb128": "1.13.2",
+ "@webassemblyjs/utf8": "1.13.2"
+ }
+ },
+ "node_modules/@webassemblyjs/wast-printer": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz",
+ "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.14.1",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "node_modules/@xtuc/ieee754": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
+ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "peer": true
+ },
+ "node_modules/@xtuc/long": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
+ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "peer": true
+ },
+ "node_modules/abbrev": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.0.tgz",
+ "integrity": "sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==",
+ "license": "ISC",
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/abort-controller": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
+ "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
+ "license": "MIT",
+ "dependencies": {
+ "event-target-shim": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=6.5"
+ }
+ },
+ "node_modules/acorn": {
+ "version": "8.14.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
+ "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-import-attributes": {
+ "version": "1.9.5",
+ "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz",
+ "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^8"
+ }
+ },
+ "node_modules/agent-base": {
+ "version": "7.1.3",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz",
+ "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "8.17.1",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
+ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3",
+ "fast-uri": "^3.0.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ajv-formats": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
+ "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "ajv": "^8.0.0"
+ },
+ "peerDependencies": {
+ "ajv": "^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "ajv": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/ajv-keywords": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
+ "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3"
+ },
+ "peerDependencies": {
+ "ajv": "^8.8.2"
+ }
+ },
+ "node_modules/ansi-colors": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz",
+ "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/ansis": {
+ "version": "3.17.0",
+ "resolved": "https://registry.npmjs.org/ansis/-/ansis-3.17.0.tgz",
+ "integrity": "sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/anymatch": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+ "license": "ISC",
+ "dependencies": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/anymatch/node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/archiver": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/archiver/-/archiver-7.0.1.tgz",
+ "integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==",
+ "license": "MIT",
+ "dependencies": {
+ "archiver-utils": "^5.0.2",
+ "async": "^3.2.4",
+ "buffer-crc32": "^1.0.0",
+ "readable-stream": "^4.0.0",
+ "readdir-glob": "^1.1.2",
+ "tar-stream": "^3.0.0",
+ "zip-stream": "^6.0.1"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/archiver-utils": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-5.0.2.tgz",
+ "integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==",
+ "license": "MIT",
+ "dependencies": {
+ "glob": "^10.0.0",
+ "graceful-fs": "^4.2.0",
+ "is-stream": "^2.0.1",
+ "lazystream": "^1.0.0",
+ "lodash": "^4.17.15",
+ "normalize-path": "^3.0.0",
+ "readable-stream": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/archiver-utils/node_modules/is-stream": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "license": "Python-2.0"
+ },
+ "node_modules/ast-kit": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-1.4.2.tgz",
+ "integrity": "sha512-lvGehj1XsrIoQrD5CfPduIzQbcpuX2EPjlk/vDMDQF9U9HLRB6WwMTdighj5n52hdhh8xg9VgPTU7Q25MuJ/rw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.26.9",
+ "pathe": "^2.0.3"
+ },
+ "engines": {
+ "node": ">=16.14.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sxzz"
+ }
+ },
+ "node_modules/ast-walker-scope": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/ast-walker-scope/-/ast-walker-scope-0.6.2.tgz",
+ "integrity": "sha512-1UWOyC50xI3QZkRuDj6PqDtpm1oHWtYs+NQGwqL/2R11eN3Q81PHAHPM0SWW3BNQm53UDwS//Jv8L4CCVLM1bQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.25.3",
+ "ast-kit": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=16.14.0"
+ }
+ },
+ "node_modules/async": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
+ "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
+ "license": "MIT"
+ },
+ "node_modules/async-sema": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz",
+ "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==",
+ "license": "MIT"
+ },
+ "node_modules/autoprefixer": {
+ "version": "10.4.21",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz",
+ "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.24.4",
+ "caniuse-lite": "^1.0.30001702",
+ "fraction.js": "^4.3.7",
+ "normalize-range": "^0.1.2",
+ "picocolors": "^1.1.1",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "bin": {
+ "autoprefixer": "bin/autoprefixer"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ },
+ "peerDependencies": {
+ "postcss": "^8.1.0"
+ }
+ },
+ "node_modules/b4a": {
+ "version": "1.6.7",
+ "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz",
+ "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "license": "MIT"
+ },
+ "node_modules/bare-events": {
+ "version": "2.5.4",
+ "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz",
+ "integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==",
+ "license": "Apache-2.0",
+ "optional": true
+ },
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/binary-extensions": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/bindings": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
+ "license": "MIT",
+ "dependencies": {
+ "file-uri-to-path": "1.0.0"
+ }
+ },
+ "node_modules/birpc": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.2.0.tgz",
+ "integrity": "sha512-1/22obknhoj56PcE+pZPp6AbWDdY55M81/ofpPW3Ltlp9Eh4zoFFLswvZmNpRTb790CY5tsNfgbYeNOqIARJfQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/boolbase": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
+ "license": "ISC"
+ },
+ "node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.24.4",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz",
+ "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "caniuse-lite": "^1.0.30001688",
+ "electron-to-chromium": "^1.5.73",
+ "node-releases": "^2.0.19",
+ "update-browserslist-db": "^1.1.1"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ }
+ },
+ "node_modules/buffer": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
+ "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.2.1"
+ }
+ },
+ "node_modules/buffer-crc32": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz",
+ "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/buffer-from": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+ "license": "MIT"
+ },
+ "node_modules/bundle-name": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz",
+ "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==",
+ "license": "MIT",
+ "dependencies": {
+ "run-applescript": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/c12": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/c12/-/c12-3.0.2.tgz",
+ "integrity": "sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==",
+ "license": "MIT",
+ "dependencies": {
+ "chokidar": "^4.0.3",
+ "confbox": "^0.1.8",
+ "defu": "^6.1.4",
+ "dotenv": "^16.4.7",
+ "exsolve": "^1.0.0",
+ "giget": "^2.0.0",
+ "jiti": "^2.4.2",
+ "ohash": "^2.0.5",
+ "pathe": "^2.0.3",
+ "perfect-debounce": "^1.0.0",
+ "pkg-types": "^2.0.0",
+ "rc9": "^2.1.2"
+ },
+ "peerDependencies": {
+ "magicast": "^0.3.5"
+ },
+ "peerDependenciesMeta": {
+ "magicast": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/cac": {
+ "version": "6.7.14",
+ "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz",
+ "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/caniuse-api": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
+ "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.0.0",
+ "caniuse-lite": "^1.0.0",
+ "lodash.memoize": "^4.1.2",
+ "lodash.uniq": "^4.5.0"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001706",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001706.tgz",
+ "integrity": "sha512-3ZczoTApMAZwPKYWmwVbQMFpXBDds3/0VciVoUwPUbldlYyVLmRVuRs/PcUZtHpbLRpzzDvrvnFuREsGt6lUug==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "CC-BY-4.0"
+ },
+ "node_modules/change-case": {
+ "version": "5.4.4",
+ "resolved": "https://registry.npmjs.org/change-case/-/change-case-5.4.4.tgz",
+ "integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==",
+ "license": "MIT"
+ },
+ "node_modules/chokidar": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
+ "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
+ "license": "MIT",
+ "dependencies": {
+ "readdirp": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 14.16.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ }
+ },
+ "node_modules/chownr": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
+ "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/chrome-trace-event": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz",
+ "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=6.0"
+ }
+ },
+ "node_modules/citty": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz",
+ "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==",
+ "license": "MIT",
+ "dependencies": {
+ "consola": "^3.2.3"
+ }
+ },
+ "node_modules/clipboardy": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz",
+ "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==",
+ "license": "MIT",
+ "dependencies": {
+ "execa": "^8.0.1",
+ "is-wsl": "^3.1.0",
+ "is64bit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/cliui/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cliui/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/cliui/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "license": "MIT"
+ },
+ "node_modules/cliui/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cliui/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cliui/node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/cluster-key-slot": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz",
+ "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "license": "MIT"
+ },
+ "node_modules/colord": {
+ "version": "2.9.3",
+ "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz",
+ "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==",
+ "license": "MIT"
+ },
+ "node_modules/colorette": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz",
+ "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==",
+ "license": "MIT"
+ },
+ "node_modules/commander": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
+ "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
+ "license": "MIT"
+ },
+ "node_modules/compatx": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/compatx/-/compatx-0.1.8.tgz",
+ "integrity": "sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==",
+ "license": "MIT"
+ },
+ "node_modules/compress-commons": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-6.0.2.tgz",
+ "integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==",
+ "license": "MIT",
+ "dependencies": {
+ "crc-32": "^1.2.0",
+ "crc32-stream": "^6.0.0",
+ "is-stream": "^2.0.1",
+ "normalize-path": "^3.0.0",
+ "readable-stream": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/compress-commons/node_modules/is-stream": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/confbox": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz",
+ "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
+ "license": "MIT"
+ },
+ "node_modules/consola": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz",
+ "integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==",
+ "license": "MIT",
+ "engines": {
+ "node": "^14.18.0 || >=16.10.0"
+ }
+ },
+ "node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "license": "MIT"
+ },
+ "node_modules/cookie": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz",
+ "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/cookie-es": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-2.0.0.tgz",
+ "integrity": "sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==",
+ "license": "MIT"
+ },
+ "node_modules/copy-anything": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz",
+ "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==",
+ "license": "MIT",
+ "dependencies": {
+ "is-what": "^4.1.8"
+ },
+ "engines": {
+ "node": ">=12.13"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mesqueeb"
+ }
+ },
+ "node_modules/core-util-is": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
+ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
+ "license": "MIT"
+ },
+ "node_modules/crc-32": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
+ "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==",
+ "license": "Apache-2.0",
+ "bin": {
+ "crc32": "bin/crc32.njs"
+ },
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
+ "node_modules/crc32-stream": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-6.0.0.tgz",
+ "integrity": "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==",
+ "license": "MIT",
+ "dependencies": {
+ "crc-32": "^1.2.0",
+ "readable-stream": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/croner": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/croner/-/croner-9.0.0.tgz",
+ "integrity": "sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0"
+ }
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/cross-spawn/node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "license": "ISC"
+ },
+ "node_modules/cross-spawn/node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/crossws": {
+ "version": "0.3.4",
+ "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.4.tgz",
+ "integrity": "sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==",
+ "license": "MIT",
+ "dependencies": {
+ "uncrypto": "^0.1.3"
+ }
+ },
+ "node_modules/css-declaration-sorter": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz",
+ "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==",
+ "license": "ISC",
+ "engines": {
+ "node": "^14 || ^16 || >=18"
+ },
+ "peerDependencies": {
+ "postcss": "^8.0.9"
+ }
+ },
+ "node_modules/css-select": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz",
+ "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "boolbase": "^1.0.0",
+ "css-what": "^6.1.0",
+ "domhandler": "^5.0.2",
+ "domutils": "^3.0.1",
+ "nth-check": "^2.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
+ },
+ "node_modules/css-tree": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz",
+ "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
+ "license": "MIT",
+ "dependencies": {
+ "mdn-data": "2.0.30",
+ "source-map-js": "^1.0.1"
+ },
+ "engines": {
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
+ }
+ },
+ "node_modules/css-what": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
+ "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">= 6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/fb55"
+ }
+ },
+ "node_modules/cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "license": "MIT",
+ "bin": {
+ "cssesc": "bin/cssesc"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/cssnano": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-7.0.6.tgz",
+ "integrity": "sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==",
+ "license": "MIT",
+ "dependencies": {
+ "cssnano-preset-default": "^7.0.6",
+ "lilconfig": "^3.1.2"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/cssnano"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/cssnano-preset-default": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.6.tgz",
+ "integrity": "sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.3",
+ "css-declaration-sorter": "^7.2.0",
+ "cssnano-utils": "^5.0.0",
+ "postcss-calc": "^10.0.2",
+ "postcss-colormin": "^7.0.2",
+ "postcss-convert-values": "^7.0.4",
+ "postcss-discard-comments": "^7.0.3",
+ "postcss-discard-duplicates": "^7.0.1",
+ "postcss-discard-empty": "^7.0.0",
+ "postcss-discard-overridden": "^7.0.0",
+ "postcss-merge-longhand": "^7.0.4",
+ "postcss-merge-rules": "^7.0.4",
+ "postcss-minify-font-values": "^7.0.0",
+ "postcss-minify-gradients": "^7.0.0",
+ "postcss-minify-params": "^7.0.2",
+ "postcss-minify-selectors": "^7.0.4",
+ "postcss-normalize-charset": "^7.0.0",
+ "postcss-normalize-display-values": "^7.0.0",
+ "postcss-normalize-positions": "^7.0.0",
+ "postcss-normalize-repeat-style": "^7.0.0",
+ "postcss-normalize-string": "^7.0.0",
+ "postcss-normalize-timing-functions": "^7.0.0",
+ "postcss-normalize-unicode": "^7.0.2",
+ "postcss-normalize-url": "^7.0.0",
+ "postcss-normalize-whitespace": "^7.0.0",
+ "postcss-ordered-values": "^7.0.1",
+ "postcss-reduce-initial": "^7.0.2",
+ "postcss-reduce-transforms": "^7.0.0",
+ "postcss-svgo": "^7.0.1",
+ "postcss-unique-selectors": "^7.0.3"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/cssnano-utils": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-5.0.0.tgz",
+ "integrity": "sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==",
+ "license": "MIT",
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/csso": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz",
+ "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
+ "license": "MIT",
+ "dependencies": {
+ "css-tree": "~2.2.0"
+ },
+ "engines": {
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
+ "npm": ">=7.0.0"
+ }
+ },
+ "node_modules/csso/node_modules/css-tree": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz",
+ "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
+ "license": "MIT",
+ "dependencies": {
+ "mdn-data": "2.0.28",
+ "source-map-js": "^1.0.1"
+ },
+ "engines": {
+ "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
+ "npm": ">=7.0.0"
+ }
+ },
+ "node_modules/csso/node_modules/mdn-data": {
+ "version": "2.0.28",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz",
+ "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==",
+ "license": "CC0-1.0"
+ },
+ "node_modules/csstype": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
+ "license": "MIT"
+ },
+ "node_modules/db0": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/db0/-/db0-0.3.1.tgz",
+ "integrity": "sha512-3RogPLE2LLq6t4YiFCREyl572aBjkfMvfwPyN51df00TbPbryL3XqBYuJ/j6mgPssPK8AKfYdLxizaO5UG10sA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@electric-sql/pglite": "*",
+ "@libsql/client": "*",
+ "better-sqlite3": "*",
+ "drizzle-orm": "*",
+ "mysql2": "*",
+ "sqlite3": "*"
+ },
+ "peerDependenciesMeta": {
+ "@electric-sql/pglite": {
+ "optional": true
+ },
+ "@libsql/client": {
+ "optional": true
+ },
+ "better-sqlite3": {
+ "optional": true
+ },
+ "drizzle-orm": {
+ "optional": true
+ },
+ "mysql2": {
+ "optional": true
+ },
+ "sqlite3": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/deepmerge": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/default-browser": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz",
+ "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==",
+ "license": "MIT",
+ "dependencies": {
+ "bundle-name": "^4.1.0",
+ "default-browser-id": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/default-browser-id": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz",
+ "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/define-lazy-prop": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
+ "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/defu": {
+ "version": "6.1.4",
+ "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz",
+ "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==",
+ "license": "MIT"
+ },
+ "node_modules/denque": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz",
+ "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/depd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/destr": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz",
+ "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==",
+ "license": "MIT"
+ },
+ "node_modules/destroy": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/detect-libc": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
+ "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
+ "license": "Apache-2.0",
+ "bin": {
+ "detect-libc": "bin/detect-libc.js"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/devalue": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.1.1.tgz",
+ "integrity": "sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==",
+ "license": "MIT"
+ },
+ "node_modules/diff": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-7.0.0.tgz",
+ "integrity": "sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.3.1"
+ }
+ },
+ "node_modules/dom-serializer": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
+ "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
+ "license": "MIT",
+ "dependencies": {
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.2",
+ "entities": "^4.2.0"
+ },
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ }
+ },
+ "node_modules/domelementtype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
+ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/domhandler": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
+ "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "domelementtype": "^2.3.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
+ }
+ },
+ "node_modules/domutils": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
+ "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "dom-serializer": "^2.0.0",
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
+ }
+ },
+ "node_modules/dot-prop": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-9.0.0.tgz",
+ "integrity": "sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==",
+ "license": "MIT",
+ "dependencies": {
+ "type-fest": "^4.18.2"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/dotenv": {
+ "version": "16.4.7",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz",
+ "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "node_modules/duplexer": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
+ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==",
+ "license": "MIT"
+ },
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "license": "MIT"
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
+ "license": "MIT"
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.123",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.123.tgz",
+ "integrity": "sha512-refir3NlutEZqlKaBLK0tzlVLe5P2wDKS7UQt/3SpibizgsRAPOsqQC3ffw1nlv3ze5gjRQZYHoPymgVZkplFA==",
+ "license": "ISC"
+ },
+ "node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "license": "MIT"
+ },
+ "node_modules/encodeurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/enhanced-resolve": {
+ "version": "5.18.1",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
+ "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/entities": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/error-stack-parser-es": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz",
+ "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/errx": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/errx/-/errx-0.1.0.tgz",
+ "integrity": "sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==",
+ "license": "MIT"
+ },
+ "node_modules/es-module-lexer": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz",
+ "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==",
+ "license": "MIT"
+ },
+ "node_modules/esbuild": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz",
+ "integrity": "sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.25.1",
+ "@esbuild/android-arm": "0.25.1",
+ "@esbuild/android-arm64": "0.25.1",
+ "@esbuild/android-x64": "0.25.1",
+ "@esbuild/darwin-arm64": "0.25.1",
+ "@esbuild/darwin-x64": "0.25.1",
+ "@esbuild/freebsd-arm64": "0.25.1",
+ "@esbuild/freebsd-x64": "0.25.1",
+ "@esbuild/linux-arm": "0.25.1",
+ "@esbuild/linux-arm64": "0.25.1",
+ "@esbuild/linux-ia32": "0.25.1",
+ "@esbuild/linux-loong64": "0.25.1",
+ "@esbuild/linux-mips64el": "0.25.1",
+ "@esbuild/linux-ppc64": "0.25.1",
+ "@esbuild/linux-riscv64": "0.25.1",
+ "@esbuild/linux-s390x": "0.25.1",
+ "@esbuild/linux-x64": "0.25.1",
+ "@esbuild/netbsd-arm64": "0.25.1",
+ "@esbuild/netbsd-x64": "0.25.1",
+ "@esbuild/openbsd-arm64": "0.25.1",
+ "@esbuild/openbsd-x64": "0.25.1",
+ "@esbuild/sunos-x64": "0.25.1",
+ "@esbuild/win32-arm64": "0.25.1",
+ "@esbuild/win32-ia32": "0.25.1",
+ "@esbuild/win32-x64": "0.25.1"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
+ "license": "MIT"
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "peer": true,
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "peer": true,
+ "dependencies": {
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/esrecurse/node_modules/estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "peer": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "peer": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estree-walker": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
+ "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "^1.0.0"
+ }
+ },
+ "node_modules/etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/event-target-shim": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
+ "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/events": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
+ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.x"
+ }
+ },
+ "node_modules/execa": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
+ "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
+ "license": "MIT",
+ "dependencies": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^8.0.1",
+ "human-signals": "^5.0.0",
+ "is-stream": "^3.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^5.1.0",
+ "onetime": "^6.0.0",
+ "signal-exit": "^4.1.0",
+ "strip-final-newline": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=16.17"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
+ }
+ },
+ "node_modules/exsolve": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/exsolve/-/exsolve-1.0.4.tgz",
+ "integrity": "sha512-xsZH6PXaER4XoV+NiT7JHp1bJodJVT+cxeSH1G0f0tlT0lJqYuHUP3bUx2HtfTDvOagMINYp8rsqusxud3RXhw==",
+ "license": "MIT"
+ },
+ "node_modules/externality": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/externality/-/externality-1.0.2.tgz",
+ "integrity": "sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==",
+ "license": "MIT",
+ "dependencies": {
+ "enhanced-resolve": "^5.14.1",
+ "mlly": "^1.3.0",
+ "pathe": "^1.1.1",
+ "ufo": "^1.1.2"
+ }
+ },
+ "node_modules/externality/node_modules/pathe": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
+ "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
+ "license": "MIT"
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "license": "MIT"
+ },
+ "node_modules/fast-fifo": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz",
+ "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
+ "license": "MIT"
+ },
+ "node_modules/fast-glob": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.8"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fast-npm-meta": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/fast-npm-meta/-/fast-npm-meta-0.3.1.tgz",
+ "integrity": "sha512-W9gVhqRyz2O3j20I0nFmYEyaMC/046oaMRxxAQ0w6noakfbhpLmlIXmnnqSOmVVuJZ6x5hOPVwlv7PocuawZsw==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/fast-uri": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz",
+ "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fastify"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/fastify"
+ }
+ ],
+ "license": "BSD-3-Clause",
+ "peer": true
+ },
+ "node_modules/fastq": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
+ "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
+ "license": "ISC",
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "node_modules/fdir": {
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz",
+ "integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/file-uri-to-path": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
+ "license": "MIT"
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/foreground-child": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.6",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/fraction.js": {
+ "version": "4.3.7",
+ "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
+ "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
+ "license": "MIT",
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "type": "patreon",
+ "url": "https://github.com/sponsors/rawify"
+ }
+ },
+ "node_modules/fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "hasInstallScript": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/fuse.js": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-7.1.0.tgz",
+ "integrity": "sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "license": "ISC",
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/get-port-please": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.2.tgz",
+ "integrity": "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==",
+ "license": "MIT"
+ },
+ "node_modules/get-stream": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz",
+ "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/giget": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/giget/-/giget-2.0.0.tgz",
+ "integrity": "sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==",
+ "license": "MIT",
+ "dependencies": {
+ "citty": "^0.1.6",
+ "consola": "^3.4.0",
+ "defu": "^6.1.4",
+ "node-fetch-native": "^1.6.6",
+ "nypm": "^0.6.0",
+ "pathe": "^2.0.3"
+ },
+ "bin": {
+ "giget": "dist/cli.mjs"
+ }
+ },
+ "node_modules/git-up": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/git-up/-/git-up-8.0.1.tgz",
+ "integrity": "sha512-2XFu1uNZMSjkyetaF+8rqn6P0XqpMq/C+2ycjI6YwrIKcszZ5/WR4UubxjN0lILOKqLkLaHDaCr2B6fP1cke6g==",
+ "license": "MIT",
+ "dependencies": {
+ "is-ssh": "^1.4.0",
+ "parse-url": "^9.2.0"
+ }
+ },
+ "node_modules/git-url-parse": {
+ "version": "16.0.1",
+ "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-16.0.1.tgz",
+ "integrity": "sha512-mcD36GrhAzX5JVOsIO52qNpgRyFzYWRbU1VSRFCvJt1IJvqfvH427wWw/CFqkWvjVPtdG5VTx4MKUeC5GeFPDQ==",
+ "license": "MIT",
+ "dependencies": {
+ "git-up": "^8.0.0"
+ }
+ },
+ "node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/glob-to-regexp": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "peer": true
+ },
+ "node_modules/global-directory": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz",
+ "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==",
+ "license": "MIT",
+ "dependencies": {
+ "ini": "4.1.1"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/globby": {
+ "version": "14.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz",
+ "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==",
+ "license": "MIT",
+ "dependencies": {
+ "@sindresorhus/merge-streams": "^2.1.0",
+ "fast-glob": "^3.3.3",
+ "ignore": "^7.0.3",
+ "path-type": "^6.0.0",
+ "slash": "^5.1.0",
+ "unicorn-magic": "^0.3.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "license": "ISC"
+ },
+ "node_modules/gzip-size": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-7.0.0.tgz",
+ "integrity": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==",
+ "license": "MIT",
+ "dependencies": {
+ "duplexer": "^0.1.2"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/h3": {
+ "version": "1.15.1",
+ "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.1.tgz",
+ "integrity": "sha512-+ORaOBttdUm1E2Uu/obAyCguiI7MbBvsLTndc3gyK3zU+SYLoZXlyCP9Xgy0gikkGufFLTZXCXD6+4BsufnmHA==",
+ "license": "MIT",
+ "dependencies": {
+ "cookie-es": "^1.2.2",
+ "crossws": "^0.3.3",
+ "defu": "^6.1.4",
+ "destr": "^2.0.3",
+ "iron-webcrypto": "^1.2.1",
+ "node-mock-http": "^1.0.0",
+ "radix3": "^1.1.2",
+ "ufo": "^1.5.4",
+ "uncrypto": "^0.1.3"
+ }
+ },
+ "node_modules/h3/node_modules/cookie-es": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz",
+ "integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==",
+ "license": "MIT"
+ },
+ "node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hookable": {
+ "version": "5.5.3",
+ "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz",
+ "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
+ "license": "MIT"
+ },
+ "node_modules/http-errors": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
+ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "depd": "2.0.0",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "toidentifier": "1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/http-shutdown": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz",
+ "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==",
+ "license": "MIT",
+ "engines": {
+ "iojs": ">= 1.0.0",
+ "node": ">= 0.12.0"
+ }
+ },
+ "node_modules/https-proxy-agent": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
+ "license": "MIT",
+ "dependencies": {
+ "agent-base": "^7.1.2",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/httpxy": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/httpxy/-/httpxy-0.1.7.tgz",
+ "integrity": "sha512-pXNx8gnANKAndgga5ahefxc++tJvNL87CXoRwxn1cJE2ZkWEojF3tNfQIEhZX/vfpt+wzeAzpUI4qkediX1MLQ==",
+ "license": "MIT"
+ },
+ "node_modules/human-signals": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz",
+ "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=16.17.0"
+ }
+ },
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/ignore": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz",
+ "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/image-meta": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/image-meta/-/image-meta-0.2.1.tgz",
+ "integrity": "sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==",
+ "license": "MIT"
+ },
+ "node_modules/impound": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/impound/-/impound-0.2.2.tgz",
+ "integrity": "sha512-9CNg+Ly8QjH4FwCUoE9nl1zeqY1NPK1s1P6Btp4L8lJxn8oZLN/0p6RZhitnyEL0BnVWrcVPfbs0Q3x+O/ucHg==",
+ "license": "MIT",
+ "dependencies": {
+ "@rollup/pluginutils": "^5.1.4",
+ "mlly": "^1.7.4",
+ "mocked-exports": "^0.1.0",
+ "pathe": "^2.0.3",
+ "unplugin": "^2.2.0"
+ }
+ },
+ "node_modules/index-to-position": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-1.0.0.tgz",
+ "integrity": "sha512-sCO7uaLVhRJ25vz1o8s9IFM3nVS4DkuQnyjMwiQPKvQuBYBDmb8H7zx8ki7nVh4HJQOdVWebyvLE0qt+clruxA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "license": "ISC"
+ },
+ "node_modules/ini": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz",
+ "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==",
+ "license": "ISC",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/ioredis": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.6.0.tgz",
+ "integrity": "sha512-tBZlIIWbndeWBWCXWZiqtOF/yxf6yZX3tAlTJ7nfo5jhd6dctNxF7QnYlZLZ1a0o0pDoen7CgZqO+zjNaFbJAg==",
+ "license": "MIT",
+ "dependencies": {
+ "@ioredis/commands": "^1.1.1",
+ "cluster-key-slot": "^1.1.0",
+ "debug": "^4.3.4",
+ "denque": "^2.1.0",
+ "lodash.defaults": "^4.2.0",
+ "lodash.isarguments": "^3.1.0",
+ "redis-errors": "^1.2.0",
+ "redis-parser": "^3.0.0",
+ "standard-as-callback": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=12.22.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/ioredis"
+ }
+ },
+ "node_modules/iron-webcrypto": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz",
+ "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/brc-dd"
+ }
+ },
+ "node_modules/is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "binary-extensions": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-core-module": {
+ "version": "2.16.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-docker": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
+ "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
+ "license": "MIT",
+ "bin": {
+ "is-docker": "cli.js"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "license": "MIT",
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-inside-container": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
+ "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
+ "license": "MIT",
+ "dependencies": {
+ "is-docker": "^3.0.0"
+ },
+ "bin": {
+ "is-inside-container": "cli.js"
+ },
+ "engines": {
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-installed-globally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-1.0.0.tgz",
+ "integrity": "sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==",
+ "license": "MIT",
+ "dependencies": {
+ "global-directory": "^4.0.1",
+ "is-path-inside": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-module": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
+ "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==",
+ "license": "MIT"
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-path-inside": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz",
+ "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-reference": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz",
+ "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "*"
+ }
+ },
+ "node_modules/is-ssh": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.1.tgz",
+ "integrity": "sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==",
+ "license": "MIT",
+ "dependencies": {
+ "protocols": "^2.0.1"
+ }
+ },
+ "node_modules/is-stream": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
+ "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
+ "license": "MIT",
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-what": {
+ "version": "4.1.16",
+ "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz",
+ "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.13"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/mesqueeb"
+ }
+ },
+ "node_modules/is-wsl": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
+ "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==",
+ "license": "MIT",
+ "dependencies": {
+ "is-inside-container": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is64bit": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz",
+ "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==",
+ "license": "MIT",
+ "dependencies": {
+ "system-architecture": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
+ "license": "MIT"
+ },
+ "node_modules/isexe": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
+ "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/jackspeak": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "@isaacs/cliui": "^8.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ },
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
+ }
+ },
+ "node_modules/jest-worker": {
+ "version": "27.5.1",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
+ "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ }
+ },
+ "node_modules/jest-worker/node_modules/supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "node_modules/jiti": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
+ "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
+ "license": "MIT",
+ "bin": {
+ "jiti": "lib/jiti-cli.mjs"
+ }
+ },
+ "node_modules/js-levenshtein": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz",
+ "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "license": "MIT"
+ },
+ "node_modules/js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/jsesc": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-parse-even-better-errors": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
+ "license": "MIT"
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "license": "MIT",
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/kleur": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
+ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/klona": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz",
+ "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/knitwork": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/knitwork/-/knitwork-1.2.0.tgz",
+ "integrity": "sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==",
+ "license": "MIT"
+ },
+ "node_modules/kolorist": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz",
+ "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/launch-editor": {
+ "version": "2.10.0",
+ "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.10.0.tgz",
+ "integrity": "sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==",
+ "license": "MIT",
+ "dependencies": {
+ "picocolors": "^1.0.0",
+ "shell-quote": "^1.8.1"
+ }
+ },
+ "node_modules/lazystream": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz",
+ "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
+ "license": "MIT",
+ "dependencies": {
+ "readable-stream": "^2.0.5"
+ },
+ "engines": {
+ "node": ">= 0.6.3"
+ }
+ },
+ "node_modules/lazystream/node_modules/readable-stream": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
+ "license": "MIT",
+ "dependencies": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "node_modules/lazystream/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "license": "MIT"
+ },
+ "node_modules/lazystream/node_modules/string_decoder": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "~5.1.0"
+ }
+ },
+ "node_modules/lilconfig": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
+ "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antonk52"
+ }
+ },
+ "node_modules/listhen": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.9.0.tgz",
+ "integrity": "sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==",
+ "license": "MIT",
+ "dependencies": {
+ "@parcel/watcher": "^2.4.1",
+ "@parcel/watcher-wasm": "^2.4.1",
+ "citty": "^0.1.6",
+ "clipboardy": "^4.0.0",
+ "consola": "^3.2.3",
+ "crossws": ">=0.2.0 <0.4.0",
+ "defu": "^6.1.4",
+ "get-port-please": "^3.1.2",
+ "h3": "^1.12.0",
+ "http-shutdown": "^1.2.2",
+ "jiti": "^2.1.2",
+ "mlly": "^1.7.1",
+ "node-forge": "^1.3.1",
+ "pathe": "^1.1.2",
+ "std-env": "^3.7.0",
+ "ufo": "^1.5.4",
+ "untun": "^0.1.3",
+ "uqr": "^0.1.2"
+ },
+ "bin": {
+ "listen": "bin/listhen.mjs",
+ "listhen": "bin/listhen.mjs"
+ }
+ },
+ "node_modules/listhen/node_modules/pathe": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
+ "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
+ "license": "MIT"
+ },
+ "node_modules/loader-runner": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
+ "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=6.11.5"
+ }
+ },
+ "node_modules/local-pkg": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-1.1.1.tgz",
+ "integrity": "sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==",
+ "license": "MIT",
+ "dependencies": {
+ "mlly": "^1.7.4",
+ "pkg-types": "^2.0.1",
+ "quansync": "^0.2.8"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.defaults": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz",
+ "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.isarguments": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz",
+ "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.memoize": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
+ "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.uniq": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
+ "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==",
+ "license": "MIT"
+ },
+ "node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "node_modules/magic-string": {
+ "version": "0.30.17",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
+ "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.0"
+ }
+ },
+ "node_modules/magic-string-ast": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmjs.org/magic-string-ast/-/magic-string-ast-0.7.1.tgz",
+ "integrity": "sha512-ub9iytsEbT7Yw/Pd29mSo/cNQpaEu67zR1VVcXDiYjSFwzeBxNdTd0FMnSslLQXiRj8uGPzwsaoefrMD5XAmdw==",
+ "license": "MIT",
+ "dependencies": {
+ "magic-string": "^0.30.17"
+ },
+ "engines": {
+ "node": ">=16.14.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sxzz"
+ }
+ },
+ "node_modules/magicast": {
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz",
+ "integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.25.4",
+ "@babel/types": "^7.25.4",
+ "source-map-js": "^1.2.0"
+ }
+ },
+ "node_modules/mdn-data": {
+ "version": "2.0.30",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz",
+ "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==",
+ "license": "CC0-1.0"
+ },
+ "node_modules/merge-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
+ "license": "MIT"
+ },
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+ "license": "MIT",
+ "dependencies": {
+ "braces": "^3.0.3",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/micromatch/node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/mime": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.6.tgz",
+ "integrity": "sha512-4rGt7rvQHBbaSOF9POGkk1ocRP16Md1x36Xma8sz8h8/vfCUI2OtEIeCqe4Ofes853x4xDoPiFLIT47J5fI/7A==",
+ "funding": [
+ "https://github.com/sponsors/broofa"
+ ],
+ "license": "MIT",
+ "bin": {
+ "mime": "bin/cli.js"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mimic-fn": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
+ "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/minipass": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/minizlib": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz",
+ "integrity": "sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==",
+ "license": "MIT",
+ "dependencies": {
+ "minipass": "^7.0.4",
+ "rimraf": "^5.0.5"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/mitt": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
+ "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
+ "license": "MIT"
+ },
+ "node_modules/mkdirp": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz",
+ "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==",
+ "license": "MIT",
+ "bin": {
+ "mkdirp": "dist/cjs/src/bin.js"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/mlly": {
+ "version": "1.7.4",
+ "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.4.tgz",
+ "integrity": "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==",
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.14.0",
+ "pathe": "^2.0.1",
+ "pkg-types": "^1.3.0",
+ "ufo": "^1.5.4"
+ }
+ },
+ "node_modules/mlly/node_modules/pkg-types": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
+ "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
+ "license": "MIT",
+ "dependencies": {
+ "confbox": "^0.1.8",
+ "mlly": "^1.7.4",
+ "pathe": "^2.0.1"
+ }
+ },
+ "node_modules/mocked-exports": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/mocked-exports/-/mocked-exports-0.1.1.tgz",
+ "integrity": "sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA==",
+ "license": "MIT"
+ },
+ "node_modules/mrmime": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
+ "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "license": "MIT"
+ },
+ "node_modules/nanoid": {
+ "version": "5.1.5",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.1.5.tgz",
+ "integrity": "sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "bin": {
+ "nanoid": "bin/nanoid.js"
+ },
+ "engines": {
+ "node": "^18 || >=20"
+ }
+ },
+ "node_modules/nanotar": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/nanotar/-/nanotar-0.2.0.tgz",
+ "integrity": "sha512-9ca1h0Xjvo9bEkE4UOxgAzLV0jHKe6LMaxo37ND2DAhhAtd0j8pR1Wxz+/goMrZO8AEZTWCmyaOsFI/W5AdpCQ==",
+ "license": "MIT"
+ },
+ "node_modules/neo-async": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
+ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/nitropack": {
+ "version": "2.11.7",
+ "resolved": "https://registry.npmjs.org/nitropack/-/nitropack-2.11.7.tgz",
+ "integrity": "sha512-ghqLa3Q4X9qaQiUyspWxxoU1fY2nwfSJqhOH+COqyCp7Vgj4oM1EM1L0YNSQUF16T2tAoOWg8woXGq0EH5Y6wQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@cloudflare/kv-asset-handler": "^0.4.0",
+ "@netlify/functions": "^3.0.2",
+ "@rollup/plugin-alias": "^5.1.1",
+ "@rollup/plugin-commonjs": "^28.0.3",
+ "@rollup/plugin-inject": "^5.0.5",
+ "@rollup/plugin-json": "^6.1.0",
+ "@rollup/plugin-node-resolve": "^16.0.1",
+ "@rollup/plugin-replace": "^6.0.2",
+ "@rollup/plugin-terser": "^0.4.4",
+ "@vercel/nft": "^0.29.2",
+ "archiver": "^7.0.1",
+ "c12": "^3.0.2",
+ "chokidar": "^4.0.3",
+ "citty": "^0.1.6",
+ "compatx": "^0.1.8",
+ "confbox": "^0.2.1",
+ "consola": "^3.4.2",
+ "cookie-es": "^2.0.0",
+ "croner": "^9.0.0",
+ "crossws": "^0.3.4",
+ "db0": "^0.3.1",
+ "defu": "^6.1.4",
+ "destr": "^2.0.3",
+ "dot-prop": "^9.0.0",
+ "esbuild": "^0.25.1",
+ "escape-string-regexp": "^5.0.0",
+ "etag": "^1.8.1",
+ "exsolve": "^1.0.4",
+ "globby": "^14.1.0",
+ "gzip-size": "^7.0.0",
+ "h3": "^1.15.1",
+ "hookable": "^5.5.3",
+ "httpxy": "^0.1.7",
+ "ioredis": "^5.6.0",
+ "jiti": "^2.4.2",
+ "klona": "^2.0.6",
+ "knitwork": "^1.2.0",
+ "listhen": "^1.9.0",
+ "magic-string": "^0.30.17",
+ "magicast": "^0.3.5",
+ "mime": "^4.0.6",
+ "mlly": "^1.7.4",
+ "node-fetch-native": "^1.6.6",
+ "node-mock-http": "^1.0.0",
+ "ofetch": "^1.4.1",
+ "ohash": "^2.0.11",
+ "openapi-typescript": "^7.6.1",
+ "pathe": "^2.0.3",
+ "perfect-debounce": "^1.0.0",
+ "pkg-types": "^2.1.0",
+ "pretty-bytes": "^6.1.1",
+ "radix3": "^1.1.2",
+ "rollup": "^4.36.0",
+ "rollup-plugin-visualizer": "^5.14.0",
+ "scule": "^1.3.0",
+ "semver": "^7.7.1",
+ "serve-placeholder": "^2.0.2",
+ "serve-static": "^1.16.2",
+ "source-map": "^0.7.4",
+ "std-env": "^3.8.1",
+ "ufo": "^1.5.4",
+ "ultrahtml": "^1.5.3",
+ "uncrypto": "^0.1.3",
+ "unctx": "^2.4.1",
+ "unenv": "^2.0.0-rc.15",
+ "unimport": "^4.1.2",
+ "unplugin-utils": "^0.2.4",
+ "unstorage": "^1.15.0",
+ "untyped": "^2.0.0",
+ "unwasm": "^0.3.9",
+ "youch": "^4.1.0-beta.6",
+ "youch-core": "^0.3.2"
+ },
+ "bin": {
+ "nitro": "dist/cli/index.mjs",
+ "nitropack": "dist/cli/index.mjs"
+ },
+ "engines": {
+ "node": "^16.11.0 || >=17.0.0"
+ },
+ "peerDependencies": {
+ "xml2js": "^0.6.2"
+ },
+ "peerDependenciesMeta": {
+ "xml2js": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/nitropack/node_modules/confbox": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.2.1.tgz",
+ "integrity": "sha512-hkT3yDPFbs95mNCy1+7qNKC6Pro+/ibzYxtM2iqEigpf0sVw+bg4Zh9/snjsBcf990vfIsg5+1U7VyiyBb3etg==",
+ "license": "MIT"
+ },
+ "node_modules/node-addon-api": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
+ "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
+ "license": "MIT"
+ },
+ "node_modules/node-fetch": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
+ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
+ "license": "MIT",
+ "dependencies": {
+ "whatwg-url": "^5.0.0"
+ },
+ "engines": {
+ "node": "4.x || >=6.0.0"
+ },
+ "peerDependencies": {
+ "encoding": "^0.1.0"
+ },
+ "peerDependenciesMeta": {
+ "encoding": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/node-fetch-native": {
+ "version": "1.6.6",
+ "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.6.tgz",
+ "integrity": "sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==",
+ "license": "MIT"
+ },
+ "node_modules/node-forge": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz",
+ "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==",
+ "license": "(BSD-3-Clause OR GPL-2.0)",
+ "engines": {
+ "node": ">= 6.13.0"
+ }
+ },
+ "node_modules/node-gyp-build": {
+ "version": "4.8.4",
+ "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz",
+ "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==",
+ "license": "MIT",
+ "bin": {
+ "node-gyp-build": "bin.js",
+ "node-gyp-build-optional": "optional.js",
+ "node-gyp-build-test": "build-test.js"
+ }
+ },
+ "node_modules/node-mock-http": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.0.tgz",
+ "integrity": "sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==",
+ "license": "MIT"
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.19",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
+ "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
+ "license": "MIT"
+ },
+ "node_modules/nopt": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz",
+ "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==",
+ "license": "ISC",
+ "dependencies": {
+ "abbrev": "^3.0.0"
+ },
+ "bin": {
+ "nopt": "bin/nopt.js"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/normalize-range": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
+ "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/npm-run-path": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
+ "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^4.0.0"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/npm-run-path/node_modules/path-key": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
+ "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/nth-check": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
+ "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "boolbase": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/nth-check?sponsor=1"
+ }
+ },
+ "node_modules/nuxt": {
+ "version": "3.16.1",
+ "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-3.16.1.tgz",
+ "integrity": "sha512-V0odAW9Yo8s58yGnSy0RuX+rQwz0wtQp3eOgMTsh1YDDZdIIYZmAlZaLypNeieO/mbmvOOUcnuRyIGIRrF4+5A==",
+ "license": "MIT",
+ "dependencies": {
+ "@nuxt/cli": "^3.23.1",
+ "@nuxt/devalue": "^2.0.2",
+ "@nuxt/devtools": "^2.3.0",
+ "@nuxt/kit": "3.16.1",
+ "@nuxt/schema": "3.16.1",
+ "@nuxt/telemetry": "^2.6.6",
+ "@nuxt/vite-builder": "3.16.1",
+ "@oxc-parser/wasm": "^0.60.0",
+ "@unhead/vue": "^2.0.0-rc.13",
+ "@vue/shared": "^3.5.13",
+ "c12": "^3.0.2",
+ "chokidar": "^4.0.3",
+ "compatx": "^0.1.8",
+ "consola": "^3.4.2",
+ "cookie-es": "^2.0.0",
+ "defu": "^6.1.4",
+ "destr": "^2.0.3",
+ "devalue": "^5.1.1",
+ "errx": "^0.1.0",
+ "esbuild": "^0.25.1",
+ "escape-string-regexp": "^5.0.0",
+ "estree-walker": "^3.0.3",
+ "exsolve": "^1.0.4",
+ "globby": "^14.1.0",
+ "h3": "^1.15.1",
+ "hookable": "^5.5.3",
+ "ignore": "^7.0.3",
+ "impound": "^0.2.2",
+ "jiti": "^2.4.2",
+ "klona": "^2.0.6",
+ "knitwork": "^1.2.0",
+ "magic-string": "^0.30.17",
+ "mlly": "^1.7.4",
+ "mocked-exports": "^0.1.1",
+ "nanotar": "^0.2.0",
+ "nitropack": "^2.11.7",
+ "nypm": "^0.6.0",
+ "ofetch": "^1.4.1",
+ "ohash": "^2.0.11",
+ "on-change": "^5.0.1",
+ "oxc-parser": "^0.56.3",
+ "pathe": "^2.0.3",
+ "perfect-debounce": "^1.0.0",
+ "pkg-types": "^2.1.0",
+ "radix3": "^1.1.2",
+ "scule": "^1.3.0",
+ "semver": "^7.7.1",
+ "std-env": "^3.8.1",
+ "strip-literal": "^3.0.0",
+ "tinyglobby": "0.2.12",
+ "ufo": "^1.5.4",
+ "ultrahtml": "^1.5.3",
+ "uncrypto": "^0.1.3",
+ "unctx": "^2.4.1",
+ "unimport": "^4.1.2",
+ "unplugin": "^2.2.1",
+ "unplugin-vue-router": "^0.12.0",
+ "unstorage": "^1.15.0",
+ "untyped": "^2.0.0",
+ "vue": "^3.5.13",
+ "vue-bundle-renderer": "^2.1.1",
+ "vue-devtools-stub": "^0.1.0",
+ "vue-router": "^4.5.0"
+ },
+ "bin": {
+ "nuxi": "bin/nuxt.mjs",
+ "nuxt": "bin/nuxt.mjs"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0.0"
+ },
+ "peerDependencies": {
+ "@parcel/watcher": "^2.1.0",
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@parcel/watcher": {
+ "optional": true
+ },
+ "@types/node": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/nypm": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.6.0.tgz",
+ "integrity": "sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==",
+ "license": "MIT",
+ "dependencies": {
+ "citty": "^0.1.6",
+ "consola": "^3.4.0",
+ "pathe": "^2.0.3",
+ "pkg-types": "^2.0.0",
+ "tinyexec": "^0.3.2"
+ },
+ "bin": {
+ "nypm": "dist/cli.mjs"
+ },
+ "engines": {
+ "node": "^14.16.0 || >=16.10.0"
+ }
+ },
+ "node_modules/ofetch": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.4.1.tgz",
+ "integrity": "sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==",
+ "license": "MIT",
+ "dependencies": {
+ "destr": "^2.0.3",
+ "node-fetch-native": "^1.6.4",
+ "ufo": "^1.5.4"
+ }
+ },
+ "node_modules/ohash": {
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz",
+ "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==",
+ "license": "MIT"
+ },
+ "node_modules/on-change": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/on-change/-/on-change-5.0.1.tgz",
+ "integrity": "sha512-n7THCP7RkyReRSLkJb8kUWoNsxUIBxTkIp3JKno+sEz6o/9AJ3w3P9fzQkITEkMwyTKJjZciF3v/pVoouxZZMg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/on-change?sponsor=1"
+ }
+ },
+ "node_modules/on-finished": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+ "license": "MIT",
+ "dependencies": {
+ "ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/onetime": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
+ "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
+ "license": "MIT",
+ "dependencies": {
+ "mimic-fn": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/open": {
+ "version": "8.4.2",
+ "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
+ "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
+ "license": "MIT",
+ "dependencies": {
+ "define-lazy-prop": "^2.0.0",
+ "is-docker": "^2.1.1",
+ "is-wsl": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/open/node_modules/is-docker": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
+ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
+ "license": "MIT",
+ "bin": {
+ "is-docker": "cli.js"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/open/node_modules/is-wsl": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
+ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
+ "license": "MIT",
+ "dependencies": {
+ "is-docker": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/openapi-typescript": {
+ "version": "7.6.1",
+ "resolved": "https://registry.npmjs.org/openapi-typescript/-/openapi-typescript-7.6.1.tgz",
+ "integrity": "sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==",
+ "license": "MIT",
+ "dependencies": {
+ "@redocly/openapi-core": "^1.28.0",
+ "ansi-colors": "^4.1.3",
+ "change-case": "^5.4.4",
+ "parse-json": "^8.1.0",
+ "supports-color": "^9.4.0",
+ "yargs-parser": "^21.1.1"
+ },
+ "bin": {
+ "openapi-typescript": "bin/cli.js"
+ },
+ "peerDependencies": {
+ "typescript": "^5.x"
+ }
+ },
+ "node_modules/oxc-parser": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/oxc-parser/-/oxc-parser-0.56.5.tgz",
+ "integrity": "sha512-MNT32sqiTFeSbQZP2WZIRQ/mlIpNNq4sua+/4hBG4qT5aef2iQe+1/BjezZURPlvucZeSfN1Y6b60l7OgBdyUA==",
+ "license": "MIT",
+ "dependencies": {
+ "@oxc-project/types": "^0.56.5"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/Boshen"
+ },
+ "optionalDependencies": {
+ "@oxc-parser/binding-darwin-arm64": "0.56.5",
+ "@oxc-parser/binding-darwin-x64": "0.56.5",
+ "@oxc-parser/binding-linux-arm-gnueabihf": "0.56.5",
+ "@oxc-parser/binding-linux-arm64-gnu": "0.56.5",
+ "@oxc-parser/binding-linux-arm64-musl": "0.56.5",
+ "@oxc-parser/binding-linux-x64-gnu": "0.56.5",
+ "@oxc-parser/binding-linux-x64-musl": "0.56.5",
+ "@oxc-parser/binding-wasm32-wasi": "0.56.5",
+ "@oxc-parser/binding-win32-arm64-msvc": "0.56.5",
+ "@oxc-parser/binding-win32-x64-msvc": "0.56.5"
+ }
+ },
+ "node_modules/oxc-parser/node_modules/@oxc-project/types": {
+ "version": "0.56.5",
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.56.5.tgz",
+ "integrity": "sha512-skY3kOJwp22W4RkaadH1hZ3hqFHjkRrIIE0uQ4VUg+/Chvbl+2pF+B55IrIk2dgsKXS57YEUsJuN6I6s4rgFjA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/Boshen"
+ }
+ },
+ "node_modules/package-json-from-dist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
+ "license": "BlueOak-1.0.0"
+ },
+ "node_modules/package-manager-detector": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.1.0.tgz",
+ "integrity": "sha512-Y8f9qUlBzW8qauJjd/eu6jlpJZsuPJm2ZAV0cDVd420o4EdpH5RPdoCv+60/TdJflGatr4sDfpAL6ArWZbM5tA==",
+ "license": "MIT"
+ },
+ "node_modules/parse-json": {
+ "version": "8.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.2.0.tgz",
+ "integrity": "sha512-eONBZy4hm2AgxjNFd8a4nyDJnzUAH0g34xSQAwWEVGCjdZ4ZL7dKZBfq267GWP/JaS9zW62Xs2FeAdDvpHHJGQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.26.2",
+ "index-to-position": "^1.0.0",
+ "type-fest": "^4.37.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parse-path": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.1.tgz",
+ "integrity": "sha512-6ReLMptznuuOEzLoGEa+I1oWRSj2Zna5jLWC+l6zlfAI4dbbSaIES29ThzuPkbhNahT65dWzfoZEO6cfJw2Ksg==",
+ "license": "MIT",
+ "dependencies": {
+ "protocols": "^2.0.0"
+ }
+ },
+ "node_modules/parse-url": {
+ "version": "9.2.0",
+ "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-9.2.0.tgz",
+ "integrity": "sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/parse-path": "^7.0.0",
+ "parse-path": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=14.13.0"
+ }
+ },
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "license": "MIT"
+ },
+ "node_modules/path-scurry": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "lru-cache": "^10.2.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/path-scurry/node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
+ "license": "ISC"
+ },
+ "node_modules/path-type": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz",
+ "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/pathe": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
+ "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
+ "license": "MIT"
+ },
+ "node_modules/perfect-debounce": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
+ "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
+ "license": "MIT"
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
+ "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/pkg-types": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-2.1.0.tgz",
+ "integrity": "sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==",
+ "license": "MIT",
+ "dependencies": {
+ "confbox": "^0.2.1",
+ "exsolve": "^1.0.1",
+ "pathe": "^2.0.3"
+ }
+ },
+ "node_modules/pkg-types/node_modules/confbox": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.2.1.tgz",
+ "integrity": "sha512-hkT3yDPFbs95mNCy1+7qNKC6Pro+/ibzYxtM2iqEigpf0sVw+bg4Zh9/snjsBcf990vfIsg5+1U7VyiyBb3etg==",
+ "license": "MIT"
+ },
+ "node_modules/pluralize": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz",
+ "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.3",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
+ "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "nanoid": "^3.3.8",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/postcss-calc": {
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.1.tgz",
+ "integrity": "sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-selector-parser": "^7.0.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12 || ^20.9 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.38"
+ }
+ },
+ "node_modules/postcss-colormin": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.2.tgz",
+ "integrity": "sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.3",
+ "caniuse-api": "^3.0.0",
+ "colord": "^2.9.3",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-convert-values": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.4.tgz",
+ "integrity": "sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.3",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-discard-comments": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.3.tgz",
+ "integrity": "sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-selector-parser": "^6.1.2"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-discard-comments/node_modules/postcss-selector-parser": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
+ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
+ "license": "MIT",
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-discard-duplicates": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.1.tgz",
+ "integrity": "sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==",
+ "license": "MIT",
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-discard-empty": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.0.tgz",
+ "integrity": "sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==",
+ "license": "MIT",
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-discard-overridden": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.0.tgz",
+ "integrity": "sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==",
+ "license": "MIT",
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-merge-longhand": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-7.0.4.tgz",
+ "integrity": "sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0",
+ "stylehacks": "^7.0.4"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-merge-rules": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-7.0.4.tgz",
+ "integrity": "sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.3",
+ "caniuse-api": "^3.0.0",
+ "cssnano-utils": "^5.0.0",
+ "postcss-selector-parser": "^6.1.2"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
+ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
+ "license": "MIT",
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-minify-font-values": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-7.0.0.tgz",
+ "integrity": "sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-minify-gradients": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-7.0.0.tgz",
+ "integrity": "sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==",
+ "license": "MIT",
+ "dependencies": {
+ "colord": "^2.9.3",
+ "cssnano-utils": "^5.0.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-minify-params": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-7.0.2.tgz",
+ "integrity": "sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.3",
+ "cssnano-utils": "^5.0.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-minify-selectors": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-7.0.4.tgz",
+ "integrity": "sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==",
+ "license": "MIT",
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "postcss-selector-parser": "^6.1.2"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
+ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
+ "license": "MIT",
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-normalize-charset": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-7.0.0.tgz",
+ "integrity": "sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==",
+ "license": "MIT",
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-normalize-display-values": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.0.tgz",
+ "integrity": "sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-normalize-positions": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-7.0.0.tgz",
+ "integrity": "sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-normalize-repeat-style": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.0.tgz",
+ "integrity": "sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-normalize-string": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-7.0.0.tgz",
+ "integrity": "sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-normalize-timing-functions": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.0.tgz",
+ "integrity": "sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-normalize-unicode": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.2.tgz",
+ "integrity": "sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.3",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-normalize-url": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-7.0.0.tgz",
+ "integrity": "sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-normalize-whitespace": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.0.tgz",
+ "integrity": "sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-ordered-values": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.1.tgz",
+ "integrity": "sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==",
+ "license": "MIT",
+ "dependencies": {
+ "cssnano-utils": "^5.0.0",
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-reduce-initial": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.2.tgz",
+ "integrity": "sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.3",
+ "caniuse-api": "^3.0.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-reduce-transforms": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.0.tgz",
+ "integrity": "sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-selector-parser": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz",
+ "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==",
+ "license": "MIT",
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-svgo": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-7.0.1.tgz",
+ "integrity": "sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-value-parser": "^4.2.0",
+ "svgo": "^3.3.2"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >= 18"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-unique-selectors": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-7.0.3.tgz",
+ "integrity": "sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==",
+ "license": "MIT",
+ "dependencies": {
+ "postcss-selector-parser": "^6.1.2"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/postcss-unique-selectors/node_modules/postcss-selector-parser": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
+ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
+ "license": "MIT",
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss-value-parser": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
+ "license": "MIT"
+ },
+ "node_modules/postcss/node_modules/nanoid": {
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/pretty-bytes": {
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz",
+ "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==",
+ "license": "MIT",
+ "engines": {
+ "node": "^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/process": {
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6.0"
+ }
+ },
+ "node_modules/process-nextick-args": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+ "license": "MIT"
+ },
+ "node_modules/prompts": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
+ "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
+ "license": "MIT",
+ "dependencies": {
+ "kleur": "^3.0.3",
+ "sisteransi": "^1.0.5"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/protocols": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.2.tgz",
+ "integrity": "sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==",
+ "license": "MIT"
+ },
+ "node_modules/quansync": {
+ "version": "0.2.10",
+ "resolved": "https://registry.npmjs.org/quansync/-/quansync-0.2.10.tgz",
+ "integrity": "sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/antfu"
+ },
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/sxzz"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/radix3": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz",
+ "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==",
+ "license": "MIT"
+ },
+ "node_modules/randombytes": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "^5.1.0"
+ }
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/rc9": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.2.tgz",
+ "integrity": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==",
+ "license": "MIT",
+ "dependencies": {
+ "defu": "^6.1.4",
+ "destr": "^2.0.3"
+ }
+ },
+ "node_modules/readable-stream": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz",
+ "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
+ "license": "MIT",
+ "dependencies": {
+ "abort-controller": "^3.0.0",
+ "buffer": "^6.0.3",
+ "events": "^3.3.0",
+ "process": "^0.11.10",
+ "string_decoder": "^1.3.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ }
+ },
+ "node_modules/readdir-glob": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz",
+ "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "minimatch": "^5.1.0"
+ }
+ },
+ "node_modules/readdir-glob/node_modules/minimatch": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/readdirp": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
+ "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14.18.0"
+ },
+ "funding": {
+ "type": "individual",
+ "url": "https://paulmillr.com/funding/"
+ }
+ },
+ "node_modules/redis-errors": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz",
+ "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/redis-parser": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz",
+ "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==",
+ "license": "MIT",
+ "dependencies": {
+ "redis-errors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/require-from-string": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/resolve": {
+ "version": "1.22.10",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
+ "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
+ "license": "MIT",
+ "dependencies": {
+ "is-core-module": "^2.16.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/reusify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
+ "license": "MIT",
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/rfdc": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
+ "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
+ "license": "MIT"
+ },
+ "node_modules/rimraf": {
+ "version": "5.0.10",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz",
+ "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==",
+ "license": "ISC",
+ "dependencies": {
+ "glob": "^10.3.7"
+ },
+ "bin": {
+ "rimraf": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/rollup": {
+ "version": "4.36.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.36.0.tgz",
+ "integrity": "sha512-zwATAXNQxUcd40zgtQG0ZafcRK4g004WtEl7kbuhTWPvf07PsfohXl39jVUvPF7jvNAIkKPQ2XrsDlWuxBd++Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "1.0.6"
+ },
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "@rollup/rollup-android-arm-eabi": "4.36.0",
+ "@rollup/rollup-android-arm64": "4.36.0",
+ "@rollup/rollup-darwin-arm64": "4.36.0",
+ "@rollup/rollup-darwin-x64": "4.36.0",
+ "@rollup/rollup-freebsd-arm64": "4.36.0",
+ "@rollup/rollup-freebsd-x64": "4.36.0",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.36.0",
+ "@rollup/rollup-linux-arm-musleabihf": "4.36.0",
+ "@rollup/rollup-linux-arm64-gnu": "4.36.0",
+ "@rollup/rollup-linux-arm64-musl": "4.36.0",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.36.0",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.36.0",
+ "@rollup/rollup-linux-riscv64-gnu": "4.36.0",
+ "@rollup/rollup-linux-s390x-gnu": "4.36.0",
+ "@rollup/rollup-linux-x64-gnu": "4.36.0",
+ "@rollup/rollup-linux-x64-musl": "4.36.0",
+ "@rollup/rollup-win32-arm64-msvc": "4.36.0",
+ "@rollup/rollup-win32-ia32-msvc": "4.36.0",
+ "@rollup/rollup-win32-x64-msvc": "4.36.0",
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/rollup-plugin-visualizer": {
+ "version": "5.14.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.14.0.tgz",
+ "integrity": "sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==",
+ "license": "MIT",
+ "dependencies": {
+ "open": "^8.4.0",
+ "picomatch": "^4.0.2",
+ "source-map": "^0.7.4",
+ "yargs": "^17.5.1"
+ },
+ "bin": {
+ "rollup-plugin-visualizer": "dist/bin/cli.js"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "peerDependencies": {
+ "rolldown": "1.x",
+ "rollup": "2.x || 3.x || 4.x"
+ },
+ "peerDependenciesMeta": {
+ "rolldown": {
+ "optional": true
+ },
+ "rollup": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/run-applescript": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz",
+ "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/schema-utils": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
+ "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.9",
+ "ajv": "^8.9.0",
+ "ajv-formats": "^2.1.1",
+ "ajv-keywords": "^5.1.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/scule": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/scule/-/scule-1.3.0.tgz",
+ "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==",
+ "license": "MIT"
+ },
+ "node_modules/semver": {
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/send": {
+ "version": "0.19.0",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
+ "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "2.4.1",
+ "range-parser": "~1.2.1",
+ "statuses": "2.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/send/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/send/node_modules/debug/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/send/node_modules/encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/send/node_modules/mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/serialize-javascript": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
+ "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "randombytes": "^2.1.0"
+ }
+ },
+ "node_modules/serve-placeholder": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.2.tgz",
+ "integrity": "sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==",
+ "license": "MIT",
+ "dependencies": {
+ "defu": "^6.1.4"
+ }
+ },
+ "node_modules/serve-static": {
+ "version": "1.16.2",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
+ "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
+ "license": "MIT",
+ "dependencies": {
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.19.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
+ "license": "ISC"
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shell-quote": {
+ "version": "1.8.2",
+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz",
+ "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/simple-git": {
+ "version": "3.27.0",
+ "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-3.27.0.tgz",
+ "integrity": "sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==",
+ "license": "MIT",
+ "dependencies": {
+ "@kwsites/file-exists": "^1.1.1",
+ "@kwsites/promise-deferred": "^1.1.1",
+ "debug": "^4.3.5"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/steveukx/git-js?sponsor=1"
+ }
+ },
+ "node_modules/sirv": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.1.tgz",
+ "integrity": "sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==",
+ "license": "MIT",
+ "dependencies": {
+ "@polka/url": "^1.0.0-next.24",
+ "mrmime": "^2.0.0",
+ "totalist": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/sisteransi": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
+ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
+ "license": "MIT"
+ },
+ "node_modules/slash": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
+ "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/smob": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/smob/-/smob-1.5.0.tgz",
+ "integrity": "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==",
+ "license": "MIT"
+ },
+ "node_modules/source-map": {
+ "version": "0.7.4",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
+ "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-support": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+ "license": "MIT",
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "node_modules/source-map-support/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/speakingurl": {
+ "version": "14.0.1",
+ "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz",
+ "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/standard-as-callback": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz",
+ "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==",
+ "license": "MIT"
+ },
+ "node_modules/statuses": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/std-env": {
+ "version": "3.8.1",
+ "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.1.tgz",
+ "integrity": "sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==",
+ "license": "MIT"
+ },
+ "node_modules/streamx": {
+ "version": "2.22.0",
+ "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.0.tgz",
+ "integrity": "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==",
+ "license": "MIT",
+ "dependencies": {
+ "fast-fifo": "^1.3.2",
+ "text-decoder": "^1.1.0"
+ },
+ "optionalDependencies": {
+ "bare-events": "^2.2.0"
+ }
+ },
+ "node_modules/string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "node_modules/string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "license": "MIT",
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/string-width-cjs": {
+ "name": "string-width",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "license": "MIT"
+ },
+ "node_modules/string-width-cjs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/strip-ansi-cjs": {
+ "name": "strip-ansi",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-final-newline": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
+ "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/strip-literal": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.0.0.tgz",
+ "integrity": "sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==",
+ "license": "MIT",
+ "dependencies": {
+ "js-tokens": "^9.0.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/strip-literal/node_modules/js-tokens": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz",
+ "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==",
+ "license": "MIT"
+ },
+ "node_modules/structured-clone-es": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/structured-clone-es/-/structured-clone-es-1.0.0.tgz",
+ "integrity": "sha512-FL8EeKFFyNQv5cMnXI31CIMCsFarSVI2bF0U0ImeNE3g/F1IvJQyqzOXxPBRXiwQfyBTlbNe88jh1jFW0O/jiQ==",
+ "license": "ISC"
+ },
+ "node_modules/stylehacks": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-7.0.4.tgz",
+ "integrity": "sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==",
+ "license": "MIT",
+ "dependencies": {
+ "browserslist": "^4.23.3",
+ "postcss-selector-parser": "^6.1.2"
+ },
+ "engines": {
+ "node": "^18.12.0 || ^20.9.0 || >=22.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
+ "node_modules/stylehacks/node_modules/postcss-selector-parser": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
+ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
+ "license": "MIT",
+ "dependencies": {
+ "cssesc": "^3.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/superjson": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.2.tgz",
+ "integrity": "sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==",
+ "license": "MIT",
+ "dependencies": {
+ "copy-anything": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/supports-color": {
+ "version": "9.4.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
+ "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/svgo": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz",
+ "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==",
+ "license": "MIT",
+ "dependencies": {
+ "@trysound/sax": "0.2.0",
+ "commander": "^7.2.0",
+ "css-select": "^5.1.0",
+ "css-tree": "^2.3.1",
+ "css-what": "^6.1.0",
+ "csso": "^5.0.5",
+ "picocolors": "^1.0.0"
+ },
+ "bin": {
+ "svgo": "bin/svgo"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/svgo"
+ }
+ },
+ "node_modules/system-architecture": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz",
+ "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/tapable": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
+ "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/tar": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz",
+ "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==",
+ "license": "ISC",
+ "dependencies": {
+ "@isaacs/fs-minipass": "^4.0.0",
+ "chownr": "^3.0.0",
+ "minipass": "^7.1.2",
+ "minizlib": "^3.0.1",
+ "mkdirp": "^3.0.1",
+ "yallist": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/tar-stream": {
+ "version": "3.1.7",
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz",
+ "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
+ "license": "MIT",
+ "dependencies": {
+ "b4a": "^1.6.4",
+ "fast-fifo": "^1.2.0",
+ "streamx": "^2.15.0"
+ }
+ },
+ "node_modules/tar/node_modules/yallist": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
+ "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/terser": {
+ "version": "5.39.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz",
+ "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "@jridgewell/source-map": "^0.3.3",
+ "acorn": "^8.8.2",
+ "commander": "^2.20.0",
+ "source-map-support": "~0.5.20"
+ },
+ "bin": {
+ "terser": "bin/terser"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/terser-webpack-plugin": {
+ "version": "5.3.14",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz",
+ "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.25",
+ "jest-worker": "^27.4.5",
+ "schema-utils": "^4.3.0",
+ "serialize-javascript": "^6.0.2",
+ "terser": "^5.31.1"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^5.1.0"
+ },
+ "peerDependenciesMeta": {
+ "@swc/core": {
+ "optional": true
+ },
+ "esbuild": {
+ "optional": true
+ },
+ "uglify-js": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/terser/node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "license": "MIT"
+ },
+ "node_modules/text-decoder": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.3.tgz",
+ "integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "b4a": "^1.6.4"
+ }
+ },
+ "node_modules/three": {
+ "version": "0.174.0",
+ "resolved": "https://registry.npmjs.org/three/-/three-0.174.0.tgz",
+ "integrity": "sha512-p+WG3W6Ov74alh3geCMkGK9NWuT62ee21cV3jEnun201zodVF4tCE5aZa2U122/mkLRmhJJUQmLLW1BH00uQJQ==",
+ "license": "MIT"
+ },
+ "node_modules/tiny-invariant": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
+ "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
+ "license": "MIT"
+ },
+ "node_modules/tinyexec": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz",
+ "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==",
+ "license": "MIT"
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.12",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz",
+ "integrity": "sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==",
+ "license": "MIT",
+ "dependencies": {
+ "fdir": "^6.4.3",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "license": "MIT",
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/totalist": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz",
+ "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
+ "license": "MIT"
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
+ "license": "0BSD",
+ "optional": true
+ },
+ "node_modules/type-fest": {
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.37.0.tgz",
+ "integrity": "sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/typescript": {
+ "version": "5.8.2",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
+ "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
+ "license": "Apache-2.0",
+ "peer": true,
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
+ "node_modules/ufo": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz",
+ "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==",
+ "license": "MIT"
+ },
+ "node_modules/ultrahtml": {
+ "version": "1.5.3",
+ "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.5.3.tgz",
+ "integrity": "sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==",
+ "license": "MIT"
+ },
+ "node_modules/unconfig": {
+ "version": "7.3.1",
+ "resolved": "https://registry.npmjs.org/unconfig/-/unconfig-7.3.1.tgz",
+ "integrity": "sha512-LH5WL+un92tGAzWS87k7LkAfwpMdm7V0IXG2FxEjZz/QxiIW5J5LkcrKQThj0aRz6+h/lFmKI9EUXmK/T0bcrw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@quansync/fs": "^0.1.1",
+ "defu": "^6.1.4",
+ "jiti": "^2.4.2",
+ "quansync": "^0.2.8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ }
+ },
+ "node_modules/uncrypto": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz",
+ "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==",
+ "license": "MIT"
+ },
+ "node_modules/unctx": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/unctx/-/unctx-2.4.1.tgz",
+ "integrity": "sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==",
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.14.0",
+ "estree-walker": "^3.0.3",
+ "magic-string": "^0.30.17",
+ "unplugin": "^2.1.0"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "6.20.0",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
+ "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
+ "devOptional": true,
+ "license": "MIT",
+ "peer": true
+ },
+ "node_modules/unenv": {
+ "version": "2.0.0-rc.15",
+ "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.15.tgz",
+ "integrity": "sha512-J/rEIZU8w6FOfLNz/hNKsnY+fFHWnu9MH4yRbSZF3xbbGHovcetXPs7sD+9p8L6CeNC//I9bhRYAOsBt2u7/OA==",
+ "license": "MIT",
+ "dependencies": {
+ "defu": "^6.1.4",
+ "exsolve": "^1.0.4",
+ "ohash": "^2.0.11",
+ "pathe": "^2.0.3",
+ "ufo": "^1.5.4"
+ }
+ },
+ "node_modules/unhead": {
+ "version": "2.0.0-rc.13",
+ "resolved": "https://registry.npmjs.org/unhead/-/unhead-2.0.0-rc.13.tgz",
+ "integrity": "sha512-cuG4Uu6kS9/zF2+XL/5od6S1J4GJqm3xB/I6PVoXgqEVCKryziGdLo+uaqewgOWnv5y5kDRiSuRQz/7fh0nUfw==",
+ "license": "MIT",
+ "dependencies": {
+ "hookable": "^5.5.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/harlan-zw"
+ }
+ },
+ "node_modules/unicorn-magic": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz",
+ "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/unimport": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/unimport/-/unimport-4.1.2.tgz",
+ "integrity": "sha512-oVUL7PSlyVV3QRhsdcyYEMaDX8HJyS/CnUonEJTYA3//bWO+o/4gG8F7auGWWWkrrxBQBYOO8DKe+C53ktpRXw==",
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.14.0",
+ "escape-string-regexp": "^5.0.0",
+ "estree-walker": "^3.0.3",
+ "local-pkg": "^1.0.0",
+ "magic-string": "^0.30.17",
+ "mlly": "^1.7.4",
+ "pathe": "^2.0.3",
+ "picomatch": "^4.0.2",
+ "pkg-types": "^1.3.1",
+ "scule": "^1.3.0",
+ "strip-literal": "^3.0.0",
+ "tinyglobby": "^0.2.11",
+ "unplugin": "^2.2.0",
+ "unplugin-utils": "^0.2.4"
+ },
+ "engines": {
+ "node": ">=18.12.0"
+ }
+ },
+ "node_modules/unimport/node_modules/pkg-types": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
+ "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
+ "license": "MIT",
+ "dependencies": {
+ "confbox": "^0.1.8",
+ "mlly": "^1.7.4",
+ "pathe": "^2.0.1"
+ }
+ },
+ "node_modules/unocss": {
+ "version": "66.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/unocss/-/unocss-66.1.0-beta.6.tgz",
+ "integrity": "sha512-ULv6jB5abJO1ciKreq0xW9WOKnWImK4uvWXmPR1d+JX0CvcHTtgO0HxR+UWToUcuvEFyLjQ1MKvovLMydo6+Lw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@unocss/astro": "66.1.0-beta.6",
+ "@unocss/cli": "66.1.0-beta.6",
+ "@unocss/core": "66.1.0-beta.6",
+ "@unocss/postcss": "66.1.0-beta.6",
+ "@unocss/preset-attributify": "66.1.0-beta.6",
+ "@unocss/preset-icons": "66.1.0-beta.6",
+ "@unocss/preset-mini": "66.1.0-beta.6",
+ "@unocss/preset-tagify": "66.1.0-beta.6",
+ "@unocss/preset-typography": "66.1.0-beta.6",
+ "@unocss/preset-uno": "66.1.0-beta.6",
+ "@unocss/preset-web-fonts": "66.1.0-beta.6",
+ "@unocss/preset-wind": "66.1.0-beta.6",
+ "@unocss/preset-wind3": "66.1.0-beta.6",
+ "@unocss/preset-wind4": "66.1.0-beta.6",
+ "@unocss/transformer-attributify-jsx": "66.1.0-beta.6",
+ "@unocss/transformer-compile-class": "66.1.0-beta.6",
+ "@unocss/transformer-directives": "66.1.0-beta.6",
+ "@unocss/transformer-variant-group": "66.1.0-beta.6",
+ "@unocss/vite": "66.1.0-beta.6"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "@unocss/webpack": "66.1.0-beta.6",
+ "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
+ },
+ "peerDependenciesMeta": {
+ "@unocss/webpack": {
+ "optional": true
+ },
+ "vite": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/unplugin": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-2.2.2.tgz",
+ "integrity": "sha512-Qp+iiD+qCRnUek+nDoYvtWX7tfnYyXsrOnJ452FRTgOyKmTM7TUJ3l+PLPJOOWPTUyKISKp4isC5JJPSXUjGgw==",
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.14.1",
+ "webpack-virtual-modules": "^0.6.2"
+ },
+ "engines": {
+ "node": ">=18.12.0"
+ }
+ },
+ "node_modules/unplugin-utils": {
+ "version": "0.2.4",
+ "resolved": "https://registry.npmjs.org/unplugin-utils/-/unplugin-utils-0.2.4.tgz",
+ "integrity": "sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==",
+ "license": "MIT",
+ "dependencies": {
+ "pathe": "^2.0.2",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=18.12.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sxzz"
+ }
+ },
+ "node_modules/unplugin-vue-router": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/unplugin-vue-router/-/unplugin-vue-router-0.12.0.tgz",
+ "integrity": "sha512-xjgheKU0MegvXQcy62GVea0LjyOdMxN0/QH+ijN29W62ZlMhG7o7K+0AYqfpprvPwpWtuRjiyC5jnV2SxWye2w==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.26.8",
+ "@vue-macros/common": "^1.16.1",
+ "ast-walker-scope": "^0.6.2",
+ "chokidar": "^4.0.3",
+ "fast-glob": "^3.3.3",
+ "json5": "^2.2.3",
+ "local-pkg": "^1.0.0",
+ "magic-string": "^0.30.17",
+ "micromatch": "^4.0.8",
+ "mlly": "^1.7.4",
+ "pathe": "^2.0.2",
+ "scule": "^1.3.0",
+ "unplugin": "^2.2.0",
+ "unplugin-utils": "^0.2.3",
+ "yaml": "^2.7.0"
+ },
+ "peerDependencies": {
+ "vue-router": "^4.4.0"
+ },
+ "peerDependenciesMeta": {
+ "vue-router": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/unstorage": {
+ "version": "1.15.0",
+ "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.15.0.tgz",
+ "integrity": "sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==",
+ "license": "MIT",
+ "dependencies": {
+ "anymatch": "^3.1.3",
+ "chokidar": "^4.0.3",
+ "destr": "^2.0.3",
+ "h3": "^1.15.0",
+ "lru-cache": "^10.4.3",
+ "node-fetch-native": "^1.6.6",
+ "ofetch": "^1.4.1",
+ "ufo": "^1.5.4"
+ },
+ "peerDependencies": {
+ "@azure/app-configuration": "^1.8.0",
+ "@azure/cosmos": "^4.2.0",
+ "@azure/data-tables": "^13.3.0",
+ "@azure/identity": "^4.6.0",
+ "@azure/keyvault-secrets": "^4.9.0",
+ "@azure/storage-blob": "^12.26.0",
+ "@capacitor/preferences": "^6.0.3",
+ "@deno/kv": ">=0.9.0",
+ "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0",
+ "@planetscale/database": "^1.19.0",
+ "@upstash/redis": "^1.34.3",
+ "@vercel/blob": ">=0.27.1",
+ "@vercel/kv": "^1.0.1",
+ "aws4fetch": "^1.0.20",
+ "db0": ">=0.2.1",
+ "idb-keyval": "^6.2.1",
+ "ioredis": "^5.4.2",
+ "uploadthing": "^7.4.4"
+ },
+ "peerDependenciesMeta": {
+ "@azure/app-configuration": {
+ "optional": true
+ },
+ "@azure/cosmos": {
+ "optional": true
+ },
+ "@azure/data-tables": {
+ "optional": true
+ },
+ "@azure/identity": {
+ "optional": true
+ },
+ "@azure/keyvault-secrets": {
+ "optional": true
+ },
+ "@azure/storage-blob": {
+ "optional": true
+ },
+ "@capacitor/preferences": {
+ "optional": true
+ },
+ "@deno/kv": {
+ "optional": true
+ },
+ "@netlify/blobs": {
+ "optional": true
+ },
+ "@planetscale/database": {
+ "optional": true
+ },
+ "@upstash/redis": {
+ "optional": true
+ },
+ "@vercel/blob": {
+ "optional": true
+ },
+ "@vercel/kv": {
+ "optional": true
+ },
+ "aws4fetch": {
+ "optional": true
+ },
+ "db0": {
+ "optional": true
+ },
+ "idb-keyval": {
+ "optional": true
+ },
+ "ioredis": {
+ "optional": true
+ },
+ "uploadthing": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/unstorage/node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
+ "license": "ISC"
+ },
+ "node_modules/untun": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/untun/-/untun-0.1.3.tgz",
+ "integrity": "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==",
+ "license": "MIT",
+ "dependencies": {
+ "citty": "^0.1.5",
+ "consola": "^3.2.3",
+ "pathe": "^1.1.1"
+ },
+ "bin": {
+ "untun": "bin/untun.mjs"
+ }
+ },
+ "node_modules/untun/node_modules/pathe": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
+ "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
+ "license": "MIT"
+ },
+ "node_modules/untyped": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/untyped/-/untyped-2.0.0.tgz",
+ "integrity": "sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==",
+ "license": "MIT",
+ "dependencies": {
+ "citty": "^0.1.6",
+ "defu": "^6.1.4",
+ "jiti": "^2.4.2",
+ "knitwork": "^1.2.0",
+ "scule": "^1.3.0"
+ },
+ "bin": {
+ "untyped": "dist/cli.mjs"
+ }
+ },
+ "node_modules/unwasm": {
+ "version": "0.3.9",
+ "resolved": "https://registry.npmjs.org/unwasm/-/unwasm-0.3.9.tgz",
+ "integrity": "sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==",
+ "license": "MIT",
+ "dependencies": {
+ "knitwork": "^1.0.0",
+ "magic-string": "^0.30.8",
+ "mlly": "^1.6.1",
+ "pathe": "^1.1.2",
+ "pkg-types": "^1.0.3",
+ "unplugin": "^1.10.0"
+ }
+ },
+ "node_modules/unwasm/node_modules/pathe": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
+ "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
+ "license": "MIT"
+ },
+ "node_modules/unwasm/node_modules/pkg-types": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
+ "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
+ "license": "MIT",
+ "dependencies": {
+ "confbox": "^0.1.8",
+ "mlly": "^1.7.4",
+ "pathe": "^2.0.1"
+ }
+ },
+ "node_modules/unwasm/node_modules/pkg-types/node_modules/pathe": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
+ "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
+ "license": "MIT"
+ },
+ "node_modules/unwasm/node_modules/unplugin": {
+ "version": "1.16.1",
+ "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.16.1.tgz",
+ "integrity": "sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==",
+ "license": "MIT",
+ "dependencies": {
+ "acorn": "^8.14.0",
+ "webpack-virtual-modules": "^0.6.2"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
+ "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.1"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/uqr": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz",
+ "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==",
+ "license": "MIT"
+ },
+ "node_modules/urdf-loader": {
+ "version": "0.12.4",
+ "resolved": "https://registry.npmjs.org/urdf-loader/-/urdf-loader-0.12.4.tgz",
+ "integrity": "sha512-CmBVJmsGDQpWLN3cg9lYkgMGlpbdKqaXDhvG4XXkpADRcYMDWGxHsu0U/1FQcvMq5oke7C65WJoSG2/MyX7HrA==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "three": ">=0.152.0"
+ }
+ },
+ "node_modules/uri-js-replace": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/uri-js-replace/-/uri-js-replace-1.0.1.tgz",
+ "integrity": "sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==",
+ "license": "MIT"
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "license": "MIT"
+ },
+ "node_modules/vite": {
+ "version": "6.2.2",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.2.tgz",
+ "integrity": "sha512-yW7PeMM+LkDzc7CgJuRLMW2Jz0FxMOsVJ8Lv3gpgW9WLcb9cTW+121UEr1hvmfR7w3SegR5ItvYyzVz1vxNJgQ==",
+ "license": "MIT",
+ "dependencies": {
+ "esbuild": "^0.25.0",
+ "postcss": "^8.5.3",
+ "rollup": "^4.30.1"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.3"
+ },
+ "peerDependencies": {
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
+ "jiti": ">=1.21.0",
+ "less": "*",
+ "lightningcss": "^1.21.0",
+ "sass": "*",
+ "sass-embedded": "*",
+ "stylus": "*",
+ "sugarss": "*",
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vite-dev-rpc": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/vite-dev-rpc/-/vite-dev-rpc-1.0.7.tgz",
+ "integrity": "sha512-FxSTEofDbUi2XXujCA+hdzCDkXFG1PXktMjSk1efq9Qb5lOYaaM9zNSvKvPPF7645Bak79kSp1PTooMW2wktcA==",
+ "license": "MIT",
+ "dependencies": {
+ "birpc": "^2.0.19",
+ "vite-hot-client": "^2.0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1"
+ }
+ },
+ "node_modules/vite-dev-rpc/node_modules/vite-hot-client": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/vite-hot-client/-/vite-hot-client-2.0.4.tgz",
+ "integrity": "sha512-W9LOGAyGMrbGArYJN4LBCdOC5+Zwh7dHvOHC0KmGKkJhsOzaKbpo/jEjpPKVHIW0/jBWj8RZG0NUxfgA8BxgAg==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
+ }
+ },
+ "node_modules/vite-hot-client": {
+ "version": "0.2.4",
+ "resolved": "https://registry.npmjs.org/vite-hot-client/-/vite-hot-client-0.2.4.tgz",
+ "integrity": "sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
+ }
+ },
+ "node_modules/vite-node": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.0.9.tgz",
+ "integrity": "sha512-w3Gdx7jDcuT9cNn9jExXgOyKmf5UOTb6WMHz8LGAm54eS1Elf5OuBhCxl6zJxGhEeIkgsE1WbHuoL0mj/UXqXg==",
+ "license": "MIT",
+ "dependencies": {
+ "cac": "^6.7.14",
+ "debug": "^4.4.0",
+ "es-module-lexer": "^1.6.0",
+ "pathe": "^2.0.3",
+ "vite": "^5.0.0 || ^6.0.0"
+ },
+ "bin": {
+ "vite-node": "vite-node.mjs"
+ },
+ "engines": {
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/vitest"
+ }
+ },
+ "node_modules/vite-plugin-checker": {
+ "version": "0.9.1",
+ "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.9.1.tgz",
+ "integrity": "sha512-neH3CSNWdkZ+zi+WPt/0y5+IO2I0UAI0NX6MaXqU/KxN1Lz6np/7IooRB6VVAMBa4nigqm1GRF6qNa4+EL5jDQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.26.2",
+ "chokidar": "^4.0.3",
+ "npm-run-path": "^6.0.0",
+ "picocolors": "^1.1.1",
+ "picomatch": "^4.0.2",
+ "strip-ansi": "^7.1.0",
+ "tiny-invariant": "^1.3.3",
+ "tinyglobby": "^0.2.12",
+ "vscode-uri": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=14.16"
+ },
+ "peerDependencies": {
+ "@biomejs/biome": ">=1.7",
+ "eslint": ">=7",
+ "meow": "^13.2.0",
+ "optionator": "^0.9.4",
+ "stylelint": ">=16",
+ "typescript": "*",
+ "vite": ">=2.0.0",
+ "vls": "*",
+ "vti": "*",
+ "vue-tsc": "~2.2.2"
+ },
+ "peerDependenciesMeta": {
+ "@biomejs/biome": {
+ "optional": true
+ },
+ "eslint": {
+ "optional": true
+ },
+ "meow": {
+ "optional": true
+ },
+ "optionator": {
+ "optional": true
+ },
+ "stylelint": {
+ "optional": true
+ },
+ "typescript": {
+ "optional": true
+ },
+ "vls": {
+ "optional": true
+ },
+ "vti": {
+ "optional": true
+ },
+ "vue-tsc": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vite-plugin-checker/node_modules/npm-run-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz",
+ "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==",
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^4.0.0",
+ "unicorn-magic": "^0.3.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/vite-plugin-checker/node_modules/path-key": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
+ "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/vite-plugin-inspect": {
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/vite-plugin-inspect/-/vite-plugin-inspect-11.0.0.tgz",
+ "integrity": "sha512-Q0RDNcMs1mbI2yGRwOzSapnnA6NFO0j88+Vb8pJX0iYMw34WczwKJi3JgheItDhbWRq/CLUR0cs+ajZpcUaIFQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ansis": "^3.16.0",
+ "debug": "^4.4.0",
+ "error-stack-parser-es": "^1.0.5",
+ "ohash": "^2.0.4",
+ "open": "^10.1.0",
+ "perfect-debounce": "^1.0.0",
+ "sirv": "^3.0.1",
+ "unplugin-utils": "^0.2.0",
+ "vite-dev-rpc": "^1.0.7"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "vite": "^6.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@nuxt/kit": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vite-plugin-inspect/node_modules/define-lazy-prop": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
+ "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/vite-plugin-inspect/node_modules/open": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz",
+ "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==",
+ "license": "MIT",
+ "dependencies": {
+ "default-browser": "^5.2.1",
+ "define-lazy-prop": "^3.0.0",
+ "is-inside-container": "^1.0.0",
+ "is-wsl": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/vite-plugin-vue-tracer": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/vite-plugin-vue-tracer/-/vite-plugin-vue-tracer-0.1.1.tgz",
+ "integrity": "sha512-8BuReHmbSPd6iRQDQhlyK5+DexY1Hmb4K0GUVo9Te1Yaz8gyOZspBm9qdG1SvebdSIKw3WNlzpdstJ47TJ4bOw==",
+ "license": "MIT",
+ "dependencies": {
+ "estree-walker": "^3.0.3",
+ "magic-string": "^0.30.17",
+ "pathe": "^2.0.3",
+ "source-map-js": "^1.2.1"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/antfu"
+ },
+ "peerDependencies": {
+ "vite": "^6.0.0",
+ "vue": "^3.5.0"
+ }
+ },
+ "node_modules/vscode-uri": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz",
+ "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
+ "license": "MIT"
+ },
+ "node_modules/vue": {
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.13.tgz",
+ "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/compiler-dom": "3.5.13",
+ "@vue/compiler-sfc": "3.5.13",
+ "@vue/runtime-dom": "3.5.13",
+ "@vue/server-renderer": "3.5.13",
+ "@vue/shared": "3.5.13"
+ },
+ "peerDependencies": {
+ "typescript": "*"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vue-bundle-renderer": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/vue-bundle-renderer/-/vue-bundle-renderer-2.1.1.tgz",
+ "integrity": "sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g==",
+ "license": "MIT",
+ "dependencies": {
+ "ufo": "^1.5.4"
+ }
+ },
+ "node_modules/vue-devtools-stub": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz",
+ "integrity": "sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==",
+ "license": "MIT"
+ },
+ "node_modules/vue-flow-layout": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/vue-flow-layout/-/vue-flow-layout-0.1.1.tgz",
+ "integrity": "sha512-JdgRRUVrN0Y2GosA0M68DEbKlXMqJ7FQgsK8CjQD2vxvNSqAU6PZEpi4cfcTVtfM2GVOMjHo7GKKLbXxOBqDqA==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "vue": "^3.4.37"
+ }
+ },
+ "node_modules/vue-router": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.5.0.tgz",
+ "integrity": "sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==",
+ "license": "MIT",
+ "dependencies": {
+ "@vue/devtools-api": "^6.6.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/posva"
+ },
+ "peerDependencies": {
+ "vue": "^3.2.0"
+ }
+ },
+ "node_modules/watchpack": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz",
+ "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.1.2"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/webpack": {
+ "version": "5.98.0",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz",
+ "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@types/eslint-scope": "^3.7.7",
+ "@types/estree": "^1.0.6",
+ "@webassemblyjs/ast": "^1.14.1",
+ "@webassemblyjs/wasm-edit": "^1.14.1",
+ "@webassemblyjs/wasm-parser": "^1.14.1",
+ "acorn": "^8.14.0",
+ "browserslist": "^4.24.0",
+ "chrome-trace-event": "^1.0.2",
+ "enhanced-resolve": "^5.17.1",
+ "es-module-lexer": "^1.2.1",
+ "eslint-scope": "5.1.1",
+ "events": "^3.2.0",
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.2.11",
+ "json-parse-even-better-errors": "^2.3.1",
+ "loader-runner": "^4.2.0",
+ "mime-types": "^2.1.27",
+ "neo-async": "^2.6.2",
+ "schema-utils": "^4.3.0",
+ "tapable": "^2.1.1",
+ "terser-webpack-plugin": "^5.3.11",
+ "watchpack": "^2.4.1",
+ "webpack-sources": "^3.2.3"
+ },
+ "bin": {
+ "webpack": "bin/webpack.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependenciesMeta": {
+ "webpack-cli": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/webpack-sources": {
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
+ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/webpack-virtual-modules": {
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
+ "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
+ "license": "MIT"
+ },
+ "node_modules/whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "license": "MIT",
+ "dependencies": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
+ "node_modules/which": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz",
+ "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==",
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^3.1.1"
+ },
+ "bin": {
+ "node-which": "bin/which.js"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs": {
+ "name": "wrap-ansi",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "license": "MIT"
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ws": {
+ "version": "8.18.1",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz",
+ "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "license": "ISC"
+ },
+ "node_modules/yaml": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
+ "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
+ "license": "ISC",
+ "bin": {
+ "yaml": "bin.mjs"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/yaml-ast-parser": {
+ "version": "0.0.43",
+ "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz",
+ "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==",
+ "license": "Apache-2.0"
+ },
+ "node_modules/yargs": {
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "license": "MIT",
+ "dependencies": {
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/yargs-parser": {
+ "version": "21.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/yargs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "license": "MIT"
+ },
+ "node_modules/yargs/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yargs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/youch": {
+ "version": "4.1.0-beta.6",
+ "resolved": "https://registry.npmjs.org/youch/-/youch-4.1.0-beta.6.tgz",
+ "integrity": "sha512-y1aNsEeoLXnWb6pI9TvfNPIxySyo4Un3OGxKn7rsNj8+tgSquzXEWkzfA5y6gU0fvzmQgvx3JBn/p51qQ8Xg9A==",
+ "license": "MIT",
+ "dependencies": {
+ "@poppinss/dumper": "^0.6.3",
+ "@speed-highlight/core": "^1.2.7",
+ "cookie": "^1.0.2",
+ "youch-core": "^0.3.1"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/youch-core": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/youch-core/-/youch-core-0.3.2.tgz",
+ "integrity": "sha512-fusrlIMLeRvTFYLUjJ9KzlGC3N+6MOPJ68HNj/yJv2nz7zq8t4HEviLms2gkdRPUS7F5rZ5n+pYx9r88m6IE1g==",
+ "license": "MIT",
+ "dependencies": {
+ "@poppinss/exception": "^1.2.0",
+ "error-stack-parser-es": "^1.0.5"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/zip-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-6.0.1.tgz",
+ "integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==",
+ "license": "MIT",
+ "dependencies": {
+ "archiver-utils": "^5.0.0",
+ "compress-commons": "^6.0.2",
+ "readable-stream": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ }
+ }
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package.json
new file mode 100644
index 000000000..8f0c27838
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package.json
@@ -0,0 +1,23 @@
+{
+ "name": "nuxt-app",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "build": "nuxt build",
+ "dev": "nuxt dev",
+ "generate": "nuxt generate",
+ "preview": "nuxt preview",
+ "postinstall": "nuxt prepare"
+ },
+ "dependencies": {
+ "nuxt": "^3.16.1",
+ "three": "^0.174.0",
+ "urdf-loader": "^0.12.4",
+ "vue": "^3.5.13",
+ "vue-router": "^4.5.0"
+ },
+ "devDependencies": {
+ "@unocss/nuxt": "^66.1.0-beta.6",
+ "unocss": "^66.1.0-beta.6"
+ }
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/pages/index.vue b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/pages/index.vue
new file mode 100644
index 000000000..c2b2e642d
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/pages/index.vue
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/favicon.ico b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/favicon.ico
new file mode 100644
index 000000000..18993ad91
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/favicon.ico differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Cadillac+CT4+V+2022.glb b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Cadillac+CT4+V+2022.glb
new file mode 100644
index 000000000..24d501917
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Cadillac+CT4+V+2022.glb differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/StreetLightPoles.glb b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/StreetLightPoles.glb
new file mode 100644
index 000000000..b92fdfdf3
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/StreetLightPoles.glb differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Traffic Light_01.glb b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Traffic Light_01.glb
new file mode 100644
index 000000000..ad0a379ca
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Traffic Light_01.glb differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e2.urdf b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e2.urdf
new file mode 100644
index 000000000..1989feab6
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e2.urdf
@@ -0,0 +1,1473 @@
+
+
+
+
+
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ 10000
+ 100000000
+ 1000000
+ 1e8
+ 0.001
+ 100.0
+ Gazebo/Blue
+
+
+ 10000
+ 100000000
+ 1000000
+ 1e8
+ 0.001
+ 100.0
+ Gazebo/Blue
+
+
+ 0.9
+ 1000000
+ 0.005
+ 1e8
+ Gazebo/Black
+
+
+ 0.9
+ 1000000
+ 0.005
+ 1e8
+ Gazebo/Black
+
+
+ 0.9
+ 1000000
+ 0.005
+ 1e8
+ Gazebo/Black
+
+
+ 0.9
+ 1000000
+ 0.005
+ 1e8
+ Gazebo/Black
+
+
+
+
+ Gazebo/White
+
+
+ Gazebo/Grey
+
+
+ Gazebo/White
+
+
+
+ Gazebo/Black
+
+
+ Gazebo/Black
+
+
+ Gazebo/Black
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/White
+
+
+ Gazebo/White
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Blue
+
+
+ Gazebo/Blue
+
+
+ Gazebo/Grey
+
+
+ Gazebo/Grey
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Red
+
+
+
+ true
+ gazebo_ros_control/DefaultRobotHWSim
+
+
+
+
+
+ 30.0
+
+
+ 1.5707963
+
+ 640
+ 480
+
+ R8G8B8
+
+
+ 0.02
+ 300
+
+
+ gaussian
+ 0.0
+ 0.007
+
+
+
+ true
+ 0.0
+ front_single_camera
+ image_raw
+ camera_info
+ front_single_camera_link
+ 0.07
+ 0.0
+ 0.0
+ 0.0
+ 0.0
+ 0.0
+
+
+
+
+
+
+ true
+ IMU_link
+ IMU_link
+ imu
+ imu_service
+ 0.0
+ 50.0
+
+
+
+
+
+ 20.0
+ GPS_link
+ GPS_link
+ /gps/fix
+ /gps/fix_velocity
+ 40.09302494
+ -88.23575484
+ 90
+ 220
+ 0 0 0
+ 0.001 0.001 0.001
+ 0.05 0.05 0.05
+ 0.001 0.001 0.001
+ 0.5 0.5 0.5
+
+
+
+
+
+
+
+
+
+ true
+ 20
+ 0 0 0 0 0 0
+ false
+
+
+
+ 2
+ 1
+ -28
+ 28
+
+
+ 2
+ 1
+ -28
+ 28
+
+
+
+ 0.3
+ 5
+ 0.01
+
+
+
+ 0.005
+ /front_sonar_distance
+ front_sonar_link
+
+
+
+
+
+
+ true
+ 20
+ 0 0 0 0 0 0
+ false
+
+
+
+ 2
+ 1
+ -28
+ 28
+
+
+ 2
+ 1
+ -28
+ 28
+
+
+
+ 0.3
+ 5
+ 0.01
+
+
+
+ 0.005
+ /rear_sonar_distance
+ rear_sonar_link
+
+
+
+
+
+
+ 30.0
+
+ 1.5707963
+
+ 800
+ 600
+ R8G8B8
+
+
+ 0.02
+ 300
+
+
+ gaussian
+ 0.0
+ 0.007
+
+
+
+ 0 -0.07 0 0 0 0
+ 1.5707963
+
+ 800
+ 600
+ R8G8B8
+
+
+ 0.02
+ 300
+
+
+ gaussian
+ 0.0
+ 0.007
+
+
+
+ true
+ 0.0
+ stereo/camera
+ image_raw
+ camera_info
+ stereo_camera_link
+
+
+ 0.5
+ 0.0
+ 0.0
+ 0.0
+ 0.0
+ 0.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e4.urdf b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e4.urdf
new file mode 100644
index 000000000..5ddb5a0eb
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e4.urdf
@@ -0,0 +1,919 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/base_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/base_link.STL
new file mode 100755
index 000000000..9c17ee417
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/base_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/chair_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/chair_link.STL
new file mode 100755
index 000000000..0c6765cf2
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/chair_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/door_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/door_link.STL
new file mode 100755
index 000000000..c747ca9af
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/door_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/base_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/base_link.STL
new file mode 100644
index 000000000..952b788ef
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/base_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_camera_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_camera_link.STL
new file mode 100644
index 000000000..d658e5cdb
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_camera_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_lidar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_lidar_link.STL
new file mode 100644
index 000000000..d49aea2e7
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_lidar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_rack_link.STL
new file mode 100755
index 000000000..6484d4245
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_radar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_radar_link.STL
new file mode 100644
index 000000000..fa7839417
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_radar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_aux_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_aux_link.STL
new file mode 100755
index 000000000..9a0c069b0
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_aux_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_main_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_main_link.STL
new file mode 100755
index 000000000..32c0d6565
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_main_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fl_link.STL
new file mode 100755
index 000000000..bc49454cd
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fl_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fr_link.STL
new file mode 100755
index 000000000..bc49454cd
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fr_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/i_logo_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/i_logo_link.STL
new file mode 100755
index 000000000..e0769efe7
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/i_logo_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/imu_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/imu_link.STL
new file mode 100644
index 000000000..97d552e72
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/imu_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/lightbar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/lightbar_link.STL
new file mode 100755
index 000000000..04a9d2f1e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/lightbar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/rear_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/rear_rack_link.STL
new file mode 100755
index 000000000..1ab3f1a54
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/rear_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rl_link.STL
new file mode 100755
index 000000000..9e30a0a21
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rl_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rr_link.STL
new file mode 100755
index 000000000..9e30a0a21
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rr_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rl_link.STL
new file mode 100755
index 000000000..b24d6ae97
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rl_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rr_link.STL
new file mode 100755
index 000000000..afc66745f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rr_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_lidar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_lidar_link.STL
new file mode 100644
index 000000000..b52b8f475
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_lidar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_rack_link.STL
new file mode 100644
index 000000000..a55bd5397
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fl_link.STL
new file mode 100755
index 000000000..50888317f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fl_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fr_link.STL
new file mode 100755
index 000000000..a4488df1f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fr_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fl.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fl.STL
new file mode 100644
index 000000000..06fb9b87e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fl.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fr.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fr.STL
new file mode 100644
index 000000000..85975cc77
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fr.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rl.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rl.STL
new file mode 100644
index 000000000..049fec865
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rl.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rr.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rr.STL
new file mode 100644
index 000000000..0d0940a96
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rr.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_camera_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_camera_link.STL
new file mode 100755
index 000000000..5074cba3e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_camera_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_emergency_button_link.STL
new file mode 100755
index 000000000..eb6fcfd4e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_emergency_button_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_head_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_head_light_link.STL
new file mode 100755
index 000000000..bc49454cd
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_head_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_turn_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_turn_light_link.STL
new file mode 100755
index 000000000..50888317f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_turn_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_wheel_link.STL
new file mode 100755
index 000000000..06fb9b87e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_wheel_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_rack_link.STL
new file mode 100755
index 000000000..6484d4245
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_emergency_button_link.STL
new file mode 100755
index 000000000..4180556f8
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_emergency_button_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_head_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_head_light_link.STL
new file mode 100755
index 000000000..bc49454cd
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_head_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_turn_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_turn_light_link.STL
new file mode 100755
index 000000000..a4488df1f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_turn_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_wheel_link.STL
new file mode 100755
index 000000000..85975cc77
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_wheel_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_I_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_I_link.STL
new file mode 100755
index 000000000..e0769efe7
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_I_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_antenna_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_antenna_link.STL
new file mode 100755
index 000000000..32c0d6565
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_antenna_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_blue_outer_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_blue_outer_link.STL
new file mode 100755
index 000000000..717f1c931
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_blue_outer_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_fixed_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_fixed_hinge_link.STL
new file mode 100755
index 000000000..2c8e0610a
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_fixed_hinge_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_steering_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_steering_hinge_link.STL
new file mode 100755
index 000000000..43f7ecc63
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_steering_hinge_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_emergency_button_link.STL
new file mode 100755
index 000000000..033a25319
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_emergency_button_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_light_link.STL
new file mode 100755
index 000000000..b24d6ae97
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_stop_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_stop_light_link.STL
new file mode 100755
index 000000000..9e30a0a21
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_stop_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_wheel_link.STL
new file mode 100755
index 000000000..049fec865
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_wheel_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_light_bar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_light_bar_link.STL
new file mode 100755
index 000000000..04a9d2f1e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_light_bar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_rack_link.STL
new file mode 100755
index 000000000..1ab3f1a54
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_emergency_button_link.STL
new file mode 100755
index 000000000..4bb494cd5
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_emergency_button_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_light_link.STL
new file mode 100755
index 000000000..afc66745f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_stop_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_stop_light_link.STL
new file mode 100755
index 000000000..9e30a0a21
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_stop_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_wheel_link.STL
new file mode 100755
index 000000000..0d0940a96
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_wheel_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_I_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_I_link.STL
new file mode 100755
index 000000000..e0769efe7
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_I_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_antenna_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_antenna_link.STL
new file mode 100755
index 000000000..9a0c069b0
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_antenna_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_blue_outer_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_blue_outer_link.STL
new file mode 100755
index 000000000..717f1c931
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_blue_outer_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_fixed_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_fixed_hinge_link.STL
new file mode 100755
index 000000000..0307a31e6
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_fixed_hinge_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_steering_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_steering_hinge_link.STL
new file mode 100755
index 000000000..01cb60e1b
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_steering_hinge_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/top_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/top_rack_link.STL
new file mode 100755
index 000000000..33cbd12b1
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/top_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/plane.off b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/plane.off
new file mode 100644
index 000000000..5ce7162d9
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/plane.off
@@ -0,0 +1,8 @@
+OFF
+4 2 0
+-5.000000 -5.000000 0.000000
+-5.000000 5.000000 0.000000
+5.000000 -5.000000 0.000000
+5.000000 5.000000 0.000000
+3 0 2 1
+3 1 2 3
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/roadster.glb b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/roadster.glb
new file mode 100644
index 000000000..df678011d
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/roadster.glb differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/robots.txt b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/robots.txt
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/robots.txt
@@ -0,0 +1 @@
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_diff_1k.jpg b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_diff_1k.jpg
new file mode 100644
index 000000000..6901ddd40
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_diff_1k.jpg differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_nor_gl_1k.jpg b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_nor_gl_1k.jpg
new file mode 100644
index 000000000..242b35b8a
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_nor_gl_1k.jpg differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_rough_1k.jpg b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_rough_1k.jpg
new file mode 100644
index 000000000..318a6f224
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_rough_1k.jpg differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/server/tsconfig.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/server/tsconfig.json
new file mode 100644
index 000000000..b9ed69c19
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/server/tsconfig.json
@@ -0,0 +1,3 @@
+{
+ "extends": "../.nuxt/tsconfig.server.json"
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/test.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/test.js
similarity index 100%
rename from GEMstack/onboard/visualization/sr_viz/threeD/test.js
rename to GEMstack/onboard/visualization/sr_viz/threeD/legacy/test.js
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/tsconfig.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/tsconfig.json
new file mode 100644
index 000000000..a746f2a70
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/tsconfig.json
@@ -0,0 +1,4 @@
+{
+ // https://nuxt.com/docs/guide/concepts/typescript
+ "extends": "./.nuxt/tsconfig.json"
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/uno.config.ts b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/uno.config.ts
new file mode 100644
index 000000000..29cf9773a
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/uno.config.ts
@@ -0,0 +1,34 @@
+// uno.config.ts
+import {
+ defineConfig,
+ presetAttributify,
+ presetIcons,
+ presetTypography,
+ presetUno,
+ presetWebFonts,
+ transformerDirectives,
+ transformerVariantGroup,
+} from "unocss";
+
+export default defineConfig({
+ shortcuts: [
+ // ...
+ ],
+ theme: {
+ colors: {
+ // ...
+ },
+ },
+ presets: [
+ presetUno(),
+ presetAttributify(),
+ presetIcons(),
+ presetTypography(),
+ presetWebFonts({
+ fonts: {
+ // ...
+ },
+ }),
+ ],
+ transformers: [transformerDirectives(), transformerVariantGroup()],
+});
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/constants.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/constants.js
new file mode 100644
index 000000000..1665a4c5b
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/constants.js
@@ -0,0 +1,14 @@
+export const HUMAN_BODY_RATIOS = {
+ head: 1 / 8,
+ body: 3 / 8,
+ arm: 3 / 8,
+ leg: 4 / 8,
+};
+
+export const HUMAN_TO_CAR_HEIGHT_RATIO = 1.2;
+// export const CAR_MODEL_PATH = "/models/model/gem_e4.urdf";
+export const CAR_MODEL_PATH = "/models/roadster.glb";
+export const TRAFFIC_LIGHT_MODEL_PATH = "/models/Traffic Light_01.glb";
+export const STREET_LIGHT_MODEL_PATH = "/models/StreetLightPoles.glb";
+export const ENV_MAP_PATH = "/textures/env/";
+export const ENV_MAP_NAME = "Tropical_Ruins.hdr";
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/converted_for_threejs.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/converted_for_threejs.json
new file mode 100644
index 000000000..445ecac01
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/converted_for_threejs.json
@@ -0,0 +1,56143 @@
+{
+ "framerate": 60,
+ "totalFrames": 883,
+ "data": [
+ {
+ "render_frame": 0,
+ "timestamp": 1739683968.6830168,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.0,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 1,
+ "timestamp": 1739683968.7130167,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.0,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 2,
+ "timestamp": 1739683968.7330167,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 3,
+ "timestamp": 1739683968.7530167,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 4,
+ "timestamp": 1739683968.7730167,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 5,
+ "timestamp": 1739683968.7930167,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 6,
+ "timestamp": 1739683968.8130167,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.003595169735893,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.07981842311360376,
+ "acceleration": 0.7959453690376366,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36000000000000004,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 7,
+ "timestamp": 1739683968.8330166,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0035951697358926893,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.07981842311360376,
+ "acceleration": 0.7959453690376366,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36000000000000004,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 8,
+ "timestamp": 1739683968.8530166,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0035951697358926893,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.07981842311360376,
+ "acceleration": 0.7959453690376366,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36000000000000004,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 9,
+ "timestamp": 1739683968.8730166,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0035951697358926893,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.07981842311360376,
+ "acceleration": 0.7959453690376366,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36000000000000004,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 10,
+ "timestamp": 1739683968.8930166,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0035951697358926893,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.07981842311360376,
+ "acceleration": 0.7959453690376366,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36000000000000004,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 11,
+ "timestamp": 1739683968.9130166,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0035951697358926893,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.07981842311360376,
+ "acceleration": 0.7959453690376366,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36000000000000004,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 12,
+ "timestamp": 1739683968.9330165,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.017290738272547,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.17933042167527002,
+ "acceleration": 0.914948092763614,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.37987779325580157,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 13,
+ "timestamp": 1739683968.9530165,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.017290738272547124,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.17933042167527002,
+ "acceleration": 0.914948092763614,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.37987779325580157,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 14,
+ "timestamp": 1739683968.9730165,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.017290738272547124,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.17933042167527002,
+ "acceleration": 0.914948092763614,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.37987779325580157,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 15,
+ "timestamp": 1739683968.9930165,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.017290738272547124,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.17933042167527002,
+ "acceleration": 0.914948092763614,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.37987779325580157,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 16,
+ "timestamp": 1739683969.0130165,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.017290738272547124,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.17933042167527002,
+ "acceleration": 0.914948092763614,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.37987779325580157,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 17,
+ "timestamp": 1739683969.0330164,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.041464035328369,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.26849674060038253,
+ "acceleration": 0.8158119513827263,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36479323094558014,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 18,
+ "timestamp": 1739683969.0530164,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.041464035328369064,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.26849674060038253,
+ "acceleration": 0.8158119513827263,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36479323094558014,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 19,
+ "timestamp": 1739683969.0730164,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.041464035328369064,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.26849674060038253,
+ "acceleration": 0.8158119513827263,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36479323094558014,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 20,
+ "timestamp": 1739683969.0930164,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.041464035328369064,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.26849674060038253,
+ "acceleration": 0.8158119513827263,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36479323094558014,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 21,
+ "timestamp": 1739683969.1130164,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.041464035328369064,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.26849674060038253,
+ "acceleration": 0.8158119513827263,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36479323094558014,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 22,
+ "timestamp": 1739683969.1330163,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.041464035328369064,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.26849674060038253,
+ "acceleration": 0.8158119513827263,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.36479323094558014,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 23,
+ "timestamp": 1739683969.1530163,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.074861577126129,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.3471250772125315,
+ "acceleration": 0.7270877893738422,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3513038402282827,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 24,
+ "timestamp": 1739683969.1730163,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0748615771261294,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.3471250772125315,
+ "acceleration": 0.7270877893738422,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3513038402282827,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 25,
+ "timestamp": 1739683969.1930163,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0748615771261294,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.3471250772125315,
+ "acceleration": 0.7270877893738422,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3513038402282827,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 26,
+ "timestamp": 1739683969.2430162,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.0748615771261294,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.3471250772125315,
+ "acceleration": 0.7270877893738422,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3513038402282827,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 27,
+ "timestamp": 1739683969.2630162,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.116582753215267,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.4180508209181069,
+ "acceleration": 0.6487859289057847,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3394297815744629,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 28,
+ "timestamp": 1739683969.2830162,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.11658275321526723,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.4180508209181069,
+ "acceleration": 0.6487859289057847,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3394297815744629,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 29,
+ "timestamp": 1739683969.423016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.165540403846739,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.47675602185338994,
+ "acceleration": 0.578488620880097,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3287359016026402,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 30,
+ "timestamp": 1739683969.443016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.16554040384673918,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.47675602185338994,
+ "acceleration": 0.578488620880097,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3287359016026402,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 31,
+ "timestamp": 1739683969.463016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.16554040384673918,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.47675602185338994,
+ "acceleration": 0.578488620880097,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3287359016026402,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 32,
+ "timestamp": 1739683969.483016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.221067010119578,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5363754058707364,
+ "acceleration": 0.5196589862292474,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3198967587652823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 33,
+ "timestamp": 1739683969.503016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.22106701011957774,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5363754058707364,
+ "acceleration": 0.5196589862292474,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3198967587652823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 34,
+ "timestamp": 1739683969.523016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.22106701011957774,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5363754058707364,
+ "acceleration": 0.5196589862292474,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3198967587652823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 35,
+ "timestamp": 1739683969.543016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.22106701011957774,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5363754058707364,
+ "acceleration": 0.5196589862292474,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3198967587652823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 36,
+ "timestamp": 1739683969.563016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.22106701011957774,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5363754058707364,
+ "acceleration": 0.5196589862292474,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3198967587652823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 37,
+ "timestamp": 1739683969.583016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.28257753583501,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5866972862119225,
+ "acceleration": 0.46054334881595005,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3109312560292849,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 38,
+ "timestamp": 1739683969.603016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.28257753583501,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5866972862119225,
+ "acceleration": 0.46054334881595005,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3109312560292849,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 39,
+ "timestamp": 1739683969.6330159,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.28257753583501,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5866972862119225,
+ "acceleration": 0.46054334881595005,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3109312560292849,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 40,
+ "timestamp": 1739683969.6630158,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.28257753583501,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5866972862119225,
+ "acceleration": 0.46054334881595005,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3109312560292849,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 41,
+ "timestamp": 1739683969.7030158,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.349296493341371,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6311103066646642,
+ "acceleration": 0.4105411976301412,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3033727544248253,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 42,
+ "timestamp": 1739683969.7130158,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.34929649334137114,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6311103066646642,
+ "acceleration": 0.4105411976301412,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3033727544248253,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 43,
+ "timestamp": 1739683969.7430158,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.34929649334137114,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6311103066646642,
+ "acceleration": 0.4105411976301412,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3033727544248253,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 44,
+ "timestamp": 1739683969.7530158,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.34929649334137114,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6311103066646642,
+ "acceleration": 0.4105411976301412,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3033727544248253,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 45,
+ "timestamp": 1739683969.7730157,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.34929649334137114,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6311103066646642,
+ "acceleration": 0.4105411976301412,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3033727544248253,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 46,
+ "timestamp": 1739683969.7930157,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.34929649334137114,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6311103066646642,
+ "acceleration": 0.4105411976301412,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.3033727544248253,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 47,
+ "timestamp": 1739683969.8130157,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.420748989575078,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6715732646033915,
+ "acceleration": 0.3663394411328825,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.29670851373765644,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 48,
+ "timestamp": 1739683969.8330157,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.42074898957507756,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6715732646033915,
+ "acceleration": 0.3663394411328825,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.29670851373765644,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 49,
+ "timestamp": 1739683969.8530157,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.42074898957507756,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6715732646033915,
+ "acceleration": 0.3663394411328825,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.29670851373765644,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 50,
+ "timestamp": 1739683969.8830156,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.42074898957507756,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6715732646033915,
+ "acceleration": 0.3663394411328825,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.29670851373765644,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 51,
+ "timestamp": 1739683969.9130156,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.496374674260012,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.70686423446749,
+ "acceleration": 0.32617572294101116,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2906424808198526,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 52,
+ "timestamp": 1739683969.9330156,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.4963746742600117,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.70686423446749,
+ "acceleration": 0.32617572294101116,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2906424808198526,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 53,
+ "timestamp": 1739683969.9730155,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.4963746742600117,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.70686423446749,
+ "acceleration": 0.32617572294101116,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2906424808198526,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 54,
+ "timestamp": 1739683969.9930155,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.4963746742600117,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.70686423446749,
+ "acceleration": 0.32617572294101116,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2906424808198526,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 55,
+ "timestamp": 1739683970.0230155,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.57567809132606,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7383678976601944,
+ "acceleration": 0.29110528130961666,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.28535608763449244,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 56,
+ "timestamp": 1739683970.0430155,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.5756780913260604,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7383678976601944,
+ "acceleration": 0.29110528130961666,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.28535608763449244,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 57,
+ "timestamp": 1739683970.0630155,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.5756780913260604,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7383678976601944,
+ "acceleration": 0.29110528130961666,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.28535608763449244,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 58,
+ "timestamp": 1739683970.1330154,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.658338416997827,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7670622450071868,
+ "acceleration": 0.25976541161825284,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2806403789993227,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 59,
+ "timestamp": 1739683970.1530154,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.658338416997827,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7670622450071868,
+ "acceleration": 0.25976541161825284,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2806403789993227,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 60,
+ "timestamp": 1739683970.1830153,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.658338416997827,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7670622450071868,
+ "acceleration": 0.25976541161825284,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2806403789993227,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 61,
+ "timestamp": 1739683970.2030153,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.658338416997827,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7670622450071868,
+ "acceleration": 0.25976541161825284,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2806403789993227,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 62,
+ "timestamp": 1739683970.2130153,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.658338416997827,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7670622450071868,
+ "acceleration": 0.25976541161825284,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2806403789993227,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 63,
+ "timestamp": 1739683970.2330153,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.658338416997827,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7670622450071868,
+ "acceleration": 0.25976541161825284,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2806403789993227,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 64,
+ "timestamp": 1739683970.2530153,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.743944484252134,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7920831683238224,
+ "acceleration": 0.23129659624871712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2763479539392524,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 65,
+ "timestamp": 1739683970.2830153,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.7439444842521343,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7920831683238224,
+ "acceleration": 0.23129659624871712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2763479539392524,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 66,
+ "timestamp": 1739683970.3030152,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.7439444842521343,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7920831683238224,
+ "acceleration": 0.23129659624871712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2763479539392524,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 67,
+ "timestamp": 1739683970.3230152,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.7439444842521343,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7920831683238224,
+ "acceleration": 0.23129659624871712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2763479539392524,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 68,
+ "timestamp": 1739683970.3430152,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.7439444842521343,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7920831683238224,
+ "acceleration": 0.23129659624871712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2763479539392524,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 69,
+ "timestamp": 1739683970.3530152,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.832170137533272,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8142056166570657,
+ "acceleration": 0.20645535885297545,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.27260719160764607,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 70,
+ "timestamp": 1739683970.3730152,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.8321701375332724,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8142056166570657,
+ "acceleration": 0.20645535885297545,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.27260719160764607,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 71,
+ "timestamp": 1739683970.3930151,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.8321701375332724,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8142056166570657,
+ "acceleration": 0.20645535885297545,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.27260719160764607,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 72,
+ "timestamp": 1739683970.4130151,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.8321701375332724,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8142056166570657,
+ "acceleration": 0.20645535885297545,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.27260719160764607,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 73,
+ "timestamp": 1739683970.443015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.8321701375332724,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8142056166570657,
+ "acceleration": 0.20645535885297545,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.27260719160764607,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 74,
+ "timestamp": 1739683970.463015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 4.922714488811366,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.834175574431562,
+ "acceleration": 0.18446670442638624,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26930143552603947,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 75,
+ "timestamp": 1739683970.493015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.9227144888113656,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.834175574431562,
+ "acceleration": 0.18446670442638624,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26930143552603947,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 76,
+ "timestamp": 1739683970.523015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.9227144888113656,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.834175574431562,
+ "acceleration": 0.18446670442638624,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26930143552603947,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 77,
+ "timestamp": 1739683970.563015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 0.9227144888113656,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.834175574431562,
+ "acceleration": 0.18446670442638624,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26930143552603947,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 78,
+ "timestamp": 1739683970.583015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.015359130465452,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8519989119169116,
+ "acceleration": 0.16463272612487684,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26631867090876776,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 79,
+ "timestamp": 1739683970.603015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.015359130465452,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8519989119169116,
+ "acceleration": 0.16463272612487684,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26631867090876776,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 80,
+ "timestamp": 1739683970.623015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.015359130465452,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8519989119169116,
+ "acceleration": 0.16463272612487684,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26631867090876776,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 81,
+ "timestamp": 1739683970.633015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.015359130465452,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8519989119169116,
+ "acceleration": 0.16463272612487684,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26631867090876776,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 82,
+ "timestamp": 1739683970.653015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.015359130465452,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8519989119169116,
+ "acceleration": 0.16463272612487684,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26631867090876776,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 83,
+ "timestamp": 1739683970.6730149,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.015359130465452,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8519989119169116,
+ "acceleration": 0.16463272612487684,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.26631867090876776,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 84,
+ "timestamp": 1739683970.6930149,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.109880485873169,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8680674745215928,
+ "acceleration": 0.14692127000870742,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2636576088220816,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 85,
+ "timestamp": 1739683970.7130148,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.1098804858731688,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8680674745215928,
+ "acceleration": 0.14692127000870742,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2636576088220816,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 86,
+ "timestamp": 1739683970.7330148,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.1098804858731688,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8680674745215928,
+ "acceleration": 0.14692127000870742,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2636576088220816,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 87,
+ "timestamp": 1739683970.7630148,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.1098804858731688,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8680674745215928,
+ "acceleration": 0.14692127000870742,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2636576088220816,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 88,
+ "timestamp": 1739683970.7830148,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.1098804858731688,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8680674745215928,
+ "acceleration": 0.14692127000870742,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2636576088220816,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 89,
+ "timestamp": 1739683970.8330147,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.206082244190068,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8823896003411495,
+ "acceleration": 0.13096571652275035,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2612594096972336,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 90,
+ "timestamp": 1739683970.8630147,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.2060822441900676,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8823896003411495,
+ "acceleration": 0.13096571652275035,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2612594096972336,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 91,
+ "timestamp": 1739683970.8830147,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.2060822441900676,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8823896003411495,
+ "acceleration": 0.13096571652275035,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2612594096972336,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 92,
+ "timestamp": 1739683970.9030147,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.303816433090176,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.895424882963841,
+ "acceleration": 0.11672689238530976,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2591225589990096,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 93,
+ "timestamp": 1739683970.9130147,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.3038164330901756,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.895424882963841,
+ "acceleration": 0.11672689238530976,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2591225589990096,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 94,
+ "timestamp": 1739683970.9430146,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.3038164330901756,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.895424882963841,
+ "acceleration": 0.11672689238530976,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2591225589990096,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 95,
+ "timestamp": 1739683970.9530146,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.3038164330901756,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.895424882963841,
+ "acceleration": 0.11672689238530976,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2591225589990096,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 96,
+ "timestamp": 1739683970.9830146,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.3038164330901756,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.895424882963841,
+ "acceleration": 0.11672689238530976,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2591225589990096,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 97,
+ "timestamp": 1739683971.0130146,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.402864711937085,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9066536468299733,
+ "acceleration": 0.10381132770005969,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2571782749431455,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 98,
+ "timestamp": 1739683971.0330145,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.4028647119370854,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9066536468299733,
+ "acceleration": 0.10381132770005969,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2571782749431455,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 99,
+ "timestamp": 1739683971.0530145,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.4028647119370854,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9066536468299733,
+ "acceleration": 0.10381132770005969,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2571782749431455,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 100,
+ "timestamp": 1739683971.0730145,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.4028647119370854,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9066536468299733,
+ "acceleration": 0.10381132770005969,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2571782749431455,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 101,
+ "timestamp": 1739683971.0830145,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.4028647119370854,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9066536468299733,
+ "acceleration": 0.10381132770005969,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2571782749431455,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 102,
+ "timestamp": 1739683971.0930145,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.4028647119370854,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9066536468299733,
+ "acceleration": 0.10381132770005969,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2571782749431455,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 103,
+ "timestamp": 1739683971.1130145,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.4028647119370854,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9066536468299733,
+ "acceleration": 0.10381132770005969,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2571782749431455,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 104,
+ "timestamp": 1739683971.1330144,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.503128795080697,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9170947504266419,
+ "acceleration": 0.09263387853069305,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2555038790183402,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 105,
+ "timestamp": 1739683971.1530144,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.5031287950806966,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9170947504266419,
+ "acceleration": 0.09263387853069305,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2555038790183402,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 106,
+ "timestamp": 1739683971.2030144,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.5031287950806966,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9170947504266419,
+ "acceleration": 0.09263387853069305,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2555038790183402,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 107,
+ "timestamp": 1739683971.2330143,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.604457866310368,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9260910886713266,
+ "acceleration": 0.08228961342856045,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2539472983851666,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 108,
+ "timestamp": 1739683971.2530143,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.6044578663103684,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9260910886713266,
+ "acceleration": 0.08228961342856045,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2539472983851666,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 109,
+ "timestamp": 1739683971.2730143,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.6044578663103684,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9260910886713266,
+ "acceleration": 0.08228961342856045,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2539472983851666,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 110,
+ "timestamp": 1739683971.3130143,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.6044578663103684,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9260910886713266,
+ "acceleration": 0.08228961342856045,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2539472983851666,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 111,
+ "timestamp": 1739683971.3330142,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.6044578663103684,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9260910886713266,
+ "acceleration": 0.08228961342856045,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2539472983851666,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 112,
+ "timestamp": 1739683971.3530142,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.706718056358012,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9340307441491561,
+ "acceleration": 0.07336424128978802,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2526063860491847,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 113,
+ "timestamp": 1739683971.3930142,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.706718056358012,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9340307441491561,
+ "acceleration": 0.07336424128978802,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2526063860491847,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 114,
+ "timestamp": 1739683971.4130142,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.706718056358012,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9340307441491561,
+ "acceleration": 0.07336424128978802,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2526063860491847,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 115,
+ "timestamp": 1739683971.4430141,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.706718056358012,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9340307441491561,
+ "acceleration": 0.07336424128978802,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2526063860491847,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 116,
+ "timestamp": 1739683971.4630141,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.809805686312504,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.940976760217425,
+ "acceleration": 0.0654917167248959,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2514231883789536,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 117,
+ "timestamp": 1739683971.483014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.8098056863125036,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.940976760217425,
+ "acceleration": 0.0654917167248959,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2514231883789536,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 118,
+ "timestamp": 1739683971.523014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.8098056863125036,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.940976760217425,
+ "acceleration": 0.0654917167248959,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2514231883789536,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 119,
+ "timestamp": 1739683971.543014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.8098056863125036,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.940976760217425,
+ "acceleration": 0.0654917167248959,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2514231883789536,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 120,
+ "timestamp": 1739683971.563014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 5.913632829667502,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9473856954701637,
+ "acceleration": 0.05858176909281615,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2503882320681823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 121,
+ "timestamp": 1739683971.583014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.9136328296675016,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9473856954701637,
+ "acceleration": 0.05858176909281615,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2503882320681823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 122,
+ "timestamp": 1739683971.603014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.9136328296675016,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9473856954701637,
+ "acceleration": 0.05858176909281615,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2503882320681823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 123,
+ "timestamp": 1739683971.643014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.9136328296675016,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9473856954701637,
+ "acceleration": 0.05858176909281615,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2503882320681823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 124,
+ "timestamp": 1739683971.663014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 1.9136328296675016,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9473856954701637,
+ "acceleration": 0.05858176909281615,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2503882320681823,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 125,
+ "timestamp": 1739683971.683014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 6.0181229993929835,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9530375830457731,
+ "acceleration": 0.05222430036389336,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2494334377381055,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 126,
+ "timestamp": 1739683971.703014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.0181229993929835,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9530375830457731,
+ "acceleration": 0.05222430036389336,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2494334377381055,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 127,
+ "timestamp": 1739683971.7230139,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.0181229993929835,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9530375830457731,
+ "acceleration": 0.05222430036389336,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2494334377381055,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 128,
+ "timestamp": 1739683971.7430139,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.0181229993929835,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9530375830457731,
+ "acceleration": 0.05222430036389336,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2494334377381055,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 129,
+ "timestamp": 1739683971.7630138,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.0181229993929835,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9530375830457731,
+ "acceleration": 0.05222430036389336,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2494334377381055,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 130,
+ "timestamp": 1739683971.7930138,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 6.123211425739463,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9581357362287196,
+ "acceleration": 0.04661007475167145,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24859153639255888,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.89410842225647,
+ 5.068643217455343,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 131,
+ "timestamp": 1739683971.8230138,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.1232114257394628,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9581357362287196,
+ "acceleration": 0.04661007475167145,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24859153639255888,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 132,
+ "timestamp": 1739683971.8330138,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.1232114257394628,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9581357362287196,
+ "acceleration": 0.04661007475167145,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24859153639255888,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 133,
+ "timestamp": 1739683971.8530138,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.1232114257394628,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9581357362287196,
+ "acceleration": 0.04661007475167145,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24859153639255888,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 134,
+ "timestamp": 1739683971.8830137,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.1232114257394628,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9581357362287196,
+ "acceleration": 0.04661007475167145,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24859153639255888,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.8517289551340514,
+ 4.94764442438624,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 135,
+ "timestamp": 1739683971.8930137,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 6.228829767973886,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9626337646101597,
+ "acceleration": 0.0415529655949185,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2478322066356963,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 136,
+ "timestamp": 1739683971.9030137,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.2288297679738864,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9626337646101597,
+ "acceleration": 0.0415529655949185,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2478322066356963,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 137,
+ "timestamp": 1739683971.9330137,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.2288297679738864,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9626337646101597,
+ "acceleration": 0.0415529655949185,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2478322066356963,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 138,
+ "timestamp": 1739683971.9630136,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.2288297679738864,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9626337646101597,
+ "acceleration": 0.0415529655949185,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2478322066356963,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 139,
+ "timestamp": 1739683971.9830136,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.2288297679738864,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9626337646101597,
+ "acceleration": 0.0415529655949185,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2478322066356963,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.809349488011633,
+ 4.826645631317137,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 140,
+ "timestamp": 1739683972.0130136,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 6.334920493483379,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9666892335348876,
+ "acceleration": 0.037085218848956436,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24716232980288377,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 141,
+ "timestamp": 1739683972.0530136,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.334920493483379,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9666892335348876,
+ "acceleration": 0.037085218848956436,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24716232980288377,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 142,
+ "timestamp": 1739683972.0730135,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.334920493483379,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9666892335348876,
+ "acceleration": 0.037085218848956436,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24716232980288377,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 143,
+ "timestamp": 1739683972.0930135,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.334920493483379,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9666892335348876,
+ "acceleration": 0.037085218848956436,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24716232980288377,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.7669700208892145,
+ 4.705646838248034,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 144,
+ "timestamp": 1739683972.1130135,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.4414385621202337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9703056626347419,
+ "acceleration": 0.033059894963031855,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24655841742146872,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 145,
+ "timestamp": 1739683972.1330135,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.4414385621202337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9703056626347419,
+ "acceleration": 0.033059894963031855,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24655841742146872,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 146,
+ "timestamp": 1739683972.1730134,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.4414385621202337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9703056626347419,
+ "acceleration": 0.033059894963031855,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24655841742146872,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 147,
+ "timestamp": 1739683972.1930134,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.4414385621202337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9703056626347419,
+ "acceleration": 0.033059894963031855,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24655841742146872,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.724590553766796,
+ 4.584648045178931,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 148,
+ "timestamp": 1739683972.2130134,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.4414385621202337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9703056626347419,
+ "acceleration": 0.033059894963031855,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24655841742146872,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 149,
+ "timestamp": 1739683972.2330134,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 6.548335164204922,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9735607246138273,
+ "acceleration": 0.02946831021060825,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2460199282058249,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 150,
+ "timestamp": 1739683972.2630134,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.5483351642049223,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9735607246138273,
+ "acceleration": 0.02946831021060825,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2460199282058249,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 151,
+ "timestamp": 1739683972.2930133,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.5483351642049223,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9735607246138273,
+ "acceleration": 0.02946831021060825,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2460199282058249,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.682211086644378,
+ 4.463649252109828,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 152,
+ "timestamp": 1739683972.3130133,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.5483351642049223,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9735607246138273,
+ "acceleration": 0.02946831021060825,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2460199282058249,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 153,
+ "timestamp": 1739683972.3330133,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 6.655573266708575,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9764602677364562,
+ "acceleration": 0.026237756530467726,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24553528263391522,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 154,
+ "timestamp": 1739683972.3630133,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.6555732667085747,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9764602677364562,
+ "acceleration": 0.026237756530467726,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24553528263391522,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 155,
+ "timestamp": 1739683972.3830132,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.6555732667085747,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9764602677364562,
+ "acceleration": 0.026237756530467726,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24553528263391522,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.639831619521959,
+ 4.342650459040725,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 156,
+ "timestamp": 1739683972.4030132,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.6555732667085747,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9764602677364562,
+ "acceleration": 0.026237756530467726,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24553528263391522,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 157,
+ "timestamp": 1739683972.4230132,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.6555732667085747,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9764602677364562,
+ "acceleration": 0.026237756530467726,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24553528263391522,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 158,
+ "timestamp": 1739683972.4330132,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.6555732667085747,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9764602677364562,
+ "acceleration": 0.026237756530467726,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24553528263391522,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 159,
+ "timestamp": 1739683972.4630132,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 6.7631161024007165,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9790680448702115,
+ "acceleration": 0.023358347586675876,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2451035987512074,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 160,
+ "timestamp": 1739683972.4730132,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.7631161024007165,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9790680448702115,
+ "acceleration": 0.023358347586675876,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2451035987512074,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 161,
+ "timestamp": 1739683972.5030131,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.7631161024007165,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9790680448702115,
+ "acceleration": 0.023358347586675876,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2451035987512074,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.597452152399541,
+ 4.221651665971622,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 162,
+ "timestamp": 1739683972.5130131,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.7631161024007165,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9790680448702115,
+ "acceleration": 0.023358347586675876,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2451035987512074,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 163,
+ "timestamp": 1739683972.533013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.7631161024007165,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9790680448702115,
+ "acceleration": 0.023358347586675876,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2451035987512074,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 164,
+ "timestamp": 1739683972.553013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 6.870933349917439,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9814113095818212,
+ "acceleration": 0.020768852673316796,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24471537595810544,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 165,
+ "timestamp": 1739683972.593013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.870933349917439,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9814113095818212,
+ "acceleration": 0.020768852673316796,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24471537595810544,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.555072685277122,
+ 4.100652872902519,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 166,
+ "timestamp": 1739683972.623013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.870933349917439,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9814113095818212,
+ "acceleration": 0.020768852673316796,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24471537595810544,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 167,
+ "timestamp": 1739683972.643013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.870933349917439,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9814113095818212,
+ "acceleration": 0.020768852673316796,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24471537595810544,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 168,
+ "timestamp": 1739683972.663013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 6.978983394909455,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9833642538352498,
+ "acceleration": 0.01845267223404884,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24436654999728336,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 169,
+ "timestamp": 1739683972.683013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.978983394909455,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9833642538352498,
+ "acceleration": 0.01845267223404884,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24436654999728336,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.512693218154704,
+ 3.979654079833416,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 170,
+ "timestamp": 1739683972.723013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.978983394909455,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9833642538352498,
+ "acceleration": 0.01845267223404884,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24436654999728336,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 171,
+ "timestamp": 1739683972.753013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 2.978983394909455,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9833642538352498,
+ "acceleration": 0.01845267223404884,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24436654999728336,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 172,
+ "timestamp": 1739683972.7730129,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 7.087238748127472,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.985117227154951,
+ "acceleration": 0.016513590543600076,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24407584182619557,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 173,
+ "timestamp": 1739683972.7830129,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.087238748127472,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.985117227154951,
+ "acceleration": 0.016513590543600076,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24407584182619557,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.470313751032285,
+ 3.8586552867643125,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 174,
+ "timestamp": 1739683972.8130128,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.087238748127472,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.985117227154951,
+ "acceleration": 0.016513590543600076,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24407584182619557,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 175,
+ "timestamp": 1739683972.8230128,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.087238748127472,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.985117227154951,
+ "acceleration": 0.016513590543600076,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24407584182619557,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 176,
+ "timestamp": 1739683972.8430128,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.087238748127472,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.985117227154951,
+ "acceleration": 0.016513590543600076,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24407584182619557,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 177,
+ "timestamp": 1739683972.8630128,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.087238748127472,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.985117227154951,
+ "acceleration": 0.016513590543600076,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24407584182619557,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 178,
+ "timestamp": 1739683972.8830128,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 7.1956817387966625,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9867328123517624,
+ "acceleration": 0.014770136667866862,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2438149109944274,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.427934283909867,
+ 3.737656493695209,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 179,
+ "timestamp": 1739683972.9030128,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.1956817387966625,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9867328123517624,
+ "acceleration": 0.014770136667866862,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2438149109944274,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 180,
+ "timestamp": 1739683972.9330127,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.1956817387966625,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9867328123517624,
+ "acceleration": 0.014770136667866862,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2438149109944274,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 181,
+ "timestamp": 1739683972.9630127,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.1956817387966625,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9867328123517624,
+ "acceleration": 0.014770136667866862,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2438149109944274,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 182,
+ "timestamp": 1739683972.9830127,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.1956817387966625,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9867328123517624,
+ "acceleration": 0.014770136667866862,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2438149109944274,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.385554816787448,
+ 3.6166577006261056,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 183,
+ "timestamp": 1739683973.0030127,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 7.304292382954305,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9881579442031129,
+ "acceleration": 0.013167786258468983,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2435744391512867,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 184,
+ "timestamp": 1739683973.0230126,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.304292382954305,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9881579442031129,
+ "acceleration": 0.013167786258468983,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2435744391512867,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 185,
+ "timestamp": 1739683973.0630126,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.304292382954305,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9881579442031129,
+ "acceleration": 0.013167786258468983,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2435744391512867,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 186,
+ "timestamp": 1739683973.0930126,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.304292382954305,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9881579442031129,
+ "acceleration": 0.013167786258468983,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2435744391512867,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.34317534966503,
+ 3.495658907557002,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 187,
+ "timestamp": 1739683973.1330125,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 7.413053876862829,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9894434423932155,
+ "acceleration": 0.011752358857349932,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24336232227743362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 188,
+ "timestamp": 1739683973.1530125,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.413053876862829,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9894434423932155,
+ "acceleration": 0.011752358857349932,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24336232227743362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 189,
+ "timestamp": 1739683973.1730125,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.413053876862829,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9894434423932155,
+ "acceleration": 0.011752358857349932,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24336232227743362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 190,
+ "timestamp": 1739683973.1830125,
+ "objects": [
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.300795882542611,
+ 3.3746601144878987,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 191,
+ "timestamp": 1739683973.2030125,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.413053876862829,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9894434423932155,
+ "acceleration": 0.011752358857349932,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24336232227743362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 192,
+ "timestamp": 1739683973.2330124,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 7.521952298480564,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9906130021918159,
+ "acceleration": 0.010474921672689042,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24317099407734316,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 193,
+ "timestamp": 1739683973.2530124,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.5219522984805636,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9906130021918159,
+ "acceleration": 0.010474921672689042,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24317099407734316,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 194,
+ "timestamp": 1739683973.2730124,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.5219522984805636,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9906130021918159,
+ "acceleration": 0.010474921672689042,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24317099407734316,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 195,
+ "timestamp": 1739683973.2930124,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.5219522984805636,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9906130021918159,
+ "acceleration": 0.010474921672689042,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24317099407734316,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.258416415420193,
+ 3.2536613214187953,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 196,
+ "timestamp": 1739683973.3230124,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 7.630971718914795,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9916424357914658,
+ "acceleration": 0.0093151201246921,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24299692625902236,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 197,
+ "timestamp": 1739683973.3630123,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.630971718914795,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9916424357914658,
+ "acceleration": 0.0093151201246921,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24299692625902236,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 198,
+ "timestamp": 1739683973.3930123,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.630971718914795,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9916424357914658,
+ "acceleration": 0.0093151201246921,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24299692625902236,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.216036948297774,
+ 3.132662528349692,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 199,
+ "timestamp": 1739683973.4130123,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.630971718914795,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9916424357914658,
+ "acceleration": 0.0093151201246921,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24299692625902236,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 200,
+ "timestamp": 1739683973.4330122,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 7.74009452334862,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9925120326323037,
+ "acceleration": 0.008296830221917462,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2428437173124371,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 201,
+ "timestamp": 1739683973.4730122,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.7400945233486196,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9925120326323037,
+ "acceleration": 0.008296830221917462,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2428437173124371,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 202,
+ "timestamp": 1739683973.5030122,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.7400945233486196,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9925120326323037,
+ "acceleration": 0.008296830221917462,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2428437173124371,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.173657481175356,
+ 3.0116637352805884,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 203,
+ "timestamp": 1739683973.5230122,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.7400945233486196,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9925120326323037,
+ "acceleration": 0.008296830221917462,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2428437173124371,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 204,
+ "timestamp": 1739683973.5430121,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 7.849311820233365,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9933253077943766,
+ "acceleration": 0.007431153287743852,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2427142992557617,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 205,
+ "timestamp": 1739683973.573012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.849311820233365,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9933253077943766,
+ "acceleration": 0.007431153287743852,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2427142992557617,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 206,
+ "timestamp": 1739683973.583012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.849311820233365,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9933253077943766,
+ "acceleration": 0.007431153287743852,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2427142992557617,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.1312780140529375,
+ 2.890664942211485,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 207,
+ "timestamp": 1739683973.603012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.849311820233365,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9933253077943766,
+ "acceleration": 0.007431153287743852,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2427142992557617,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 208,
+ "timestamp": 1739683973.623012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.849311820233365,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9933253077943766,
+ "acceleration": 0.007431153287743852,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2427142992557617,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 209,
+ "timestamp": 1739683973.653012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 7.958612247454683,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9940349231180269,
+ "acceleration": 0.00662510882670625,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24259326548262244,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 210,
+ "timestamp": 1739683973.663012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.958612247454683,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9940349231180269,
+ "acceleration": 0.00662510882670625,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24259326548262244,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 211,
+ "timestamp": 1739683973.683012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.958612247454683,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9940349231180269,
+ "acceleration": 0.00662510882670625,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24259326548262244,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.088898546930519,
+ 2.7696661491423815,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 212,
+ "timestamp": 1739683973.703012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.958612247454683,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9940349231180269,
+ "acceleration": 0.00662510882670625,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24259326548262244,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 213,
+ "timestamp": 1739683973.723012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.958612247454683,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9940349231180269,
+ "acceleration": 0.00662510882670625,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24259326548262244,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 214,
+ "timestamp": 1739683973.743012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 3.958612247454683,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9940349231180269,
+ "acceleration": 0.00662510882670625,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24259326548262244,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 215,
+ "timestamp": 1739683973.763012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 8.06798760617938,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9946759768951231,
+ "acceleration": 0.005920275486779147,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2424876603714653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 216,
+ "timestamp": 1739683973.783012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.067987606179379,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9946759768951231,
+ "acceleration": 0.005920275486779147,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2424876603714653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.0465190798081005,
+ 2.648667356073278,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 217,
+ "timestamp": 1739683973.813012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.067987606179379,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9946759768951231,
+ "acceleration": 0.005920275486779147,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2424876603714653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 218,
+ "timestamp": 1739683973.8330119,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.067987606179379,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9946759768951231,
+ "acceleration": 0.005920275486779147,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2424876603714653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 219,
+ "timestamp": 1739683973.8530118,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.067987606179379,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9946759768951231,
+ "acceleration": 0.005920275486779147,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2424876603714653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 220,
+ "timestamp": 1739683973.8730118,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 8.177429208295727,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9952364040468872,
+ "acceleration": 0.005284849738009634,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24239225999036093,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 221,
+ "timestamp": 1739683973.9130118,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.177429208295727,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9952364040468872,
+ "acceleration": 0.005284849738009634,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24239225999036093,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 5.004139612685682,
+ 2.5276685630041746,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 222,
+ "timestamp": 1739683973.9430118,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.177429208295727,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9952364040468872,
+ "acceleration": 0.005284849738009634,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24239225999036093,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 223,
+ "timestamp": 1739683973.9630117,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.177429208295727,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9952364040468872,
+ "acceleration": 0.005284849738009634,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24239225999036093,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 224,
+ "timestamp": 1739683973.9930117,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 8.28692907050273,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9957281629751825,
+ "acceleration": 0.004729217260680485,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24230885938477745,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.961760145563264,
+ 2.406669769935071,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 225,
+ "timestamp": 1739683974.0230117,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.28692907050273,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9957281629751825,
+ "acceleration": 0.004729217260680485,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24230885938477745,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 226,
+ "timestamp": 1739683974.0730116,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.28692907050273,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9957281629751825,
+ "acceleration": 0.004729217260680485,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24230885938477745,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 227,
+ "timestamp": 1739683974.0830116,
+ "objects": [
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.919380678440845,
+ 2.2856709768659678,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 228,
+ "timestamp": 1739683974.1030116,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 8.396481999988808,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9961876309056564,
+ "acceleration": 0.004239711414018854,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24223567854703937,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 229,
+ "timestamp": 1739683974.1230116,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.396481999988808,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9961876309056564,
+ "acceleration": 0.004239711414018854,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24223567854703937,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 230,
+ "timestamp": 1739683974.1430116,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.396481999988808,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9961876309056564,
+ "acceleration": 0.004239711414018854,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24223567854703937,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 231,
+ "timestamp": 1739683974.1630116,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.396481999988808,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9961876309056564,
+ "acceleration": 0.004239711414018854,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24223567854703937,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 232,
+ "timestamp": 1739683974.1830115,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.396481999988808,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9961876309056564,
+ "acceleration": 0.004239711414018854,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24223567854703937,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.877001211318427,
+ 2.1646721837968643,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 233,
+ "timestamp": 1739683974.2130115,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 8.506083281272923,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9966014675467395,
+ "acceleration": 0.003783430370820351,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421673037758913,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 234,
+ "timestamp": 1739683974.2330115,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.5060832812729235,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9966014675467395,
+ "acceleration": 0.003783430370820351,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421673037758913,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 235,
+ "timestamp": 1739683974.2530115,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.5060832812729235,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9966014675467395,
+ "acceleration": 0.003783430370820351,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421673037758913,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 236,
+ "timestamp": 1739683974.2730114,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.5060832812729235,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9966014675467395,
+ "acceleration": 0.003783430370820351,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421673037758913,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 237,
+ "timestamp": 1739683974.3030114,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.5060832812729235,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9966014675467395,
+ "acceleration": 0.003783430370820351,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421673037758913,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.834621744196008,
+ 2.043673390727761,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 238,
+ "timestamp": 1739683974.3330114,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 8.615727841274328,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9969703440936057,
+ "acceleration": 0.00337273480705913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421057201090817,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 239,
+ "timestamp": 1739683974.3430114,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.615727841274328,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9969703440936057,
+ "acceleration": 0.00337273480705913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421057201090817,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 240,
+ "timestamp": 1739683974.3630114,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.615727841274328,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9969703440936057,
+ "acceleration": 0.00337273480705913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421057201090817,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 241,
+ "timestamp": 1739683974.3830113,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.615727841274328,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9969703440936057,
+ "acceleration": 0.00337273480705913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421057201090817,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.79224227707359,
+ 1.9226745976586577,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 242,
+ "timestamp": 1739683974.4030113,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.615727841274328,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9969703440936057,
+ "acceleration": 0.00337273480705913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2421057201090817,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 243,
+ "timestamp": 1739683974.4230113,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 8.725411355361505,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9973025876131756,
+ "acceleration": 0.00300641788783762,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24205082748497533,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 244,
+ "timestamp": 1739683974.4430113,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.725411355361505,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9973025876131756,
+ "acceleration": 0.00300641788783762,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24205082748497533,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 245,
+ "timestamp": 1739683974.4730113,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.725411355361505,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9973025876131756,
+ "acceleration": 0.00300641788783762,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24205082748497533,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 246,
+ "timestamp": 1739683974.4930112,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.725411355361505,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9973025876131756,
+ "acceleration": 0.00300641788783762,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24205082748497533,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.749862809951171,
+ 1.8016758045895545,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 247,
+ "timestamp": 1739683974.5130112,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.725411355361505,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9973025876131756,
+ "acceleration": 0.00300641788783762,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24205082748497533,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 248,
+ "timestamp": 1739683974.5330112,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 8.835128872511458,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9975922666444974,
+ "acceleration": 0.0026771496431687303,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24200138660481324,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 249,
+ "timestamp": 1739683974.5730112,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.835128872511458,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9975922666444974,
+ "acceleration": 0.0026771496431687303,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24200138660481324,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 250,
+ "timestamp": 1739683974.5930111,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.835128872511458,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9975922666444974,
+ "acceleration": 0.0026771496431687303,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24200138660481324,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.707483342828753,
+ 1.6806770115204512,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 251,
+ "timestamp": 1739683974.6130111,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.835128872511458,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9975922666444974,
+ "acceleration": 0.0026771496431687303,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24200138660481324,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 252,
+ "timestamp": 1739683974.633011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.835128872511458,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9975922666444974,
+ "acceleration": 0.0026771496431687303,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24200138660481324,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 253,
+ "timestamp": 1739683974.673011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 8.944876874729797,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9978510120275462,
+ "acceleration": 0.002389632968995248,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24195827999878666,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 254,
+ "timestamp": 1739683974.713011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.944876874729797,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9978510120275462,
+ "acceleration": 0.002389632968995248,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24195827999878666,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.665103875706334,
+ 1.559678218451348,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 255,
+ "timestamp": 1739683974.733011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 4.944876874729797,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9978510120275462,
+ "acceleration": 0.002389632968995248,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24195827999878666,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 256,
+ "timestamp": 1739683974.753011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 9.05465274439807,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.998089112229392,
+ "acceleration": 0.002132330624896872,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24191977679934001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 257,
+ "timestamp": 1739683974.783011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.054652744398069,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.998089112229392,
+ "acceleration": 0.002132330624896872,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24191977679934001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.622724408583916,
+ 1.4386794253822448,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 258,
+ "timestamp": 1739683974.803011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.054652744398069,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.998089112229392,
+ "acceleration": 0.002132330624896872,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24191977679934001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 259,
+ "timestamp": 1739683974.823011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.054652744398069,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.998089112229392,
+ "acceleration": 0.002132330624896872,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24191977679934001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 260,
+ "timestamp": 1739683974.853011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.054652744398069,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.998089112229392,
+ "acceleration": 0.002132330624896872,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24191977679934001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 261,
+ "timestamp": 1739683974.8830109,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 9.164452451817482,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.998292123246752,
+ "acceleration": 0.0018966843458834148,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2418843459426538,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.580344941461497,
+ 1.3176806323131416,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 9.212512683930768,
+ -8.299750561319007,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 262,
+ "timestamp": 1739683974.9030108,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.164452451817482,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.998292123246752,
+ "acceleration": 0.0018966843458834148,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2418843459426538,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 263,
+ "timestamp": 1739683974.9230108,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.164452451817482,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.998292123246752,
+ "acceleration": 0.0018966843458834148,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2418843459426538,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 264,
+ "timestamp": 1739683974.9630108,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.164452451817482,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.998292123246752,
+ "acceleration": 0.0018966843458834148,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2418843459426538,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 265,
+ "timestamp": 1739683974.9830108,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 9.274274040472456,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9984794131834065,
+ "acceleration": 0.001694772504269526,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24185413672783213,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.537965474339079,
+ 1.1966818392440384,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 9.183074177371761,
+ -8.349225652431592,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 266,
+ "timestamp": 1739683975.0030107,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.274274040472456,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9984794131834065,
+ "acceleration": 0.001694772504269526,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24185413672783213,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 267,
+ "timestamp": 1739683975.0230107,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.274274040472456,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9984794131834065,
+ "acceleration": 0.001694772504269526,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24185413672783213,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 268,
+ "timestamp": 1739683975.0430107,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.274274040472456,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9984794131834065,
+ "acceleration": 0.001694772504269526,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24185413672783213,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 269,
+ "timestamp": 1739683975.0630107,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.274274040472456,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9984794131834065,
+ "acceleration": 0.001694772504269526,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24185413672783213,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 270,
+ "timestamp": 1739683975.0930107,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 9.384115006570521,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9986444384116359,
+ "acceleration": 0.001509039796988021,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24182626701780396,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.4955860072166605,
+ 1.0756830461749352,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 9.153635670812754,
+ -8.398700743544177,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 271,
+ "timestamp": 1739683975.1030107,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.3841150065705214,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9986444384116359,
+ "acceleration": 0.001509039796988021,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24182626701780396,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 272,
+ "timestamp": 1739683975.1230106,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.3841150065705214,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9986444384116359,
+ "acceleration": 0.001509039796988021,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24182626701780396,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 273,
+ "timestamp": 1739683975.1430106,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.3841150065705214,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9986444384116359,
+ "acceleration": 0.001509039796988021,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24182626701780396,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 274,
+ "timestamp": 1739683975.1630106,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.3841150065705214,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9986444384116359,
+ "acceleration": 0.001509039796988021,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24182626701780396,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 275,
+ "timestamp": 1739683975.1830106,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.3841150065705214,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9986444384116359,
+ "acceleration": 0.001509039796988021,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24182626701780396,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.453206540094242,
+ 0.9546842531058319,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 9.124197164253747,
+ -8.448175834656762,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 276,
+ "timestamp": 1739683975.2230105,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 9.493973353107963,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9987930628509667,
+ "acceleration": 0.0013451616861103743,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24180171050442414,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 277,
+ "timestamp": 1739683975.2530105,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.493973353107963,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9987930628509667,
+ "acceleration": 0.0013451616861103743,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24180171050442414,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 278,
+ "timestamp": 1739683975.2730105,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.493973353107963,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9987930628509667,
+ "acceleration": 0.0013451616861103743,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24180171050442414,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 279,
+ "timestamp": 1739683975.2830105,
+ "objects": [
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.4108270729718235,
+ 0.8336854600367287,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 9.09475865769474,
+ -8.497650925769348,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 280,
+ "timestamp": 1739683975.3030105,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 9.60384753457952,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9989281666962959,
+ "acceleration": 0.001197482958566809,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24177959457849182,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 281,
+ "timestamp": 1739683975.3330104,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.60384753457952,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9989281666962959,
+ "acceleration": 0.001197482958566809,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24177959457849182,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 282,
+ "timestamp": 1739683975.3530104,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.60384753457952,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9989281666962959,
+ "acceleration": 0.001197482958566809,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24177959457849182,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 283,
+ "timestamp": 1739683975.3730104,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.60384753457952,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9989281666962959,
+ "acceleration": 0.001197482958566809,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24177959457849182,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 284,
+ "timestamp": 1739683975.3930104,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.60384753457952,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9989281666962959,
+ "acceleration": 0.001197482958566809,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24177959457849182,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.368447605849405,
+ 0.7126866669676255,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 9.065320151135733,
+ -8.547126016881933,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 285,
+ "timestamp": 1739683975.4030104,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.60384753457952,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9989281666962959,
+ "acceleration": 0.001197482958566809,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24177959457849182,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 286,
+ "timestamp": 1739683975.4130104,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 9.71373534685254,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9990432403452012,
+ "acceleration": 0.0010637804826567065,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2417594906337138,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 287,
+ "timestamp": 1739683975.4330103,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.713735346852539,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9990432403452012,
+ "acceleration": 0.0010637804826567065,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2417594906337138,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 288,
+ "timestamp": 1739683975.4730103,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.713735346852539,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9990432403452012,
+ "acceleration": 0.0010637804826567065,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2417594906337138,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 289,
+ "timestamp": 1739683975.4930103,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.713735346852539,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9990432403452012,
+ "acceleration": 0.0010637804826567065,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2417594906337138,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.326068138726987,
+ 0.5916878738985223,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 9.035881644576726,
+ -8.596601107994518,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 290,
+ "timestamp": 1739683975.5030103,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.713735346852539,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9990432403452012,
+ "acceleration": 0.0010637804826567065,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2417594906337138,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 291,
+ "timestamp": 1739683975.5230103,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 9.823635367232729,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9991481396116885,
+ "acceleration": 0.0009494186033738305,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24174236730125653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 292,
+ "timestamp": 1739683975.5430102,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.823635367232729,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9991481396116885,
+ "acceleration": 0.0009494186033738305,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24174236730125653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 293,
+ "timestamp": 1739683975.5630102,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.823635367232729,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9991481396116885,
+ "acceleration": 0.0009494186033738305,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24174236730125653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 294,
+ "timestamp": 1739683975.5830102,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.823635367232729,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9991481396116885,
+ "acceleration": 0.0009494186033738305,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24174236730125653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.283688671604568,
+ 0.470689080829419,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 9.006443138017719,
+ -8.646076199107103,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 295,
+ "timestamp": 1739683975.6130102,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.823635367232729,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9991481396116885,
+ "acceleration": 0.0009494186033738305,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24174236730125653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 296,
+ "timestamp": 1739683975.6230102,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.823635367232729,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9991481396116885,
+ "acceleration": 0.0009494186033738305,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24174236730125653,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 297,
+ "timestamp": 1739683975.6430101,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 9.933546157349065,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9992396224340299,
+ "acceleration": 0.0008454580656684363,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24172675798684656,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 298,
+ "timestamp": 1739683975.67301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.933546157349065,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9992396224340299,
+ "acceleration": 0.0008454580656684363,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24172675798684656,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 299,
+ "timestamp": 1739683975.69301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.933546157349065,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9992396224340299,
+ "acceleration": 0.0008454580656684363,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24172675798684656,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.24130920448215,
+ 0.34969028776031574,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.977004631458712,
+ -8.695551290219688,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 300,
+ "timestamp": 1739683975.71301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.933546157349065,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9992396224340299,
+ "acceleration": 0.0008454580656684363,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24172675798684656,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 301,
+ "timestamp": 1739683975.73301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 5.933546157349065,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9992396224340299,
+ "acceleration": 0.0008454580656684363,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24172675798684656,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 302,
+ "timestamp": 1739683975.76301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 10.043466725832104,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9993230076113765,
+ "acceleration": 0.0007545418021093764,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24171314510689484,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 303,
+ "timestamp": 1739683975.79301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.043466725832104,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9993230076113765,
+ "acceleration": 0.0007545418021093764,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24171314510689484,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.198929737359731,
+ 0.22869149469121247,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.947566124899705,
+ -8.745026381332274,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 304,
+ "timestamp": 1739683975.81301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.043466725832104,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9993230076113765,
+ "acceleration": 0.0007545418021093764,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24171314510689484,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 305,
+ "timestamp": 1739683975.83301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.043466725832104,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9993230076113765,
+ "acceleration": 0.0007545418021093764,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24171314510689484,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 306,
+ "timestamp": 1739683975.86301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.153396082758027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9993980193847185,
+ "acceleration": 0.0006717425238698116,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2417007372007371,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 307,
+ "timestamp": 1739683975.88301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.153396082758027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9993980193847185,
+ "acceleration": 0.0006717425238698116,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2417007372007371,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.156550270237313,
+ 0.1076927016221092,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.918127618340698,
+ -8.794501472444859,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 308,
+ "timestamp": 1739683975.90301,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.153396082758027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9993980193847185,
+ "acceleration": 0.0006717425238698116,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2417007372007371,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 309,
+ "timestamp": 1739683975.9230099,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.153396082758027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9993980193847185,
+ "acceleration": 0.0006717425238698116,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2417007372007371,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 310,
+ "timestamp": 1739683975.9630098,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 10.263333238384348,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9994646987660861,
+ "acceleration": 0.000597313816918188,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24168957529536295,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 311,
+ "timestamp": 1739683975.9730098,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.263333238384348,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9994646987660861,
+ "acceleration": 0.000597313816918188,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24168957529536295,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 312,
+ "timestamp": 1739683976.0130098,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.263333238384348,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9994646987660861,
+ "acceleration": 0.000597313816918188,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24168957529536295,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.114170803114894,
+ -0.013306091446994073,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.88868911178169,
+ -8.843976563557444,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 313,
+ "timestamp": 1739683976.0330098,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.263333238384348,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9994646987660861,
+ "acceleration": 0.000597313816918188,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24168957529536295,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 314,
+ "timestamp": 1739683976.0530097,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.263333238384348,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9994646987660861,
+ "acceleration": 0.000597313816918188,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24168957529536295,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 315,
+ "timestamp": 1739683976.0930097,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 10.373277232805126,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999522774325833,
+ "acceleration": 0.0005312365327621582,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24167965328208224,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.071791335992476,
+ -0.13430488451609734,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.859250605222684,
+ -8.893451654670029,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 316,
+ "timestamp": 1739683976.1130097,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.373277232805126,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999522774325833,
+ "acceleration": 0.0005312365327621582,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24167965328208224,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 317,
+ "timestamp": 1739683976.1230097,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.373277232805126,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999522774325833,
+ "acceleration": 0.0005312365327621582,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24167965328208224,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 318,
+ "timestamp": 1739683976.1430097,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.373277232805126,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999522774325833,
+ "acceleration": 0.0005312365327621582,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24167965328208224,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 319,
+ "timestamp": 1739683976.1730096,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.373277232805126,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999522774325833,
+ "acceleration": 0.0005312365327621582,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24167965328208224,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 320,
+ "timestamp": 1739683976.2030096,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 10.483227508742695,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9995767076963623,
+ "acceleration": 0.0004734508239096491,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24167101154470702,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 4.029411868870057,
+ -0.2553036775852006,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.829812098663677,
+ -8.942926745782614,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 321,
+ "timestamp": 1739683976.2230096,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.483227508742695,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9995767076963623,
+ "acceleration": 0.0004734508239096491,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24167101154470702,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 322,
+ "timestamp": 1739683976.2430096,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.483227508742695,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9995767076963623,
+ "acceleration": 0.0004734508239096491,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24167101154470702,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 323,
+ "timestamp": 1739683976.2630095,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.483227508742695,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9995767076963623,
+ "acceleration": 0.0004734508239096491,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24167101154470702,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 324,
+ "timestamp": 1739683976.3030095,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 10.593183291455038,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9996231282910543,
+ "acceleration": 0.0004200432334501847,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416629861814635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.987032401747639,
+ -0.3763024706543039,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.80037359210467,
+ -8.9924018368952,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 325,
+ "timestamp": 1739683976.3230095,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.593183291455038,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9996231282910543,
+ "acceleration": 0.0004200432334501847,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416629861814635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 326,
+ "timestamp": 1739683976.3430095,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.593183291455038,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9996231282910543,
+ "acceleration": 0.0004200432334501847,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416629861814635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 327,
+ "timestamp": 1739683976.3530095,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.593183291455038,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9996231282910543,
+ "acceleration": 0.0004200432334501847,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416629861814635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 328,
+ "timestamp": 1739683976.3830094,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.593183291455038,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9996231282910543,
+ "acceleration": 0.0004200432334501847,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416629861814635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.9446529346252204,
+ -0.49730126372340716,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.770935085545663,
+ -9.041876928007785,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 329,
+ "timestamp": 1739683976.4030094,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 10.703143952118822,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9996648774604859,
+ "acceleration": 0.00037394956433722815,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416560787375428,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 330,
+ "timestamp": 1739683976.4230094,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.703143952118822,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9996648774604859,
+ "acceleration": 0.00037394956433722815,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416560787375428,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 331,
+ "timestamp": 1739683976.4630094,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.703143952118822,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9996648774604859,
+ "acceleration": 0.00037394956433722815,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416560787375428,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 332,
+ "timestamp": 1739683976.4930093,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.703143952118822,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9996648774604859,
+ "acceleration": 0.00037394956433722815,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416560787375428,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.902273467502802,
+ -0.6183000567925104,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.741496578986656,
+ -9.09135201912037,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 333,
+ "timestamp": 1739683976.5130093,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 10.813108799250337,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997001030550947,
+ "acceleration": 0.00033265697158080254,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24164986641357108,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 334,
+ "timestamp": 1739683976.5230093,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.813108799250337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997001030550947,
+ "acceleration": 0.00033265697158080254,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24164986641357108,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 335,
+ "timestamp": 1739683976.5530093,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.813108799250337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997001030550947,
+ "acceleration": 0.00033265697158080254,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24164986641357108,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 336,
+ "timestamp": 1739683976.5730093,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.813108799250337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997001030550947,
+ "acceleration": 0.00033265697158080254,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24164986641357108,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 337,
+ "timestamp": 1739683976.5930092,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.813108799250337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997001030550947,
+ "acceleration": 0.00033265697158080254,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24164986641357108,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.8598940003803834,
+ -0.7392988498616138,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.712058072427649,
+ -9.140827110232955,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 338,
+ "timestamp": 1739683976.6130092,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.813108799250337,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997001030550947,
+ "acceleration": 0.00033265697158080254,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24164986641357108,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 339,
+ "timestamp": 1739683976.6430092,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 10.923077370341923,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997320218462371,
+ "acceleration": 0.00029766281078408285,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.241644624809303,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 340,
+ "timestamp": 1739683976.6630092,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.9230773703419235,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997320218462371,
+ "acceleration": 0.00029766281078408285,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.241644624809303,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 341,
+ "timestamp": 1739683976.6930091,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.9230773703419235,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997320218462371,
+ "acceleration": 0.00029766281078408285,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.241644624809303,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.817514533257965,
+ -0.860297642930717,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.682619565868642,
+ -9.19030220134554,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 342,
+ "timestamp": 1739683976.713009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 6.9230773703419235,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997320218462371,
+ "acceleration": 0.00029766281078408285,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.241644624809303,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 343,
+ "timestamp": 1739683976.733009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 11.033049464192418,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997625768362262,
+ "acceleration": 0.0002658394588889723,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416398752641796,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 344,
+ "timestamp": 1739683976.763009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.033049464192418,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997625768362262,
+ "acceleration": 0.0002658394588889723,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416398752641796,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 345,
+ "timestamp": 1739683976.783009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.033049464192418,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997625768362262,
+ "acceleration": 0.0002658394588889723,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416398752641796,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.7751350661355465,
+ -0.9812964359998202,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.653181059309635,
+ -9.239777292458125,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 346,
+ "timestamp": 1739683976.803009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.033049464192418,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997625768362262,
+ "acceleration": 0.0002658394588889723,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416398752641796,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 347,
+ "timestamp": 1739683976.833009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.033049464192418,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997625768362262,
+ "acceleration": 0.0002658394588889723,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416398752641796,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 348,
+ "timestamp": 1739683976.873009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 11.14302468239625,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997888905107274,
+ "acceleration": 0.0002355813245842331,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416353286569612,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 349,
+ "timestamp": 1739683976.893009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.14302468239625,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997888905107274,
+ "acceleration": 0.0002355813245842331,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416353286569612,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.732755599013128,
+ -1.1022952290689234,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.623742552750628,
+ -9.28925238357071,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 350,
+ "timestamp": 1739683976.913009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.14302468239625,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997888905107274,
+ "acceleration": 0.0002355813245842331,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416353286569612,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 351,
+ "timestamp": 1739683976.943009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.14302468239625,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9997888905107274,
+ "acceleration": 0.0002355813245842331,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416353286569612,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 352,
+ "timestamp": 1739683976.9630089,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 11.253002653869624,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998122847373627,
+ "acceleration": 0.00020947198671011913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24163141316331133,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 353,
+ "timestamp": 1739683976.9930089,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.253002653869624,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998122847373627,
+ "acceleration": 0.00020947198671011913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24163141316331133,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.6903761318907096,
+ -1.2232940221380266,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.59430404619162,
+ -9.338727474683296,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 354,
+ "timestamp": 1739683977.0030088,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.253002653869624,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998122847373627,
+ "acceleration": 0.00020947198671011913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24163141316331133,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 355,
+ "timestamp": 1739683977.0330088,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.253002653869624,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998122847373627,
+ "acceleration": 0.00020947198671011913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24163141316331133,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 356,
+ "timestamp": 1739683977.0530088,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.253002653869624,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998122847373627,
+ "acceleration": 0.00020947198671011913,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24163141316331133,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 357,
+ "timestamp": 1739683977.0730088,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 11.362983044845949,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998328704286555,
+ "acceleration": 0.00018627433729406784,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162793208745967,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 358,
+ "timestamp": 1739683977.0930088,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.362983044845949,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998328704286555,
+ "acceleration": 0.00018627433729406784,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162793208745967,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.647996664768291,
+ -1.3442928152071298,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.564865539632613,
+ -9.388202565795881,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 359,
+ "timestamp": 1739683977.1130087,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.362983044845949,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998328704286555,
+ "acceleration": 0.00018627433729406784,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162793208745967,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 360,
+ "timestamp": 1739683977.1330087,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.362983044845949,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998328704286555,
+ "acceleration": 0.00018627433729406784,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162793208745967,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 361,
+ "timestamp": 1739683977.1430087,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.362983044845949,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998328704286555,
+ "acceleration": 0.00018627433729406784,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162793208745967,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 362,
+ "timestamp": 1739683977.1730087,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 11.472965629423229,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998517612094938,
+ "acceleration": 0.0001658072762612539,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162486892490773,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 363,
+ "timestamp": 1739683977.1930087,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.4729656294232285,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998517612094938,
+ "acceleration": 0.0001658072762612539,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162486892490773,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.6056171976458726,
+ -1.465291608276233,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.535427033073606,
+ -9.437677656908466,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 364,
+ "timestamp": 1739683977.2030087,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.4729656294232285,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998517612094938,
+ "acceleration": 0.0001658072762612539,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162486892490773,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 365,
+ "timestamp": 1739683977.2230086,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.4729656294232285,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998517612094938,
+ "acceleration": 0.0001658072762612539,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162486892490773,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 366,
+ "timestamp": 1739683977.2630086,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.4729656294232285,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998517612094938,
+ "acceleration": 0.0001658072762612539,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162486892490773,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 367,
+ "timestamp": 1739683977.2830086,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 11.582950104227564,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999867669334626,
+ "acceleration": 0.0001471252663802769,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162205796718692,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.563237730523454,
+ -1.5862904013453363,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.5059885265146,
+ -9.487152748021051,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 368,
+ "timestamp": 1739683977.3030086,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.582950104227564,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999867669334626,
+ "acceleration": 0.0001471252663802769,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162205796718692,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 369,
+ "timestamp": 1739683977.3230085,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.582950104227564,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999867669334626,
+ "acceleration": 0.0001471252663802769,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162205796718692,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 370,
+ "timestamp": 1739683977.3630085,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.582950104227564,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999867669334626,
+ "acceleration": 0.0001471252663802769,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162205796718692,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 371,
+ "timestamp": 1739683977.3830085,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.582950104227564,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999867669334626,
+ "acceleration": 0.0001471252663802769,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24162205796718692,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.5208582634010357,
+ -1.7072891944144395,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.476550019955592,
+ -9.536627839133637,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 372,
+ "timestamp": 1739683977.4030085,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 11.692936246750962,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999881887547928,
+ "acceleration": 0.00013133542605120452,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161969083102589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 373,
+ "timestamp": 1739683977.4330084,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.692936246750962,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999881887547928,
+ "acceleration": 0.00013133542605120452,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161969083102589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 374,
+ "timestamp": 1739683977.4630084,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.692936246750962,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999881887547928,
+ "acceleration": 0.00013133542605120452,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161969083102589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 375,
+ "timestamp": 1739683977.4830084,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.692936246750962,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999881887547928,
+ "acceleration": 0.00013133542605120452,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161969083102589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.4784787962786172,
+ -1.8282879874835427,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.447111513396585,
+ -9.586102930246222,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 376,
+ "timestamp": 1739683977.5030084,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 11.802923877132246,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998944515298152,
+ "acceleration": 0.00011723300144073079,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161757515518922,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 377,
+ "timestamp": 1739683977.5230083,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.802923877132246,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998944515298152,
+ "acceleration": 0.00011723300144073079,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161757515518922,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 378,
+ "timestamp": 1739683977.5430083,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.802923877132246,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998944515298152,
+ "acceleration": 0.00011723300144073079,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161757515518922,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 379,
+ "timestamp": 1739683977.5630083,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.802923877132246,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998944515298152,
+ "acceleration": 0.00011723300144073079,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161757515518922,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 380,
+ "timestamp": 1739683977.5830083,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.802923877132246,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998944515298152,
+ "acceleration": 0.00011723300144073079,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161757515518922,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.4360993291561988,
+ -1.949286780552646,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.417673006837578,
+ -9.635578021358807,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 381,
+ "timestamp": 1739683977.6030083,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.802923877132246,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9998944515298152,
+ "acceleration": 0.00011723300144073079,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161757515518922,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 382,
+ "timestamp": 1739683977.6230083,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 11.912912824462968,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999057943900492,
+ "acceleration": 0.00010475449262620229,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161570563018828,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 383,
+ "timestamp": 1739683977.6830082,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.912912824462968,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999057943900492,
+ "acceleration": 0.00010475449262620229,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161570563018828,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.3937198620337803,
+ -2.0702855736217494,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.388234500278571,
+ -9.685053112471392,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 384,
+ "timestamp": 1739683977.7030082,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 7.912912824462968,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999057943900492,
+ "acceleration": 0.00010475449262620229,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161570563018828,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 385,
+ "timestamp": 1739683977.7230082,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 12.02290294927391,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999915609674839,
+ "acceleration": 9.351855754530236e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161401780896022,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 386,
+ "timestamp": 1739683977.7430081,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.02290294927391,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999915609674839,
+ "acceleration": 9.351855754530236e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161401780896022,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 387,
+ "timestamp": 1739683977.763008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.02290294927391,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999915609674839,
+ "acceleration": 9.351855754530236e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161401780896022,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 388,
+ "timestamp": 1739683977.783008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.02290294927391,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999915609674839,
+ "acceleration": 9.351855754530236e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161401780896022,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.351340394911362,
+ -2.191284366690853,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.358795993719564,
+ -9.734528203583977,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 389,
+ "timestamp": 1739683977.803008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.02290294927391,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999915609674839,
+ "acceleration": 9.351855754530236e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161401780896022,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 390,
+ "timestamp": 1739683977.823008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.02290294927391,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999915609674839,
+ "acceleration": 9.351855754530236e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161401780896022,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 391,
+ "timestamp": 1739683977.843008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 12.132894112608422,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999246829125209,
+ "acceleration": 8.37552130139585e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161255729177875,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 392,
+ "timestamp": 1739683977.873008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.132894112608422,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999246829125209,
+ "acceleration": 8.37552130139585e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161255729177875,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 393,
+ "timestamp": 1739683977.903008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.132894112608422,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999246829125209,
+ "acceleration": 8.37552130139585e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161255729177875,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.3089609277889434,
+ -2.3122831597599562,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.329357487160557,
+ -9.784003294696562,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.099751323760866,
+ 3.496484465023636,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 394,
+ "timestamp": 1739683977.933008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.132894112608422,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999246829125209,
+ "acceleration": 8.37552130139585e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161255729177875,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 395,
+ "timestamp": 1739683977.953008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 12.242886235685603,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999327780620413,
+ "acceleration": 7.47504385513742e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161120719169316,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 396,
+ "timestamp": 1739683977.973008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.242886235685603,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999327780620413,
+ "acceleration": 7.47504385513742e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161120719169316,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 397,
+ "timestamp": 1739683978.003008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.242886235685603,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999327780620413,
+ "acceleration": 7.47504385513742e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161120719169316,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.266581460666525,
+ -2.4332819528290597,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.29991898060155,
+ -9.833478385809148,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.107417739335705,
+ 3.557663516112715,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 398,
+ "timestamp": 1739683978.0330079,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.242886235685603,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999327780620413,
+ "acceleration": 7.47504385513742e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161120719169316,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 399,
+ "timestamp": 1739683978.0430079,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.242886235685603,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999327780620413,
+ "acceleration": 7.47504385513742e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161120719169316,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 400,
+ "timestamp": 1739683978.0730078,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 12.352879205244825,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999400750979504,
+ "acceleration": 6.671115472300926e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161000263159832,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 401,
+ "timestamp": 1739683978.0930078,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.352879205244825,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999400750979504,
+ "acceleration": 6.671115472300926e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161000263159832,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.2242019935441064,
+ -2.554280745898163,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.270480474042543,
+ -9.882953476921733,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.115084154910544,
+ 3.618842567201794,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 402,
+ "timestamp": 1739683978.1030078,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.352879205244825,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999400750979504,
+ "acceleration": 6.671115472300926e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161000263159832,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 403,
+ "timestamp": 1739683978.1330078,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.352879205244825,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999400750979504,
+ "acceleration": 6.671115472300926e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24161000263159832,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 404,
+ "timestamp": 1739683978.1630077,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 12.462872945329087,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999466466614622,
+ "acceleration": 5.9464900047934144e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160891683117058,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 405,
+ "timestamp": 1739683978.2130077,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.462872945329087,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999466466614622,
+ "acceleration": 5.9464900047934144e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160891683117058,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.181822526421688,
+ -2.6752795389672666,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.241041967483536,
+ -9.932428568034318,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.122750570485383,
+ 3.6800216182908727,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 406,
+ "timestamp": 1739683978.2330077,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.462872945329087,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999466466614622,
+ "acceleration": 5.9464900047934144e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160891683117058,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 407,
+ "timestamp": 1739683978.2530077,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.462872945329087,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999466466614622,
+ "acceleration": 5.9464900047934144e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160891683117058,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 408,
+ "timestamp": 1739683978.2830076,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 12.572867345453778,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999521979918268,
+ "acceleration": 5.296475102789522e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160793898132898,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.1394430592992695,
+ -2.79627833203637,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.211603460924529,
+ -9.981903659146903,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.130416986060222,
+ 3.7412006693799515,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 409,
+ "timestamp": 1739683978.3030076,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.572867345453778,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999521979918268,
+ "acceleration": 5.296475102789522e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160793898132898,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 410,
+ "timestamp": 1739683978.3330076,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.572867345453778,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999521979918268,
+ "acceleration": 5.296475102789522e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160793898132898,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 411,
+ "timestamp": 1739683978.3530076,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.572867345453778,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999521979918268,
+ "acceleration": 5.296475102789522e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160793898132898,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 412,
+ "timestamp": 1739683978.3630075,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.572867345453778,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999521979918268,
+ "acceleration": 5.296475102789522e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160793898132898,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 413,
+ "timestamp": 1739683978.3930075,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 12.682862351819864,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999574400133625,
+ "acceleration": 4.743507140259062e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160711294247225,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.097063592176851,
+ -2.9172771251054734,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.182164954365522,
+ -10.031378750259488,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.138083401635061,
+ 3.8023797204690304,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 414,
+ "timestamp": 1739683978.4230075,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.682862351819864,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999574400133625,
+ "acceleration": 4.743507140259062e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160711294247225,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 415,
+ "timestamp": 1739683978.4430075,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.682862351819864,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999574400133625,
+ "acceleration": 4.743507140259062e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160711294247225,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 416,
+ "timestamp": 1739683978.4630075,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.682862351819864,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999574400133625,
+ "acceleration": 4.743507140259062e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160711294247225,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 417,
+ "timestamp": 1739683978.4830074,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.682862351819864,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999574400133625,
+ "acceleration": 4.743507140259062e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160711294247225,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.0546841250544325,
+ -3.038275918174577,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.152726447806515,
+ -10.080853841372074,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.1457498172099,
+ 3.8635587715581092,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 418,
+ "timestamp": 1739683978.5130074,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 12.792857913607142,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999962203172842,
+ "acceleration": 4.2226569301528905e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160633292890984,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 419,
+ "timestamp": 1739683978.5330074,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.792857913607142,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999962203172842,
+ "acceleration": 4.2226569301528905e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160633292890984,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 420,
+ "timestamp": 1739683978.5530074,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.792857913607142,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999962203172842,
+ "acceleration": 4.2226569301528905e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160633292890984,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 421,
+ "timestamp": 1739683978.5730073,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.792857913607142,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999962203172842,
+ "acceleration": 4.2226569301528905e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160633292890984,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 422,
+ "timestamp": 1739683978.5930073,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.792857913607142,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999962203172842,
+ "acceleration": 4.2226569301528905e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160633292890984,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.012304657932014,
+ -3.1592747112436803,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.123287941247508,
+ -10.130328932484659,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.153416232784739,
+ 3.924737822647188,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 423,
+ "timestamp": 1739683978.6230073,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 12.902853962720265,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999663050408618,
+ "acceleration": 3.7509699328974744e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160562417016687,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 424,
+ "timestamp": 1739683978.6730072,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.902853962720265,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999663050408618,
+ "acceleration": 3.7509699328974744e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160562417016687,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 425,
+ "timestamp": 1739683978.6930072,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 8.902853962720265,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999663050408618,
+ "acceleration": 3.7509699328974744e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160562417016687,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.9699251908095956,
+ -3.2802735043127837,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.0938494346885,
+ -10.179804023597244,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.161082648359578,
+ 3.985916873736267,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 426,
+ "timestamp": 1739683978.7130072,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 13.012850437268758,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999698886629846,
+ "acceleration": 3.344410787625707e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160501381173635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 427,
+ "timestamp": 1739683978.7330072,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.012850437268758,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999698886629846,
+ "acceleration": 3.344410787625707e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160501381173635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 428,
+ "timestamp": 1739683978.7530072,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.012850437268758,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999698886629846,
+ "acceleration": 3.344410787625707e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160501381173635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 429,
+ "timestamp": 1739683978.7730072,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.012850437268758,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999698886629846,
+ "acceleration": 3.344410787625707e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160501381173635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 430,
+ "timestamp": 1739683978.813007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.012850437268758,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999698886629846,
+ "acceleration": 3.344410787625707e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160501381173635,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.927545723687177,
+ -3.401272297381887,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.064410928129494,
+ -10.22927911470983,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.168749063934417,
+ 4.047095924825346,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 431,
+ "timestamp": 1739683978.843007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 13.122847281515387,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999730922203464,
+ "acceleration": 2.9887089826707847e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160448056839862,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 432,
+ "timestamp": 1739683978.883007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.122847281515387,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999730922203464,
+ "acceleration": 2.9887089826707847e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160448056839862,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.8851662565647587,
+ -3.5222710904509906,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.034972421570487,
+ -10.278754205822414,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.176415479509256,
+ 4.108274975914425,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 433,
+ "timestamp": 1739683978.893007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.122847281515387,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999730922203464,
+ "acceleration": 2.9887089826707847e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160448056839862,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 434,
+ "timestamp": 1739683978.923007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.122847281515387,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999730922203464,
+ "acceleration": 2.9887089826707847e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160448056839862,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 435,
+ "timestamp": 1739683978.963007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 13.232844467428908,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999759849654317,
+ "acceleration": 2.6705288970751972e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160400387877093,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 436,
+ "timestamp": 1739683978.993007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.232844467428908,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999759849654317,
+ "acceleration": 2.6705288970751972e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160400387877093,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.84278678944234,
+ -3.643269883520094,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.00553391501148,
+ -10.328229296935,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.184081895084095,
+ 4.169454027003503,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 437,
+ "timestamp": 1739683979.013007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.232844467428908,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999759849654317,
+ "acceleration": 2.6705288970751972e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160400387877093,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 438,
+ "timestamp": 1739683979.033007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.232844467428908,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999759849654317,
+ "acceleration": 2.6705288970751972e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160400387877093,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 439,
+ "timestamp": 1739683979.053007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 13.342841960098879,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999786190311416,
+ "acceleration": 2.383065116451366e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160357343806654,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 440,
+ "timestamp": 1739683979.0730069,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.342841960098879,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999786190311416,
+ "acceleration": 2.383065116451366e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160357343806654,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 441,
+ "timestamp": 1739683979.0930068,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.342841960098879,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999786190311416,
+ "acceleration": 2.383065116451366e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160357343806654,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.8004073223199217,
+ -3.7642686765891975,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.976095408452472,
+ -10.377704388047585,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.191748310658934,
+ 4.230633078092582,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 442,
+ "timestamp": 1739683979.1330068,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.342841960098879,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999786190311416,
+ "acceleration": 2.383065116451366e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160357343806654,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 443,
+ "timestamp": 1739683979.1630068,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 13.452839723922889,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999809394412965,
+ "acceleration": 2.1218541085887832e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160318148889756,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 444,
+ "timestamp": 1739683979.1930068,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.452839723922889,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999809394412965,
+ "acceleration": 2.1218541085887832e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160318148889756,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.7580278551975033,
+ -3.885267469658301,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.946656901893464,
+ -10.42717947916017,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.199414726233773,
+ 4.291812129181661,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 445,
+ "timestamp": 1739683979.2230067,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.452839723922889,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999809394412965,
+ "acceleration": 2.1218541085887832e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160318148889756,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 446,
+ "timestamp": 1739683979.2430067,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.452839723922889,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999809394412965,
+ "acceleration": 2.1218541085887832e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160318148889756,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 447,
+ "timestamp": 1739683979.2630067,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 13.562837728975676,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999829872786443,
+ "acceleration": 1.8917210827862352e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160283621171638,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 448,
+ "timestamp": 1739683979.2830067,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.562837728975676,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999829872786443,
+ "acceleration": 1.8917210827862352e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160283621171638,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.715648388075085,
+ -4.006266262727404,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.917218395334456,
+ -10.476654570272755,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.207081141808612,
+ 4.35299118027074,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 449,
+ "timestamp": 1739683979.3130066,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.562837728975676,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999829872786443,
+ "acceleration": 1.8917210827862352e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160283621171638,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 450,
+ "timestamp": 1739683979.3330066,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.562837728975676,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999829872786443,
+ "acceleration": 1.8917210827862352e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160283621171638,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 451,
+ "timestamp": 1739683979.3530066,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.562837728975676,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999829872786443,
+ "acceleration": 1.8917210827862352e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160283621171638,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 452,
+ "timestamp": 1739683979.3830066,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 13.672835944637304,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.99998477811687,
+ "acceleration": 1.6887363257112042e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160253149340083,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.6732689209526663,
+ -4.127265055796507,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.887779888775448,
+ -10.52612966138534,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.21474755738345,
+ 4.414170231359819,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 453,
+ "timestamp": 1739683979.4130065,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.672835944637304,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.99998477811687,
+ "acceleration": 1.6887363257112042e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160253149340083,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 454,
+ "timestamp": 1739683979.4330065,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.672835944637304,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.99998477811687,
+ "acceleration": 1.6887363257112042e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160253149340083,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 455,
+ "timestamp": 1739683979.4530065,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.672835944637304,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.99998477811687,
+ "acceleration": 1.6887363257112042e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160253149340083,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 456,
+ "timestamp": 1739683979.4730065,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.672835944637304,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.99998477811687,
+ "acceleration": 1.6887363257112042e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160253149340083,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 457,
+ "timestamp": 1739683979.5130064,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 13.782834357121825,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999986480125664,
+ "acceleration": 1.5102743003647667e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416022650165805,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.630889453830248,
+ -4.24826384886561,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.85834138221644,
+ -10.575604752497926,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.22241397295829,
+ 4.475349282448898,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 458,
+ "timestamp": 1739683979.5330064,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.782834357121825,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999986480125664,
+ "acceleration": 1.5102743003647667e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416022650165805,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 459,
+ "timestamp": 1739683979.5530064,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.782834357121825,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999986480125664,
+ "acceleration": 1.5102743003647667e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416022650165805,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 460,
+ "timestamp": 1739683979.5730064,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.782834357121825,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999986480125664,
+ "acceleration": 1.5102743003647667e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416022650165805,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 461,
+ "timestamp": 1739683979.6230063,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 13.892832946393135,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999879785002528,
+ "acceleration": 1.3414988497439939e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160201175759366,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.5885099867078294,
+ -4.369262641934713,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.828902875657432,
+ -10.62507984361051,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.230080388533128,
+ 4.5365283335379765,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 462,
+ "timestamp": 1739683979.6430063,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.892832946393135,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999879785002528,
+ "acceleration": 1.3414988497439939e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160201175759366,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 463,
+ "timestamp": 1739683979.6630063,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.892832946393135,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999879785002528,
+ "acceleration": 1.3414988497439939e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160201175759366,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 464,
+ "timestamp": 1739683979.6830063,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 9.892832946393135,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999879785002528,
+ "acceleration": 1.3414988497439939e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160201175759366,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.546130519585411,
+ -4.490261435003816,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.799464369098424,
+ -10.674554934723096,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.237746804107967,
+ 4.597707384627055,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 465,
+ "timestamp": 1739683979.7330062,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.002831693236965,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999893245169746,
+ "acceleration": 1.1927278882162273e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160178879939362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 466,
+ "timestamp": 1739683979.7530062,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.002831693236965,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999893245169746,
+ "acceleration": 1.1927278882162273e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160178879939362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 467,
+ "timestamp": 1739683979.7730062,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.002831693236965,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999893245169746,
+ "acceleration": 1.1927278882162273e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160178879939362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 468,
+ "timestamp": 1739683979.7830062,
+ "objects": [
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.5037510524629925,
+ -4.611260228072919,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.770025862539416,
+ -10.724030025835681,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.245413219682806,
+ 4.658886435716134,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 469,
+ "timestamp": 1739683979.8130062,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.112830579308506,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999905076747138,
+ "acceleration": 1.0592662222252969e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160158851205654,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 470,
+ "timestamp": 1739683979.8330061,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.112830579308506,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999905076747138,
+ "acceleration": 1.0592662222252969e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160158851205654,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 471,
+ "timestamp": 1739683979.8530061,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.112830579308506,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999905076747138,
+ "acceleration": 1.0592662222252969e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160158851205654,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 472,
+ "timestamp": 1739683979.893006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.112830579308506,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999905076747138,
+ "acceleration": 1.0592662222252969e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160158851205654,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.461371585340574,
+ -4.732259021142022,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.740587355980408,
+ -10.773505116948266,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.253079635257645,
+ 4.720065486805213,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 473,
+ "timestamp": 1739683979.913006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.112830579308506,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999905076747138,
+ "acceleration": 1.0592662222252969e-05,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160158851205654,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 474,
+ "timestamp": 1739683979.943006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.22282958521348,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999915268142721,
+ "acceleration": 9.420985700170359e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160141245814676,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 475,
+ "timestamp": 1739683979.963006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.22282958521348,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999915268142721,
+ "acceleration": 9.420985700170359e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160141245814676,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 476,
+ "timestamp": 1739683979.983006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.22282958521348,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999915268142721,
+ "acceleration": 9.420985700170359e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160141245814676,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.4189921182181555,
+ -4.853257814211125,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.7111488494214,
+ -10.822980208060851,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.260746050832484,
+ 4.781244537894292,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 255,
+ 0
+ ],
+ "state": "YELLOW"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 477,
+ "timestamp": 1739683979.993006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.22282958521348,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999915268142721,
+ "acceleration": 9.420985700170359e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160141245814676,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 478,
+ "timestamp": 1739683980.013006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.22282958521348,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999915268142721,
+ "acceleration": 9.420985700170359e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160141245814676,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 479,
+ "timestamp": 1739683980.043006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.332828700076734,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999924560069234,
+ "acceleration": 8.408142391225226e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416012608101512,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 480,
+ "timestamp": 1739683980.063006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.332828700076734,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999924560069234,
+ "acceleration": 8.408142391225226e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416012608101512,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 481,
+ "timestamp": 1739683980.083006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.332828700076734,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999924560069234,
+ "acceleration": 8.408142391225226e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416012608101512,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.376612651095737,
+ -4.974256607280228,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.6817103428623925,
+ -10.872455299173437,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.268412466407323,
+ 4.842423588983371,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 482,
+ "timestamp": 1739683980.093006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.332828700076734,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999924560069234,
+ "acceleration": 8.408142391225226e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416012608101512,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 483,
+ "timestamp": 1739683980.1230059,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.332828700076734,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999924560069234,
+ "acceleration": 8.408142391225226e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416012608101512,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 484,
+ "timestamp": 1739683980.1430058,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.442827911071634,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999932747348437,
+ "acceleration": 7.486682239044029e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160112254626087,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 485,
+ "timestamp": 1739683980.1830058,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.442827911071634,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999932747348437,
+ "acceleration": 7.486682239044029e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160112254626087,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.3342331839733186,
+ -5.095255400349331,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.652271836303385,
+ -10.921930390286022,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.276078881982162,
+ 4.9036026400724495,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 486,
+ "timestamp": 1739683980.2030058,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.442827911071634,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999932747348437,
+ "acceleration": 7.486682239044029e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160112254626087,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 487,
+ "timestamp": 1739683980.2330058,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.442827911071634,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999932747348437,
+ "acceleration": 7.486682239044029e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160112254626087,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 488,
+ "timestamp": 1739683980.2530057,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.552827204862576,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999939675061784,
+ "acceleration": 6.676771251101776e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160100071952761,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 489,
+ "timestamp": 1739683980.2630057,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.552827204862576,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999939675061784,
+ "acceleration": 6.676771251101776e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160100071952761,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 490,
+ "timestamp": 1739683980.2830057,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.552827204862576,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999939675061784,
+ "acceleration": 6.676771251101776e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160100071952761,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.2918537168509,
+ -5.216254193418434,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.622833329744377,
+ -10.971405481398607,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.283745297557001,
+ 4.964781691161528,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 491,
+ "timestamp": 1739683980.3130057,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.552827204862576,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999939675061784,
+ "acceleration": 6.676771251101776e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160100071952761,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 492,
+ "timestamp": 1739683980.3330057,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.552827204862576,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999939675061784,
+ "acceleration": 6.676771251101776e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160100071952761,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 493,
+ "timestamp": 1739683980.3530056,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.552827204862576,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999939675061784,
+ "acceleration": 6.676771251101776e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160100071952761,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 494,
+ "timestamp": 1739683980.3930056,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.662826572701748,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999994609987776,
+ "acceleration": 5.9875201831594005e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416008976351389,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.2494742497284816,
+ -5.337252986487537,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.593394823185369,
+ -11.020880572511192,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.29141171313184,
+ 5.025960742250607,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 495,
+ "timestamp": 1739683980.4130056,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.662826572701748,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999994609987776,
+ "acceleration": 5.9875201831594005e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416008976351389,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 496,
+ "timestamp": 1739683980.4330056,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.662826572701748,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999994609987776,
+ "acceleration": 5.9875201831594005e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416008976351389,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 497,
+ "timestamp": 1739683980.4530056,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.662826572701748,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999994609987776,
+ "acceleration": 5.9875201831594005e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416008976351389,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 498,
+ "timestamp": 1739683980.4730055,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.77282601105957,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999952187605532,
+ "acceleration": 5.347398191635211e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160080203386544,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 499,
+ "timestamp": 1739683980.5130055,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.77282601105957,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999952187605532,
+ "acceleration": 5.347398191635211e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160080203386544,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.207094782606063,
+ -5.45825177955664,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.563956316626361,
+ -11.070355663623777,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.299078128706679,
+ 5.087139793339686,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 500,
+ "timestamp": 1739683980.5330055,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.77282601105957,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999952187605532,
+ "acceleration": 5.347398191635211e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160080203386544,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 501,
+ "timestamp": 1739683980.5530055,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.77282601105957,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999952187605532,
+ "acceleration": 5.347398191635211e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160080203386544,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 502,
+ "timestamp": 1739683980.5830054,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.882825512502631,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999957542307961,
+ "acceleration": 4.7437565780517055e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160071144846626,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.1647153154836447,
+ -5.579250572625743,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.534517810067353,
+ -11.119830754736363,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.306744544281518,
+ 5.148318844428765,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 503,
+ "timestamp": 1739683980.6330054,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.882825512502631,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999957542307961,
+ "acceleration": 4.7437565780517055e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160071144846626,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 504,
+ "timestamp": 1739683980.6530054,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.882825512502631,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999957542307961,
+ "acceleration": 4.7437565780517055e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160071144846626,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 505,
+ "timestamp": 1739683980.6730053,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.882825512502631,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999957542307961,
+ "acceleration": 4.7437565780517055e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160071144846626,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 506,
+ "timestamp": 1739683980.6930053,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 14.992825067810228,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999962052096657,
+ "acceleration": 4.214200719387939e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416006317704864,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.1223358483612262,
+ -5.700249365694846,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.505079303508345,
+ -11.169305845848948,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.314410959856357,
+ 5.209497895517844,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 507,
+ "timestamp": 1739683980.7230053,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.992825067810228,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999962052096657,
+ "acceleration": 4.214200719387939e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416006317704864,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 508,
+ "timestamp": 1739683980.7430053,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.992825067810228,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999962052096657,
+ "acceleration": 4.214200719387939e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416006317704864,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 509,
+ "timestamp": 1739683980.7630053,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.992825067810228,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999962052096657,
+ "acceleration": 4.214200719387939e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416006317704864,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 510,
+ "timestamp": 1739683980.7830052,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.992825067810228,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999962052096657,
+ "acceleration": 4.214200719387939e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416006317704864,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.0799563812388078,
+ -5.821248158763949,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.475640796949337,
+ -11.218780936961533,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.322077375431196,
+ 5.2706769466069225,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 511,
+ "timestamp": 1739683980.7930052,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 10.992825067810228,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999962052096657,
+ "acceleration": 4.214200719387939e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416006317704864,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 512,
+ "timestamp": 1739683980.8130052,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 15.102824671678192,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999996625434357,
+ "acceleration": 3.765374637088037e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160056466482496,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 513,
+ "timestamp": 1739683980.8330052,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.102824671678192,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999996625434357,
+ "acceleration": 3.765374637088037e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160056466482496,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 514,
+ "timestamp": 1739683980.8530052,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.102824671678192,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999996625434357,
+ "acceleration": 3.765374637088037e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160056466482496,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 515,
+ "timestamp": 1739683980.8730052,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.102824671678192,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999996625434357,
+ "acceleration": 3.765374637088037e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160056466482496,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 516,
+ "timestamp": 1739683980.8830051,
+ "objects": [
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.0375769141163893,
+ -5.942246951833052,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.446202290390329,
+ -11.268256028074118,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.329743791006035,
+ 5.331855997696001,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 517,
+ "timestamp": 1739683980.9030051,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.102824671678192,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999996625434357,
+ "acceleration": 3.765374637088037e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160056466482496,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 518,
+ "timestamp": 1739683980.923005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 15.212824318472157,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999969878242515,
+ "acceleration": 3.349198373636675e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160050213538592,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 519,
+ "timestamp": 1739683980.943005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.212824318472157,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999969878242515,
+ "acceleration": 3.349198373636675e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160050213538592,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 520,
+ "timestamp": 1739683980.963005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.212824318472157,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999969878242515,
+ "acceleration": 3.349198373636675e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160050213538592,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 521,
+ "timestamp": 1739683980.983005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.212824318472157,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999969878242515,
+ "acceleration": 3.349198373636675e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160050213538592,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.9951974469939706,
+ -6.063245744902155,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.416763783831321,
+ -11.317731119186703,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.337410206580874,
+ 5.39303504878508,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -4.6668255116983435,
+ -5.674596992018593,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 522,
+ "timestamp": 1739683981.013005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.212824318472157,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999969878242515,
+ "acceleration": 3.349198373636675e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160050213538592,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 523,
+ "timestamp": 1739683981.023005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 15.322824003442427,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999973148032252,
+ "acceleration": 2.989287238963634e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416004482117659,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 524,
+ "timestamp": 1739683981.053005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.322824003442427,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999973148032252,
+ "acceleration": 2.989287238963634e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416004482117659,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 525,
+ "timestamp": 1739683981.073005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.322824003442427,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999973148032252,
+ "acceleration": 2.989287238963634e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416004482117659,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 526,
+ "timestamp": 1739683981.083005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.322824003442427,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999973148032252,
+ "acceleration": 2.989287238963634e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416004482117659,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.952817979871552,
+ -6.184244537971258,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.387325277272313,
+ -11.367206210299289,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.345076622155712,
+ 5.454214099874159,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -4.587618569165601,
+ -5.624402375633121,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 527,
+ "timestamp": 1739683981.093005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.322824003442427,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999973148032252,
+ "acceleration": 2.989287238963634e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416004482117659,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 528,
+ "timestamp": 1739683981.123005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.322824003442427,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999973148032252,
+ "acceleration": 2.989287238963634e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416004482117659,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 529,
+ "timestamp": 1739683981.143005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 15.432823722607523,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999976062531258,
+ "acceleration": 2.6647952965919153e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160039955729165,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 530,
+ "timestamp": 1739683981.1630049,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.432823722607523,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999976062531258,
+ "acceleration": 2.6647952965919153e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160039955729165,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 531,
+ "timestamp": 1739683981.1830049,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.432823722607523,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999976062531258,
+ "acceleration": 2.6647952965919153e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160039955729165,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.9104385127491332,
+ -6.305243331040361,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.357886770713305,
+ -11.416681301411874,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.352743037730551,
+ 5.515393150963238,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -4.508411626632858,
+ -5.574207759247649,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 532,
+ "timestamp": 1739683981.2130048,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.432823722607523,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999976062531258,
+ "acceleration": 2.6647952965919153e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160039955729165,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 533,
+ "timestamp": 1739683981.2330048,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.432823722607523,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999976062531258,
+ "acceleration": 2.6647952965919153e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160039955729165,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 534,
+ "timestamp": 1739683981.2530048,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 15.542823472254325,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999978660695455,
+ "acceleration": 2.3755597365893166e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160035618954406,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 535,
+ "timestamp": 1739683981.2830048,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.542823472254325,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999978660695455,
+ "acceleration": 2.3755597365893166e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160035618954406,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.8680590456267145,
+ -6.426242124109464,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.328448264154297,
+ -11.466156392524459,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.36040945330539,
+ 5.576572202052317,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -4.429204684100116,
+ -5.524013142862177,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 536,
+ "timestamp": 1739683981.3030047,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.542823472254325,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999978660695455,
+ "acceleration": 2.3755597365893166e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160035618954406,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 537,
+ "timestamp": 1739683981.3330047,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.542823472254325,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999978660695455,
+ "acceleration": 2.3755597365893166e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160035618954406,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 538,
+ "timestamp": 1739683981.3530047,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 15.652823248909382,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999980953351613,
+ "acceleration": 2.1178818705447355e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416003175288589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 539,
+ "timestamp": 1739683981.3630047,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.652823248909382,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999980953351613,
+ "acceleration": 2.1178818705447355e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416003175288589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 540,
+ "timestamp": 1739683981.3830047,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.652823248909382,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999980953351613,
+ "acceleration": 2.1178818705447355e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416003175288589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.8256795785042959,
+ -6.547240917178567,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.2990097575952895,
+ -11.515631483637044,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.36807586888023,
+ 5.637751253141396,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -4.349997741567373,
+ -5.473818526476705,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 541,
+ "timestamp": 1739683981.4030046,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.652823248909382,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999980953351613,
+ "acceleration": 2.1178818705447355e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416003175288589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 542,
+ "timestamp": 1739683981.4230046,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.652823248909382,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999980953351613,
+ "acceleration": 2.1178818705447355e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416003175288589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 543,
+ "timestamp": 1739683981.4430046,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.652823248909382,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999980953351613,
+ "acceleration": 2.1178818705447355e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416003175288589,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 544,
+ "timestamp": 1739683981.4730046,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 15.76282304928878,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999982979031119,
+ "acceleration": 1.8904850894174707e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002834141338,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 545,
+ "timestamp": 1739683981.5130045,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.76282304928878,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999982979031119,
+ "acceleration": 1.8904850894174707e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002834141338,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.7833001113818772,
+ -6.66823971024767,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.2695712510362815,
+ -11.56510657474963,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.375742284455068,
+ 5.698930304230474,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -4.27079079903463,
+ -5.423623910091234,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 546,
+ "timestamp": 1739683981.5330045,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.76282304928878,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999982979031119,
+ "acceleration": 1.8904850894174707e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002834141338,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 547,
+ "timestamp": 1739683981.5530045,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.76282304928878,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999982979031119,
+ "acceleration": 1.8904850894174707e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002834141338,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 548,
+ "timestamp": 1739683981.5830045,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 15.87282287103665,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999998479023041,
+ "acceleration": 1.6894184988736072e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002532720216,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.7409206442594585,
+ -6.789238503316773,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.240132744477274,
+ -11.614581665862215,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.383408700029907,
+ 5.760109355319553,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -4.191583856501888,
+ -5.373429293705762,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 549,
+ "timestamp": 1739683981.6230044,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.87282287103665,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999998479023041,
+ "acceleration": 1.6894184988736072e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002532720216,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 550,
+ "timestamp": 1739683981.6430044,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.87282287103665,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999998479023041,
+ "acceleration": 1.6894184988736072e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002532720216,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 551,
+ "timestamp": 1739683981.6630044,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.87282287103665,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999998479023041,
+ "acceleration": 1.6894184988736072e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002532720216,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 552,
+ "timestamp": 1739683981.7130044,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 15.982822711669902,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999986392263398,
+ "acceleration": 1.5097627328319874e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160022632137523,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.6985411771370398,
+ -6.910237296385876,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.210694237918266,
+ -11.6640567569748,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.391075115604746,
+ 5.821288406408632,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -4.112376913969145,
+ -5.32323467732029,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 553,
+ "timestamp": 1739683981.7330043,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.982822711669902,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999986392263398,
+ "acceleration": 1.5097627328319874e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160022632137523,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 554,
+ "timestamp": 1739683981.7530043,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.982822711669902,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999986392263398,
+ "acceleration": 1.5097627328319874e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160022632137523,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 555,
+ "timestamp": 1739683981.7730043,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 11.982822711669902,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999986392263398,
+ "acceleration": 1.5097627328319874e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160022632137523,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 556,
+ "timestamp": 1739683981.8230042,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 16.09282256966553,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999987899306737,
+ "acceleration": 1.3502243607077524e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002024831236,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.7180777816195207,
+ -7.0369458132387495,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.181255731359258,
+ -11.713531848087385,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.398741531179585,
+ 5.882467457497711,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -4.033169971436402,
+ -5.273040060934818,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 557,
+ "timestamp": 1739683981.8430042,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.092822569665529,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999987899306737,
+ "acceleration": 1.3502243607077524e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002024831236,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 558,
+ "timestamp": 1739683981.8630042,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.092822569665529,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999987899306737,
+ "acceleration": 1.3502243607077524e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416002024831236,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 559,
+ "timestamp": 1739683981.9030042,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 16.20282244339892,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999989240239984,
+ "acceleration": 1.2006827967425693e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160018005831813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.7376143861020017,
+ -7.163654330091623,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.15181722480025,
+ -11.76300693919997,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.406407946754424,
+ 5.94364650858679,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.9539630289036602,
+ -5.222845444549346,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 560,
+ "timestamp": 1739683981.9230042,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.202822443398919,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999989240239984,
+ "acceleration": 1.2006827967425693e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160018005831813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 561,
+ "timestamp": 1739683981.9530041,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.202822443398919,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999989240239984,
+ "acceleration": 1.2006827967425693e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160018005831813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 562,
+ "timestamp": 1739683981.973004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.202822443398919,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999989240239984,
+ "acceleration": 1.2006827967425693e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160018005831813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 563,
+ "timestamp": 1739683981.993004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.202822443398919,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999989240239984,
+ "acceleration": 1.2006827967425693e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160018005831813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.7571509905844827,
+ -7.290362846944496,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.122378718241242,
+ -11.812482030312555,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.414074362329263,
+ 6.004825559675869,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.874756086370918,
+ -5.172650828163874,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 564,
+ "timestamp": 1739683982.013004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 16.312822330961925,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999990419949696,
+ "acceleration": 1.0677180359297544e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416001601052309,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 565,
+ "timestamp": 1739683982.053004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.312822330961925,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999990419949696,
+ "acceleration": 1.0677180359297544e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416001601052309,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 566,
+ "timestamp": 1739683982.063004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.312822330961925,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999990419949696,
+ "acceleration": 1.0677180359297544e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416001601052309,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 567,
+ "timestamp": 1739683982.083004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.312822330961925,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999990419949696,
+ "acceleration": 1.0677180359297544e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416001601052309,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.7766875950669636,
+ -7.417071363797369,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.092940211682234,
+ -11.86195712142514,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.421740777904102,
+ 6.0660046107649475,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.795549143838176,
+ -5.1224562117784025,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 568,
+ "timestamp": 1739683982.103004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.312822330961925,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999990419949696,
+ "acceleration": 1.0677180359297544e-06,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416001601052309,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 569,
+ "timestamp": 1739683982.123004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 16.422822230475685,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999991427430633,
+ "acceleration": 9.509526656681366e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160014255115,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 570,
+ "timestamp": 1739683982.143004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.422822230475685,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999991427430633,
+ "acceleration": 9.509526656681366e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160014255115,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 571,
+ "timestamp": 1739683982.153004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.422822230475685,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999991427430633,
+ "acceleration": 9.509526656681366e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160014255115,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 572,
+ "timestamp": 1739683982.183004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.422822230475685,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999991427430633,
+ "acceleration": 9.509526656681366e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160014255115,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.7962241995494446,
+ -7.543779880650242,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.063501705123226,
+ -11.911432212537726,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.42940719347894,
+ 6.127183661854026,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.7163422013054337,
+ -5.072261595392931,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 573,
+ "timestamp": 1739683982.203004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.422822230475685,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999991427430633,
+ "acceleration": 9.509526656681366e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160014255115,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 574,
+ "timestamp": 1739683982.2230039,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.422822230475685,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999991427430633,
+ "acceleration": 9.509526656681366e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160014255115,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 575,
+ "timestamp": 1739683982.2430038,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 16.53282214063585,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999992339815582,
+ "acceleration": 8.508702435960913e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160012755983337,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 576,
+ "timestamp": 1739683982.2530038,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.53282214063585,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999992339815582,
+ "acceleration": 8.508702435960913e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160012755983337,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 577,
+ "timestamp": 1739683982.2830038,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.53282214063585,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999992339815582,
+ "acceleration": 8.508702435960913e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160012755983337,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.8157608040319255,
+ -7.6704883975031155,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.034063198564218,
+ -11.96090730365031,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.43707360905378,
+ 6.188362712943105,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.6371352587726915,
+ -5.022066979007459,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 578,
+ "timestamp": 1739683982.3030038,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.53282214063585,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999992339815582,
+ "acceleration": 8.508702435960913e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160012755983337,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 579,
+ "timestamp": 1739683982.3230038,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.53282214063585,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999992339815582,
+ "acceleration": 8.508702435960913e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160012755983337,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 580,
+ "timestamp": 1739683982.3330038,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.53282214063585,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999992339815582,
+ "acceleration": 8.508702435960913e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160012755983337,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 581,
+ "timestamp": 1739683982.3630037,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 16.64282206058823,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999993179676544,
+ "acceleration": 7.601394162448649e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160011398354508,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 582,
+ "timestamp": 1739683982.3830037,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.64282206058823,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999993179676544,
+ "acceleration": 7.601394162448649e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160011398354508,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.8352974085144065,
+ -7.797196914355989,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.00462469200521,
+ -12.010382394762896,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.444740024628619,
+ 6.249541764032184,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.5579283162399493,
+ -4.971872362621987,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 583,
+ "timestamp": 1739683982.4030037,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.64282206058823,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999993179676544,
+ "acceleration": 7.601394162448649e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160011398354508,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 584,
+ "timestamp": 1739683982.4230037,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.64282206058823,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999993179676544,
+ "acceleration": 7.601394162448649e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160011398354508,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 585,
+ "timestamp": 1739683982.4430037,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.64282206058823,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999993179676544,
+ "acceleration": 7.601394162448649e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160011398354508,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 586,
+ "timestamp": 1739683982.4630036,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 16.752821989341676,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999993927619422,
+ "acceleration": 6.767967464238467e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160010148641378,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 587,
+ "timestamp": 1739683982.4930036,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.752821989341676,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999993927619422,
+ "acceleration": 6.767967464238467e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160010148641378,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.8548340129968874,
+ -7.923905431208862,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.975186185446202,
+ -12.059857485875481,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.452406440203458,
+ 6.310720815121263,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.478721373707207,
+ -4.921677746236515,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 588,
+ "timestamp": 1739683982.5130036,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.752821989341676,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999993927619422,
+ "acceleration": 6.767967464238467e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160010148641378,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 589,
+ "timestamp": 1739683982.5430036,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.752821989341676,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999993927619422,
+ "acceleration": 6.767967464238467e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160010148641378,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 590,
+ "timestamp": 1739683982.5830035,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 16.8628219259083,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999459354008,
+ "acceleration": 6.025766140504984e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160009035702362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.8743706174793684,
+ -8.050613948061736,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.945747678887194,
+ -12.109332576988066,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.460072855778296,
+ 6.371899866210342,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.399514431174465,
+ -4.871483129851043,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 591,
+ "timestamp": 1739683982.6030035,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.8628219259083,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999459354008,
+ "acceleration": 6.025766140504984e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160009035702362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 592,
+ "timestamp": 1739683982.6230035,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.8628219259083,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999459354008,
+ "acceleration": 6.025766140504984e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160009035702362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 593,
+ "timestamp": 1739683982.6430035,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.8628219259083,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999459354008,
+ "acceleration": 6.025766140504984e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160009035702362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 594,
+ "timestamp": 1739683982.6630034,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.8628219259083,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999459354008,
+ "acceleration": 6.025766140504984e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160009035702362,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 595,
+ "timestamp": 1739683982.6730034,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 16.97282186943127,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999995186433311,
+ "acceleration": 5.364957399445203e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000804481241,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 596,
+ "timestamp": 1739683982.7030034,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.972821869431272,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999995186433311,
+ "acceleration": 5.364957399445203e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000804481241,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.8939072219618494,
+ -8.17732246491461,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.916309172328186,
+ -12.158807668100652,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.467739271353135,
+ 6.4330789172994205,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.3203074886417228,
+ -4.821288513465571,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 597,
+ "timestamp": 1739683982.7230034,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.972821869431272,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999995186433311,
+ "acceleration": 5.364957399445203e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000804481241,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 598,
+ "timestamp": 1739683982.7430034,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.972821869431272,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999995186433311,
+ "acceleration": 5.364957399445203e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000804481241,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 599,
+ "timestamp": 1739683982.7630033,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 12.972821869431272,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999995186433311,
+ "acceleration": 5.364957399445203e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000804481241,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 600,
+ "timestamp": 1739683982.8030033,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 17.08282181908753,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999995708835826,
+ "acceleration": 4.776998527855625e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160007162587288,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.9134438264443303,
+ -8.304030981767484,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.8868706657691785,
+ -12.208282759213237,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.475405686927974,
+ 6.494257968388499,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.2411005461089806,
+ -4.7710938970801,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 601,
+ "timestamp": 1739683982.8130033,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.082821819087531,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999995708835826,
+ "acceleration": 4.776998527855625e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160007162587288,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 602,
+ "timestamp": 1739683982.8330033,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.082821819087531,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999995708835826,
+ "acceleration": 4.776998527855625e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160007162587288,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 603,
+ "timestamp": 1739683982.8630033,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.082821819087531,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999995708835826,
+ "acceleration": 4.776998527855625e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160007162587288,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 604,
+ "timestamp": 1739683982.8930032,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 17.19282177429405,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996184144927,
+ "acceleration": 4.257892541326136e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160006385252322,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.9329804309268113,
+ -8.430739498620358,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.857432159210171,
+ -12.257757850325822,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.483072102502813,
+ 6.555437019477578,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.1618936035762384,
+ -4.720899280694628,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 605,
+ "timestamp": 1739683982.9130032,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.19282177429405,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996184144927,
+ "acceleration": 4.257892541326136e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160006385252322,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 606,
+ "timestamp": 1739683982.9330032,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.19282177429405,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996184144927,
+ "acceleration": 4.257892541326136e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160006385252322,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 607,
+ "timestamp": 1739683982.9530032,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.19282177429405,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996184144927,
+ "acceleration": 4.257892541326136e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160006385252322,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 608,
+ "timestamp": 1739683982.9730031,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.19282177429405,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996184144927,
+ "acceleration": 4.257892541326136e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160006385252322,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 609,
+ "timestamp": 1739683983.0030031,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 17.30282173433211,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996593838267,
+ "acceleration": 3.7871765429242643e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005677992374,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.9525170354092922,
+ -8.557448015473232,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.827993652651163,
+ -12.307232941438407,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.490738518077652,
+ 6.616616070566657,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.082686661043496,
+ -4.670704664309156,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 610,
+ "timestamp": 1739683983.023003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.30282173433211,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996593838267,
+ "acceleration": 3.7871765429242643e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005677992374,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 611,
+ "timestamp": 1739683983.043003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.30282173433211,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996593838267,
+ "acceleration": 3.7871765429242643e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005677992374,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 612,
+ "timestamp": 1739683983.063003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.30282173433211,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996593838267,
+ "acceleration": 3.7871765429242643e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005677992374,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 613,
+ "timestamp": 1739683983.083003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.30282173433211,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996593838267,
+ "acceleration": 3.7871765429242643e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005677992374,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.9720536398917732,
+ -8.684156532326107,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.798555146092155,
+ -12.356708032550992,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.498404933652491,
+ 6.677795121655736,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -3.003479718510754,
+ -4.620510047923684,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 614,
+ "timestamp": 1739683983.103003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.30282173433211,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996593838267,
+ "acceleration": 3.7871765429242643e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005677992374,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 615,
+ "timestamp": 1739683983.123003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 17.412821698738345,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996967289908,
+ "acceleration": 3.380020120458127e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005068368678,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 616,
+ "timestamp": 1739683983.143003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.412821698738345,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996967289908,
+ "acceleration": 3.380020120458127e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005068368678,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 617,
+ "timestamp": 1739683983.153003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.412821698738345,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996967289908,
+ "acceleration": 3.380020120458127e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005068368678,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 618,
+ "timestamp": 1739683983.173003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.412821698738345,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996967289908,
+ "acceleration": 3.380020120458127e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005068368678,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 619,
+ "timestamp": 1739683983.193003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.412821698738345,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996967289908,
+ "acceleration": 3.380020120458127e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005068368678,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 1.9915902443742541,
+ -8.81086504917898,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.769116639533147,
+ -12.406183123663578,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.50607134922733,
+ 6.738974172744815,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.924272775978012,
+ -4.570315431538212,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 620,
+ "timestamp": 1739683983.213003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.412821698738345,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999996967289908,
+ "acceleration": 3.380020120458127e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160005068368678,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 621,
+ "timestamp": 1739683983.233003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 17.522821667020086,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997296421995,
+ "acceleration": 3.0096708480975565e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004512672634,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 622,
+ "timestamp": 1739683983.253003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.522821667020086,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997296421995,
+ "acceleration": 3.0096708480975565e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004512672634,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 623,
+ "timestamp": 1739683983.2730029,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.522821667020086,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997296421995,
+ "acceleration": 3.0096708480975565e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004512672634,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 624,
+ "timestamp": 1739683983.2930028,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.522821667020086,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997296421995,
+ "acceleration": 3.0096708480975565e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004512672634,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.011126848856735,
+ -8.937573566031855,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.739678132974139,
+ -12.455658214776163,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.513737764802169,
+ 6.8001532238338935,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.8450658334452696,
+ -4.52012081515274,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 625,
+ "timestamp": 1739683983.3130028,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.522821667020086,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997296421995,
+ "acceleration": 3.0096708480975565e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004512672634,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 626,
+ "timestamp": 1739683983.3330028,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 17.632821638744357,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997589867737,
+ "acceleration": 2.6830368043961883e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004022924084,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 627,
+ "timestamp": 1739683983.3430028,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.632821638744357,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997589867737,
+ "acceleration": 2.6830368043961883e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004022924084,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 628,
+ "timestamp": 1739683983.3630028,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.632821638744357,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997589867737,
+ "acceleration": 2.6830368043961883e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004022924084,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 629,
+ "timestamp": 1739683983.3930027,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.632821638744357,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997589867737,
+ "acceleration": 2.6830368043961883e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004022924084,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.030663453339216,
+ -9.064282082884729,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.710239626415131,
+ -12.505133305888748,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.521404180377008,
+ 6.861332274922972,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.7658588909125275,
+ -4.4699261987672685,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 630,
+ "timestamp": 1739683983.4130027,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.632821638744357,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997589867737,
+ "acceleration": 2.6830368043961883e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004022924084,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 631,
+ "timestamp": 1739683983.4330027,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.632821638744357,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997589867737,
+ "acceleration": 2.6830368043961883e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160004022924084,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 632,
+ "timestamp": 1739683983.4630027,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 17.742821613529106,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997851407256,
+ "acceleration": 2.391824497904871e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160003586276818,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 633,
+ "timestamp": 1739683983.4830027,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.742821613529106,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997851407256,
+ "acceleration": 2.391824497904871e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160003586276818,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.050200057821697,
+ -9.190990599737603,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.680801119856123,
+ -12.554608397001333,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.529070595951847,
+ 6.922511326012051,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.6866519483797853,
+ -4.419731582381797,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 634,
+ "timestamp": 1739683983.5030026,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.742821613529106,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997851407256,
+ "acceleration": 2.391824497904871e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160003586276818,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 635,
+ "timestamp": 1739683983.5130026,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.742821613529106,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999997851407256,
+ "acceleration": 2.391824497904871e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160003586276818,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 636,
+ "timestamp": 1739683983.5530026,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 17.852821591084332,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998087029006,
+ "acceleration": 2.1320992221740553e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160003197106011,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 637,
+ "timestamp": 1739683983.5930026,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.852821591084332,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998087029006,
+ "acceleration": 2.1320992221740553e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160003197106011,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.069736662304178,
+ -9.317699116590477,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.651362613297115,
+ -12.604083488113918,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.536737011526686,
+ 6.98369037710113,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.607445005847043,
+ -4.369536965996325,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 638,
+ "timestamp": 1739683983.6130025,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.852821591084332,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998087029006,
+ "acceleration": 2.1320992221740553e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160003197106011,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 639,
+ "timestamp": 1739683983.6430025,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.852821591084332,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998087029006,
+ "acceleration": 2.1320992221740553e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160003197106011,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 640,
+ "timestamp": 1739683983.6730025,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 17.96282157101895,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999828820364,
+ "acceleration": 1.8988887690030154e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002846500844,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 641,
+ "timestamp": 1739683983.6930025,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.96282157101895,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999828820364,
+ "acceleration": 1.8988887690030154e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002846500844,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.089273266786659,
+ -9.444407633443351,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.621924106738107,
+ -12.653558579226504,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.544403427101525,
+ 7.044869428190209,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.528238063314301,
+ -4.319342349610853,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 642,
+ "timestamp": 1739683983.7130024,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.96282157101895,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999828820364,
+ "acceleration": 1.8988887690030154e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002846500844,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 643,
+ "timestamp": 1739683983.7330024,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.96282157101895,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999828820364,
+ "acceleration": 1.8988887690030154e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002846500844,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 644,
+ "timestamp": 1739683983.7430024,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.96282157101895,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999828820364,
+ "acceleration": 1.8988887690030154e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002846500844,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 645,
+ "timestamp": 1739683983.7630024,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 13.96282157101895,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999828820364,
+ "acceleration": 1.8988887690030154e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002846500844,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 646,
+ "timestamp": 1739683983.7830024,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 18.07282155311635,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998474065432,
+ "acceleration": 1.6987860351758144e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000254715299,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.10880987126914,
+ -9.571116150296225,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.592485600179099,
+ -12.703033670339089,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.552069842676364,
+ 7.106048479279288,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.4490311207815587,
+ -4.269147733225381,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 647,
+ "timestamp": 1739683983.8030024,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.072821553116349,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998474065432,
+ "acceleration": 1.6987860351758144e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000254715299,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 648,
+ "timestamp": 1739683983.8230023,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.072821553116349,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998474065432,
+ "acceleration": 1.6987860351758144e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000254715299,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 649,
+ "timestamp": 1739683983.8530023,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.072821553116349,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998474065432,
+ "acceleration": 1.6987860351758144e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000254715299,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 650,
+ "timestamp": 1739683983.8830023,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 18.182821537157157,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999863968918,
+ "acceleration": 1.5143409054507728e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002270590641,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.128346475751621,
+ -9.6978246671491,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.563047093620091,
+ -12.752508761451674,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.559736258251203,
+ 7.167227530368367,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.3698241782488165,
+ -4.218953116839909,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 651,
+ "timestamp": 1739683983.9030023,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.182821537157157,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999863968918,
+ "acceleration": 1.5143409054507728e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002270590641,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 652,
+ "timestamp": 1739683983.9230022,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.182821537157157,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999863968918,
+ "acceleration": 1.5143409054507728e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002270590641,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 653,
+ "timestamp": 1739683983.9530022,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.182821537157157,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999863968918,
+ "acceleration": 1.5143409054507728e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002270590641,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 654,
+ "timestamp": 1739683983.9830022,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.182821537157157,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.999999863968918,
+ "acceleration": 1.5143409054507728e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002270590641,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.147883080234102,
+ -9.824533184001973,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.533608587061083,
+ -12.801983852564259,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.567402673826042,
+ 7.228406581457445,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.2906172357160743,
+ -4.168758500454437,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 655,
+ "timestamp": 1739683984.0030022,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 18.292821522911815,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998785809372,
+ "acceleration": 1.3500824053158667e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002024142502,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 656,
+ "timestamp": 1739683984.0230021,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.292821522911815,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998785809372,
+ "acceleration": 1.3500824053158667e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002024142502,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 657,
+ "timestamp": 1739683984.073002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.292821522911815,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998785809372,
+ "acceleration": 1.3500824053158667e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002024142502,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 658,
+ "timestamp": 1739683984.093002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.292821522911815,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998785809372,
+ "acceleration": 1.3500824053158667e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160002024142502,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.1674196847165828,
+ -9.951241700854847,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.5041700805020755,
+ -12.851458943676844,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.57506908940088,
+ 7.289585632546524,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.211410293183332,
+ -4.118563884068966,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 6.945167635651955,
+ -8.433125964553764,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 659,
+ "timestamp": 1739683984.113002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 18.40282151019591,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998914967657,
+ "acceleration": 1.2051495484888264e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001806715659,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 660,
+ "timestamp": 1739683984.133002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.40282151019591,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998914967657,
+ "acceleration": 1.2051495484888264e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001806715659,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 661,
+ "timestamp": 1739683984.193002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.40282151019591,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999998914967657,
+ "acceleration": 1.2051495484888264e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001806715659,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.1869562891990637,
+ -10.077950217707722,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.4747315739430675,
+ -12.90093403478943,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.58273550497572,
+ 7.350764683635603,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.13220335065059,
+ -4.068369267683494,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 6.95318936666362,
+ -8.34903461820319,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 662,
+ "timestamp": 1739683984.213002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 18.512821498839934,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999031594319,
+ "acceleration": 1.0768684760575908e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000161452813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 663,
+ "timestamp": 1739683984.233002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.512821498839934,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999031594319,
+ "acceleration": 1.0768684760575908e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000161452813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 664,
+ "timestamp": 1739683984.263002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.512821498839934,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999031594319,
+ "acceleration": 1.0768684760575908e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000161452813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 665,
+ "timestamp": 1739683984.293002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.512821498839934,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999031594319,
+ "acceleration": 1.0768684760575908e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000161452813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.2064928936815447,
+ -10.204658734560596,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.44529306738406,
+ -12.950409125902015,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.590401920550558,
+ 7.411943734724682,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -2.052996408117848,
+ -4.018174651298022,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 6.961211097675286,
+ -8.264943271852616,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 666,
+ "timestamp": 1739683984.3030019,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.512821498839934,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999031594319,
+ "acceleration": 1.0768684760575908e-07,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000161452813,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 667,
+ "timestamp": 1739683984.3330019,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 18.6228214886989,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999135640464,
+ "acceleration": 9.611224516259398e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001440987658,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 668,
+ "timestamp": 1739683984.3530018,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.6228214886989,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999135640464,
+ "acceleration": 9.611224516259398e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001440987658,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 669,
+ "timestamp": 1739683984.3630018,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.6228214886989,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999135640464,
+ "acceleration": 9.611224516259398e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001440987658,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 670,
+ "timestamp": 1739683984.3930018,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.6228214886989,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999135640464,
+ "acceleration": 9.611224516259398e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001440987658,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.2260294981640256,
+ -10.33136725141347,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.415854560825052,
+ -12.9998842170146,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.598068336125397,
+ 7.473122785813761,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.9737894655851056,
+ -3.96798003491255,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 6.969232828686952,
+ -8.180851925502042,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 671,
+ "timestamp": 1739683984.4030018,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.6228214886989,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999135640464,
+ "acceleration": 9.611224516259398e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001440987658,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 672,
+ "timestamp": 1739683984.4330018,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 18.73282147965895,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999229468286,
+ "acceleration": 8.577915888707821e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001286166993,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 673,
+ "timestamp": 1739683984.4530017,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.732821479658949,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999229468286,
+ "acceleration": 8.577915888707821e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001286166993,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 674,
+ "timestamp": 1739683984.4630017,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.732821479658949,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999229468286,
+ "acceleration": 8.577915888707821e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001286166993,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 675,
+ "timestamp": 1739683984.4930017,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.732821479658949,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999229468286,
+ "acceleration": 8.577915888707821e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001286166993,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.2455661026465066,
+ -10.458075768266344,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.386416054266044,
+ -13.049359308127185,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.605734751700236,
+ 7.53430183690284,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.8945825230523634,
+ -3.917785418527078,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 6.9772545596986175,
+ -8.096760579151468,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 676,
+ "timestamp": 1739683984.5030017,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.732821479658949,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999229468286,
+ "acceleration": 8.577915888707821e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001286166993,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 677,
+ "timestamp": 1739683984.5330017,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.732821479658949,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999229468286,
+ "acceleration": 8.577915888707821e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001286166993,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 678,
+ "timestamp": 1739683984.5530016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 18.842821471589843,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999312236091,
+ "acceleration": 7.647379685060685e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001146551194,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 679,
+ "timestamp": 1739683984.5730016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.842821471589843,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999312236091,
+ "acceleration": 7.647379685060685e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001146551194,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 680,
+ "timestamp": 1739683984.6030016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.842821471589843,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999312236091,
+ "acceleration": 7.647379685060685e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001146551194,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.2651027071289875,
+ -10.584784285119218,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.356977547707036,
+ -13.09883439923977,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.613401167275075,
+ 7.5954808879919185,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.8153755805196212,
+ -3.8675908021416063,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 6.985276290710283,
+ -8.012669232800894,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 681,
+ "timestamp": 1739683984.6230016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.842821471589843,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999312236091,
+ "acceleration": 7.647379685060685e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001146551194,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 682,
+ "timestamp": 1739683984.6430016,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.842821471589843,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999312236091,
+ "acceleration": 7.647379685060685e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.24160001146551194,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 683,
+ "timestamp": 1739683984.6730015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 18.95282146439683,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999386894316,
+ "acceleration": 6.825378334740506e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.241600010233927,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 684,
+ "timestamp": 1739683984.7030015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.95282146439683,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999386894316,
+ "acceleration": 6.825378334740506e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.241600010233927,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.2846393116114685,
+ -10.711492801972092,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.327539041148028,
+ -13.148309490352355,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.621067582849914,
+ 7.656659939080997,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.736168637986879,
+ -3.8173961857561345,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 6.993298021721949,
+ -7.92857788645032,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 685,
+ "timestamp": 1739683984.7330015,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 14.95282146439683,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999386894316,
+ "acceleration": 6.825378334740506e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.241600010233927,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 686,
+ "timestamp": 1739683984.7830014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.062821457988104,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999453453646,
+ "acceleration": 6.084465314915022e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000091230126,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.3041759160939494,
+ -10.838201318824966,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.29810053458902,
+ -13.19778458146494,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.628733998424753,
+ 7.717838990170076,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.6569616954541369,
+ -3.7672015693706626,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.001319752733615,
+ -7.844486540099746,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 687,
+ "timestamp": 1739683984.8030014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.062821457988104,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999453453646,
+ "acceleration": 6.084465314915022e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000091230126,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 688,
+ "timestamp": 1739683984.8330014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.062821457988104,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999453453646,
+ "acceleration": 6.084465314915022e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000091230126,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 689,
+ "timestamp": 1739683984.8530014,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.062821457988104,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.9999999453453646,
+ "acceleration": 6.084465314915022e-08,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.2416000091230126,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 690,
+ "timestamp": 1739683984.8730013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.17222145226444,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.959999949409986,
+ "acceleration": -1.9972160003249955,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21750000047822804,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 691,
+ "timestamp": 1739683984.9130013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.172221452264441,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.959999949409986,
+ "acceleration": -1.9972160003249955,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21750000047822804,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.3237125205764304,
+ -10.96490983567784,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.350717692685297,
+ -13.221147907060729,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.636400413999592,
+ 7.779018041259155,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.5777547529213947,
+ -3.717006952985191,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.00934148374528,
+ -7.760395193749172,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 255,
+ 0,
+ 0
+ ],
+ "state": "RED"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 692,
+ "timestamp": 1739683984.9430013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.172221452264441,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.959999949409986,
+ "acceleration": -1.9972160003249955,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21750000047822804,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 693,
+ "timestamp": 1739683984.9630013,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.172221452264441,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.959999949409986,
+ "acceleration": -1.9972160003249955,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21750000047822804,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 694,
+ "timestamp": 1739683984.9730012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.172221452264441,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.959999949409986,
+ "acceleration": -1.9972160003249955,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21750000047822804,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 695,
+ "timestamp": 1739683985.0230012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.272321446699543,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8499999494099859,
+ "acceleration": -1.992509000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2178480004376036,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.3432491250589114,
+ -11.091618352530714,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.403334850781574,
+ -13.244511232656517,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.644066829574431,
+ 7.840197092348234,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.4985478103886525,
+ -3.666812336599719,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.017363214756946,
+ -7.676303847398598,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 696,
+ "timestamp": 1739683985.0530012,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.272321446699543,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8499999494099859,
+ "acceleration": -1.992509000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2178480004376036,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 697,
+ "timestamp": 1739683985.0730011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.272321446699543,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.8499999494099859,
+ "acceleration": -1.992509000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2178480004376036,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 698,
+ "timestamp": 1739683985.0930011,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.36032144113464,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7399999494099858,
+ "acceleration": -1.992751000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21878437542369136,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.3627857295413923,
+ -11.218326869383588,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.455952008877851,
+ -13.267874558252306,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.65173324514927,
+ 7.901376143437313,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.4193408678559103,
+ -3.616617720214247,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.025384945768612,
+ -7.592212501048024,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 699,
+ "timestamp": 1739683985.133001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.36032144113464,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7399999494099858,
+ "acceleration": -1.992751000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21878437542369136,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 700,
+ "timestamp": 1739683985.153001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.36032144113464,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7399999494099858,
+ "acceleration": -1.992751000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21878437542369136,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 701,
+ "timestamp": 1739683985.173001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.36032144113464,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7399999494099858,
+ "acceleration": -1.992751000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21878437542369136,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 702,
+ "timestamp": 1739683985.193001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.36032144113464,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.7399999494099858,
+ "acceleration": -1.992751000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.21878437542369136,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.3823223340238733,
+ -11.345035386236463,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.508569166974128,
+ -13.291237883848094,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.659399660724109,
+ 7.9625551945263915,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.340133925323168,
+ -3.5664231038287753,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.033406676780277,
+ -7.5081211546974505,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 703,
+ "timestamp": 1739683985.223001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.436221435569735,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6299999494099857,
+ "acceleration": -1.992993000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2196905004097791,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 704,
+ "timestamp": 1739683985.243001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.436221435569735,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6299999494099857,
+ "acceleration": -1.992993000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2196905004097791,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 705,
+ "timestamp": 1739683985.273001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.436221435569735,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6299999494099857,
+ "acceleration": -1.992993000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2196905004097791,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 706,
+ "timestamp": 1739683985.293001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.436221435569735,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6299999494099857,
+ "acceleration": -1.992993000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2196905004097791,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.4018589385063542,
+ -11.471743903089337,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.5611863250704054,
+ -13.314601209443882,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.667066076298948,
+ 8.02373424561547,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.260926982790426,
+ -3.5162284874433034,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.041428407791943,
+ -7.4240298083468765,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 707,
+ "timestamp": 1739683985.303001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.436221435569735,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.6299999494099857,
+ "acceleration": -1.992993000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2196905004097791,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 708,
+ "timestamp": 1739683985.333001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.500021430004836,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5199999494099856,
+ "acceleration": -1.993235000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22056637539586685,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 709,
+ "timestamp": 1739683985.3630009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.500021430004836,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5199999494099856,
+ "acceleration": -1.993235000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22056637539586685,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 710,
+ "timestamp": 1739683985.3830009,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.500021430004836,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5199999494099856,
+ "acceleration": -1.993235000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22056637539586685,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.421395542988835,
+ -11.59845241994221,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.6138034831666825,
+ -13.33796453503967,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.674732491873787,
+ 8.08491329670455,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.1817200402576837,
+ -3.4660338710578316,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.049450138803609,
+ -7.339938461996303,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 711,
+ "timestamp": 1739683985.4030008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.500021430004836,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.5199999494099856,
+ "acceleration": -1.993235000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22056637539586685,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 712,
+ "timestamp": 1739683985.4230008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.55172142443994,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.4099999494099855,
+ "acceleration": -1.993477000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2214120003819546,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 713,
+ "timestamp": 1739683985.4430008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.55172142443994,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.4099999494099855,
+ "acceleration": -1.993477000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2214120003819546,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 714,
+ "timestamp": 1739683985.4730008,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.55172142443994,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.4099999494099855,
+ "acceleration": -1.993477000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2214120003819546,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 715,
+ "timestamp": 1739683985.4930007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.55172142443994,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.4099999494099855,
+ "acceleration": -1.993477000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2214120003819546,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.440932147471316,
+ -11.725160936795085,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.66642064126296,
+ -13.361327860635459,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.682398907448626,
+ 8.146092347793628,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.1025130977249415,
+ -3.4158392546723597,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.0574718698152745,
+ -7.255847115645729,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 716,
+ "timestamp": 1739683985.5130007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.55172142443994,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.4099999494099855,
+ "acceleration": -1.993477000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2214120003819546,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 717,
+ "timestamp": 1739683985.5330007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.591321418875033,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.2999999494099854,
+ "acceleration": -1.993719000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22222737536804235,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 718,
+ "timestamp": 1739683985.5530007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.591321418875033,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.2999999494099854,
+ "acceleration": -1.993719000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22222737536804235,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 719,
+ "timestamp": 1739683985.5730007,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.591321418875033,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.2999999494099854,
+ "acceleration": -1.993719000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22222737536804235,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 720,
+ "timestamp": 1739683985.6230006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.591321418875033,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.2999999494099854,
+ "acceleration": -1.993719000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22222737536804235,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.460468751953797,
+ -11.851869453647959,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.719037799359237,
+ -13.384691186231247,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.690065323023465,
+ 8.207271398882707,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -1.0233061551921994,
+ -3.365644638286888,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.06549360082694,
+ -7.171755769295155,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 721,
+ "timestamp": 1739683985.6630006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.61882141331013,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.18999994940998532,
+ "acceleration": -1.993961000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2230125003541301,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 722,
+ "timestamp": 1739683985.6830006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.61882141331013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.18999994940998532,
+ "acceleration": -1.993961000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2230125003541301,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.480005356436278,
+ -11.978577970500833,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.771654957455514,
+ -13.408054511827036,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.697731738598304,
+ 8.268450449971786,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.9440992126594572,
+ -3.315450021901416,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.073515331838606,
+ -7.087664422944581,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 723,
+ "timestamp": 1739683985.6930006,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.61882141331013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.18999994940998532,
+ "acceleration": -1.993961000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2230125003541301,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 724,
+ "timestamp": 1739683985.7330005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.61882141331013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.18999994940998532,
+ "acceleration": -1.993961000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2230125003541301,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 725,
+ "timestamp": 1739683985.7530005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.63422140774523,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0799999494099853,
+ "acceleration": -1.994203000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22376737534021784,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 726,
+ "timestamp": 1739683985.7730005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.63422140774523,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0799999494099853,
+ "acceleration": -1.994203000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22376737534021784,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 727,
+ "timestamp": 1739683985.7930005,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.63422140774523,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0799999494099853,
+ "acceleration": -1.994203000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22376737534021784,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.499541960918759,
+ -12.105286487353707,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.824272115551791,
+ -13.431417837422824,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.705398154173142,
+ 8.329629501060865,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.864892270126715,
+ -3.265255405515944,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.081537062850272,
+ -7.003573076594007,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 728,
+ "timestamp": 1739683985.8130004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.63422140774523,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0799999494099853,
+ "acceleration": -1.994203000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22376737534021784,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 729,
+ "timestamp": 1739683985.8330004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.63422140774523,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0799999494099853,
+ "acceleration": -1.994203000111298,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22376737534021784,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 730,
+ "timestamp": 1739683985.8630004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.637821403698027,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2244920003263056,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 731,
+ "timestamp": 1739683985.8930004,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.637821403698027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2244920003263056,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.51907856540124,
+ -12.231995004206581,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.876889273648068,
+ -13.454781163018612,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.713064569747981,
+ 8.390808552149943,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.7856853275939728,
+ -3.2150607891304723,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.089558793861937,
+ -6.919481730243433,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 732,
+ "timestamp": 1739683985.9130003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.637821403698027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2244920003263056,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 733,
+ "timestamp": 1739683985.9230003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.637821403698027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2244920003263056,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 734,
+ "timestamp": 1739683985.9730003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.646821403698027,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 735,
+ "timestamp": 1739683985.9930003,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.646821403698027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.538615169883721,
+ -12.358703521059455,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.929506431744345,
+ -13.4781444886144,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.72073098532282,
+ 8.451987603239022,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.7064783850612306,
+ -3.1648661727450005,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.097580524873603,
+ -6.835390383892859,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 736,
+ "timestamp": 1739683986.0130002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.646821403698027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 737,
+ "timestamp": 1739683986.0330002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.646821403698027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 738,
+ "timestamp": 1739683986.0630002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.646821403698027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 739,
+ "timestamp": 1739683986.0730002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.646821403698027,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 740,
+ "timestamp": 1739683986.1030002,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.663321403698028,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.558151774366202,
+ -12.48541203791233,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 6.982123589840622,
+ -13.50150781421019,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.72839740089766,
+ 8.513166654328101,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.6272714425284884,
+ -3.1146715563595286,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.105602255885269,
+ -6.751299037542285,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 741,
+ "timestamp": 1739683986.1230001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.663321403698028,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 742,
+ "timestamp": 1739683986.1430001,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.663321403698028,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 743,
+ "timestamp": 1739683986.163,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.663321403698028,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 744,
+ "timestamp": 1739683986.183,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.663321403698028,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.577688378848683,
+ -12.612120554765204,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.034740747936899,
+ -13.524871139805978,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.736063816472498,
+ 8.57434570541718,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.5480644999957462,
+ -3.064476939974057,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.113623986896934,
+ -6.667207691191711,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 745,
+ "timestamp": 1739683986.233,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.667821403698024,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22442737499999998,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 746,
+ "timestamp": 1739683986.263,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.667821403698024,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22442737499999998,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 747,
+ "timestamp": 1739683986.283,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.667821403698024,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22442737499999998,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.597224983331164,
+ -12.738829071618078,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.087357906033176,
+ -13.548234465401766,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.743730232047337,
+ 8.635524756506259,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.468857557463004,
+ -3.014282323588585,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.1216457179086,
+ -6.583116344841137,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 748,
+ "timestamp": 1739683986.313,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.669821403698023,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1,
+ "acceleration": 3.794900000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 749,
+ "timestamp": 1739683986.323,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.669821403698023,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1,
+ "acceleration": 3.794900000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 750,
+ "timestamp": 1739683986.343,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.669821403698023,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1,
+ "acceleration": 3.794900000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 751,
+ "timestamp": 1739683986.363,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.669821403698023,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1,
+ "acceleration": 3.794900000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 752,
+ "timestamp": 1739683986.393,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.669821403698023,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1,
+ "acceleration": 3.794900000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.6167615878136448,
+ -12.865537588470952,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.1399750641294535,
+ -13.571597790997554,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.751396647622176,
+ 8.696703807595338,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.38965061493026176,
+ -2.964087707203113,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.129667448920266,
+ -6.4990249984905635,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 753,
+ "timestamp": 1739683986.4129999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.678321403698025,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.020000000000000025,
+ "acceleration": -1.995904,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2243625,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 754,
+ "timestamp": 1739683986.4329998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.678321403698025,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.020000000000000025,
+ "acceleration": -1.995904,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2243625,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 755,
+ "timestamp": 1739683986.4529998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.678321403698025,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.020000000000000025,
+ "acceleration": -1.995904,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2243625,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 756,
+ "timestamp": 1739683986.4729998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.678321403698025,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.020000000000000025,
+ "acceleration": -1.995904,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2243625,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 757,
+ "timestamp": 1739683986.4929998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.678321403698025,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.020000000000000025,
+ "acceleration": -1.995904,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2243625,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.6362981922961257,
+ -12.992246105323826,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.192592222225731,
+ -13.594961116593343,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.759063063197015,
+ 8.757882858684416,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.3104436723975195,
+ -2.9138930908176413,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.1376891799319315,
+ -6.41493365213999,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 758,
+ "timestamp": 1739683986.5129998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.678321403698025,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.020000000000000025,
+ "acceleration": -1.995904,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2243625,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 759,
+ "timestamp": 1739683986.5329998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.678621403698024,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2248745,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 760,
+ "timestamp": 1739683986.5529997,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.678621403698024,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2248745,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 761,
+ "timestamp": 1739683986.5929997,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.678621403698024,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2248745,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.6558347967786067,
+ -13.1189546221767,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.245209380322008,
+ -13.618324442189131,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.766729478771854,
+ 8.819061909773495,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.23123672986477728,
+ -2.8636984744321694,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.145710910943597,
+ -6.330842305789416,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 762,
+ "timestamp": 1739683986.6129997,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.678621403698024,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2248745,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 763,
+ "timestamp": 1739683986.6429996,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.687621403698024,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 764,
+ "timestamp": 1739683986.6629996,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.687621403698024,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 765,
+ "timestamp": 1739683986.6829996,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.687621403698024,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.6753714012610876,
+ -13.245663139029574,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.297826538418285,
+ -13.64168776778492,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.774395894346693,
+ 8.880240960862574,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.15202978733203504,
+ -2.8135038580466976,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.153732641955263,
+ -6.246750959438842,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 766,
+ "timestamp": 1739683986.7129996,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.687621403698024,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 767,
+ "timestamp": 1739683986.7329996,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.687621403698024,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 768,
+ "timestamp": 1739683986.7629995,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.707121403698018,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1199999999999999,
+ "acceleration": -1.9957440000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 769,
+ "timestamp": 1739683986.7829995,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.707121403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1199999999999999,
+ "acceleration": -1.9957440000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.6949080057435686,
+ -13.372371655882448,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.350443696514562,
+ -13.665051093380708,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.782062309921532,
+ 8.941420011951653,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ -0.07282284479929281,
+ -2.7633092416612257,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.161754372966929,
+ -6.162659613088268,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 770,
+ "timestamp": 1739683986.8029995,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.707121403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1199999999999999,
+ "acceleration": -1.9957440000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 771,
+ "timestamp": 1739683986.8129995,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.707121403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1199999999999999,
+ "acceleration": -1.9957440000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 772,
+ "timestamp": 1739683986.8329995,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.707121403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.1199999999999999,
+ "acceleration": -1.9957440000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 773,
+ "timestamp": 1739683986.8529994,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.714821403698018,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.009999999999999913,
+ "acceleration": -1.994357,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224232,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 774,
+ "timestamp": 1739683986.8729994,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.714821403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.009999999999999913,
+ "acceleration": -1.994357,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224232,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 775,
+ "timestamp": 1739683986.8929994,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.714821403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.009999999999999913,
+ "acceleration": -1.994357,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224232,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.7144446102260495,
+ -13.499080172735322,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.403060854610839,
+ -13.688414418976496,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.78972872549637,
+ 9.002599063040732,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.0063840977334494176,
+ -2.713114625275754,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.169776103978594,
+ -6.078568266737694,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 776,
+ "timestamp": 1739683986.9029994,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.714821403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.009999999999999913,
+ "acceleration": -1.994357,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224232,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 777,
+ "timestamp": 1739683986.9329994,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.714821403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.009999999999999913,
+ "acceleration": -1.994357,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224232,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 778,
+ "timestamp": 1739683986.9529994,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.714821403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.009999999999999913,
+ "acceleration": -1.994357,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224232,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 779,
+ "timestamp": 1739683986.9729993,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.714921403698018,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224937375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 780,
+ "timestamp": 1739683986.9929993,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.714921403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224937375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.7339812147085305,
+ -13.625788689588196,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.455678012707116,
+ -13.711777744572284,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.79739514107121,
+ 9.06377811412981,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.08559104026619165,
+ -2.662920008890282,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.17779783499026,
+ -5.99447692038712,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 781,
+ "timestamp": 1739683987.0129993,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.714921403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224937375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 782,
+ "timestamp": 1739683987.0229993,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.714921403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224937375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 783,
+ "timestamp": 1739683987.0629992,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.714921403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224937375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 784,
+ "timestamp": 1739683987.0929992,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.723921403698018,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.7535178191910115,
+ -13.75249720644107,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.508295170803393,
+ -13.735141070168073,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.805061556646049,
+ 9.12495716521889,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.16479798279893387,
+ -2.61272539250481,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.185819566001926,
+ -5.910385574036546,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 785,
+ "timestamp": 1739683987.1329992,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.723921403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 786,
+ "timestamp": 1739683987.1429992,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.723921403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 787,
+ "timestamp": 1739683987.1629992,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.723921403698018,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 788,
+ "timestamp": 1739683987.1929991,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.746121403698012,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.14999999999999988,
+ "acceleration": -1.997325,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.7730544236734924,
+ -13.879205723293945,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.56091232889967,
+ -13.758504395763861,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.812727972220888,
+ 9.186136216307968,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.24400492533167611,
+ -2.5625307761193383,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.193841297013591,
+ -5.826294227685972,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 7.6530037250396115,
+ 4.7993788046153485,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 789,
+ "timestamp": 1739683987.202999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.746121403698012,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.14999999999999988,
+ "acceleration": -1.997325,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 790,
+ "timestamp": 1739683987.222999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.746121403698012,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.14999999999999988,
+ "acceleration": -1.997325,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 791,
+ "timestamp": 1739683987.242999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.746121403698012,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.14999999999999988,
+ "acceleration": -1.997325,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 792,
+ "timestamp": 1739683987.272999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.746121403698012,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.14999999999999988,
+ "acceleration": -1.997325,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 793,
+ "timestamp": 1739683987.312999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.757121403698015,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.03999999999999989,
+ "acceleration": -1.994291,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224034375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.7925910281559734,
+ -14.005914240146819,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.613529486995947,
+ -13.78186772135965,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.820394387795726,
+ 9.247315267397047,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.32321186786441836,
+ -2.5123361597338665,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.201863028025257,
+ -5.742202881335398,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 7.579972665915706,
+ 4.812838964311503,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 794,
+ "timestamp": 1739683987.332999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.757121403698015,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.03999999999999989,
+ "acceleration": -1.994291,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224034375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 795,
+ "timestamp": 1739683987.352999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.757121403698015,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.03999999999999989,
+ "acceleration": -1.994291,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224034375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 796,
+ "timestamp": 1739683987.372999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.757121403698015,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.03999999999999989,
+ "acceleration": -1.994291,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224034375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 797,
+ "timestamp": 1739683987.392999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.757121403698015,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.03999999999999989,
+ "acceleration": -1.994291,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224034375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.8121276326384543,
+ -14.132622756999693,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.666146645092224,
+ -13.805231046955438,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.828060803370565,
+ 9.308494318486126,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.4024188103971606,
+ -2.4621415433483946,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.209884759036923,
+ -5.658111534984824,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 7.506941606791801,
+ 4.826299124007657,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 798,
+ "timestamp": 1739683987.412999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.758121403698013,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224748,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 799,
+ "timestamp": 1739683987.432999,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.758121403698013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224748,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 800,
+ "timestamp": 1739683987.4529989,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.758121403698013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224748,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 801,
+ "timestamp": 1739683987.4729989,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.758121403698013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224748,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 802,
+ "timestamp": 1739683987.4929988,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.758121403698013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224748,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.8316642371209353,
+ -14.259331273852567,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.7187638031885015,
+ -13.828594372551226,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.835727218945404,
+ 9.369673369575205,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.48162575292990284,
+ -2.411946926962923,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.2179064900485885,
+ -5.57402018863425,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 7.433910547667896,
+ 4.8397592837038115,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 803,
+ "timestamp": 1739683987.5129988,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.767121403698013,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 804,
+ "timestamp": 1739683987.5329988,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.767121403698013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 805,
+ "timestamp": 1739683987.5529988,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.767121403698013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 806,
+ "timestamp": 1739683987.5729988,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.767121403698013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 807,
+ "timestamp": 1739683987.5929987,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.767121403698013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.8512008416034162,
+ -14.386039790705441,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.771380961284779,
+ -13.851957698147014,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.843393634520243,
+ 9.430852420664284,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.560832695462645,
+ -2.361752310577451,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.225928221060254,
+ -5.4899288422836765,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 7.360879488543991,
+ 4.853219443399966,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 808,
+ "timestamp": 1739683987.6129987,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.767121403698013,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.19999999999999998,
+ "acceleration": 3.789600000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 809,
+ "timestamp": 1739683987.6329987,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.783621403698014,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 810,
+ "timestamp": 1739683987.6529987,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.783621403698014,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 811,
+ "timestamp": 1739683987.6729987,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.783621403698014,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 812,
+ "timestamp": 1739683987.6929986,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.783621403698014,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.870737446085897,
+ -14.512748307558315,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.823998119381056,
+ -13.875321023742803,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.851060050095082,
+ 9.492031471753362,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.6400396379953872,
+ -2.311557694191979,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.23394995207192,
+ -5.405837495933103,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 7.287848429420086,
+ 4.86667960309612,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 813,
+ "timestamp": 1739683987.7129986,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.783621403698014,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.08999999999999994,
+ "acceleration": -1.9941810000000002,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2237,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 814,
+ "timestamp": 1739683987.7329986,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.78812140369801,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22442737499999998,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 815,
+ "timestamp": 1739683987.7529986,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.78812140369801,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22442737499999998,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 816,
+ "timestamp": 1739683987.7729986,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.78812140369801,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22442737499999998,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 817,
+ "timestamp": 1739683987.7929986,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.78812140369801,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22442737499999998,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.890274050568378,
+ -14.63945682441119,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.876615277477333,
+ -13.898684349338591,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.858726465669921,
+ 9.553210522842441,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.7192465805281294,
+ -2.2613630778065072,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.241971683083586,
+ -5.321746149582529,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 7.21481737029618,
+ 4.8801397627922745,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 818,
+ "timestamp": 1739683987.8129985,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.78812140369801,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22442737499999998,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 819,
+ "timestamp": 1739683987.8329985,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.78812140369801,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.22442737499999998,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 820,
+ "timestamp": 1739683987.8529985,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.79912140369801,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 821,
+ "timestamp": 1739683987.8729985,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.79912140369801,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 822,
+ "timestamp": 1739683987.8929985,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.79912140369801,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.909810655050859,
+ -14.766165341264063,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.92923243557361,
+ -13.92204767493438,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.86639288124476,
+ 9.61438957393152,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.7984535230608716,
+ -2.2111684614210354,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.249993414095251,
+ -5.237654803231955,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 7.141786311172275,
+ 4.893599922488429,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 823,
+ "timestamp": 1739683987.9129984,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.79912140369801,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 824,
+ "timestamp": 1739683987.9329984,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.79912140369801,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 825,
+ "timestamp": 1739683987.9529984,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.820821403698005,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 826,
+ "timestamp": 1739683987.9729984,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.820821403698005,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 827,
+ "timestamp": 1739683987.9929984,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.820821403698005,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.92934725953334,
+ -14.892873858116937,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 7.981849593669887,
+ -13.945411000530168,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.912493780808719,
+ 9.655332916239155,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.8776604655936138,
+ -2.1609738450355636,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.258015145106917,
+ -5.153563456881381,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 7.06875525204837,
+ 4.907060082184583,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 828,
+ "timestamp": 1739683988.0129983,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.820821403698005,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 829,
+ "timestamp": 1739683988.0329983,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.820821403698005,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 830,
+ "timestamp": 1739683988.0529983,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.820821403698005,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 831,
+ "timestamp": 1739683988.0729983,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.830721403698007,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 832,
+ "timestamp": 1739683988.0929983,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.830721403698007,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.948883864015821,
+ -15.019582374969811,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.034466751766164,
+ -13.968774326125956,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 8.958594680372677,
+ 9.69627625854679,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 0.956867408126356,
+ -2.1107792286500917,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.266036876118583,
+ -5.069472110530807,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.995724192924465,
+ 4.9205202418807374,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 833,
+ "timestamp": 1739683988.1129982,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.830721403698007,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 834,
+ "timestamp": 1739683988.1329982,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.830721403698007,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 835,
+ "timestamp": 1739683988.1529982,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.830721403698007,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 836,
+ "timestamp": 1739683988.1729982,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.831321403698006,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 837,
+ "timestamp": 1739683988.1929982,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.831321403698006,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.968420468498302,
+ -15.146290891822686,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.087083909862441,
+ -13.992137651721745,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.004695579936635,
+ 9.737219600854425,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.0360743506590981,
+ -2.06058461226462,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.274058607130248,
+ -4.985380764180233,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.92269313380056,
+ 4.933980401576892,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 838,
+ "timestamp": 1739683988.2129982,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.831321403698006,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 839,
+ "timestamp": 1739683988.2329981,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.831321403698006,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 840,
+ "timestamp": 1739683988.252998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.831321403698006,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 841,
+ "timestamp": 1739683988.272998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.831321403698006,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 842,
+ "timestamp": 1739683988.292998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.842321403698005,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 2.987957072980783,
+ -15.27299940867556,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.139701067958718,
+ -14.015500977317533,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.050796479500594,
+ 9.77816294316206,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.1152812931918403,
+ -2.010389995879148,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.282080338141914,
+ -4.901289417829659,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.8496620746766546,
+ 4.947440561273046,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 843,
+ "timestamp": 1739683988.312998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.842321403698005,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 844,
+ "timestamp": 1739683988.332998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.842321403698005,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 845,
+ "timestamp": 1739683988.352998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.842321403698005,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 846,
+ "timestamp": 1739683988.372998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.842321403698005,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 847,
+ "timestamp": 1739683988.392998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.864021403698,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.007493677463264,
+ -15.399707925528434,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.192318226054995,
+ -14.038864302913321,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.096897379064552,
+ 9.819106285469696,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.1944882357245825,
+ -1.9601953794936764,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.29010206915358,
+ -4.817198071479085,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.776631015552749,
+ 4.9609007209692,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 848,
+ "timestamp": 1739683988.412998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.864021403698,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 849,
+ "timestamp": 1739683988.432998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.864021403698,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 850,
+ "timestamp": 1739683988.452998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.864021403698,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 851,
+ "timestamp": 1739683988.472998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.864021403698,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 852,
+ "timestamp": 1739683988.492998,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.864021403698,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.027030281945745,
+ -15.526416442381308,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.244935384151272,
+ -14.06222762850911,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.142998278628511,
+ 9.86004962777733,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.2736951782573247,
+ -1.9100007631082048,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.2981238001652455,
+ -4.733106725128511,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.703599956428844,
+ 4.974360880665355,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 853,
+ "timestamp": 1739683988.5129979,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.873921403698002,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 854,
+ "timestamp": 1739683988.5329978,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.873921403698002,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 855,
+ "timestamp": 1739683988.5529978,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.873921403698002,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 856,
+ "timestamp": 1739683988.5729978,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.873921403698002,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 857,
+ "timestamp": 1739683988.5929978,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.873921403698002,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.046566886428226,
+ -15.653124959234182,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.29755254224755,
+ -14.085590954104898,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.18909917819247,
+ 9.900992970084966,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.3529021207900669,
+ -1.8598061467227331,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.306145531176911,
+ -4.649015378777937,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.630568897304939,
+ 4.987821040361509,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 858,
+ "timestamp": 1739683988.6129978,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.874521403698,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 859,
+ "timestamp": 1739683988.6329978,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.874521403698001,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 860,
+ "timestamp": 1739683988.6529977,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.874521403698001,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 861,
+ "timestamp": 1739683988.6729977,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.874521403698001,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 862,
+ "timestamp": 1739683988.6929977,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.874521403698001,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.0661034909107068,
+ -15.779833476087056,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.350169700343827,
+ -14.108954279700686,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.235200077756428,
+ 9.9419363123926,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.432109063322809,
+ -1.8096115303372615,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.314167262188577,
+ -4.564924032427363,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.557537838181034,
+ 5.001281200057663,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 863,
+ "timestamp": 1739683988.7129977,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.874521403698001,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 864,
+ "timestamp": 1739683988.7329977,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.885521403698,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 865,
+ "timestamp": 1739683988.7529976,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.885521403698,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 866,
+ "timestamp": 1739683988.7729976,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.885521403698,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 867,
+ "timestamp": 1739683988.7929976,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.885521403698,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.0856400953931877,
+ -15.90654199293993,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.402786858440104,
+ -14.132317605296475,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.281300977320386,
+ 9.982879654700236,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.5113160058555513,
+ -1.75941691395179,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.322188993200243,
+ -4.4808326860767895,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.484506779057129,
+ 5.014741359753818,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 868,
+ "timestamp": 1739683988.8129976,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.885521403698,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.21999999999999997,
+ "acceleration": 3.788516000000001,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0.8400000000000001,
+ "brake_pedal_position": 0.0,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 869,
+ "timestamp": 1739683988.8329976,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.907221403697996,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 870,
+ "timestamp": 1739683988.8529975,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.907221403697996,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 871,
+ "timestamp": 1739683988.8729975,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.907221403697996,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 872,
+ "timestamp": 1739683988.8929975,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.907221403697996,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.1051766998756687,
+ -16.033250509792804,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.45540401653638,
+ -14.155680930892263,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.327401876884345,
+ 10.023822997007871,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.5905229483882934,
+ -1.7092222975663183,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.330210724211908,
+ -4.396741339726216,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.4114757199332235,
+ 5.028201519449972,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 873,
+ "timestamp": 1739683988.9129975,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.907221403697996,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 874,
+ "timestamp": 1739683988.9329975,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.907221403697996,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.13999999999999987,
+ "acceleration": -1.995712,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2235645,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 875,
+ "timestamp": 1739683988.9529974,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.917121403697998,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 876,
+ "timestamp": 1739683988.9729974,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.917121403697998,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 877,
+ "timestamp": 1739683988.9929974,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.917121403697998,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.1247133043581496,
+ -16.159959026645677,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.508021174632658,
+ -14.179044256488051,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.373502776448303,
+ 10.064766339315506,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.6697298909210356,
+ -1.6590276811808466,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.338232455223574,
+ -4.312649993375642,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.338444660809318,
+ 5.041661679146126,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 878,
+ "timestamp": 1739683989.0129974,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.917121403697998,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 879,
+ "timestamp": 1739683989.0329974,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.917121403697998,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.029999999999999888,
+ "acceleration": -1.994313,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.2241005,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": 1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 880,
+ "timestamp": 1739683989.0529974,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ 19.917721403697996,
+ 5.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 881,
+ "timestamp": 1739683989.0729973,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.917721403697996,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ }
+ ]
+ },
+ {
+ "render_frame": 882,
+ "timestamp": 1739683989.0929973,
+ "objects": [
+ {
+ "type": "vehicle",
+ "id": 0,
+ "frame": 0,
+ "position": [
+ 15.917721403697996,
+ 0.0,
+ 0
+ ],
+ "steering_wheel_angle": 0.0,
+ "velocity": 0.0,
+ "acceleration": 0.0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "accelerator_pedal_position": 0,
+ "brake_pedal_position": 0.224811375,
+ "front_wheel_angle": 0.0,
+ "heading_rate": 0.0,
+ "gear": -1,
+ "left_turn_indicator": false,
+ "right_turn_indicator": false,
+ "headlights_on": false,
+ "horn_on": false,
+ "wiper_level": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 0,
+ "frame": 1,
+ "position": [
+ 3.1442499088406306,
+ -16.28666754349855,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 1,
+ "frame": 1,
+ "position": [
+ 8.560638332728935,
+ -14.20240758208384,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 2,
+ "frame": 1,
+ "position": [
+ 9.419603676012262,
+ 10.105709681623141,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 3,
+ "frame": 1,
+ "position": [
+ 1.7489368334537778,
+ -1.608833064795375,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 4,
+ "frame": 1,
+ "position": [
+ 7.34625418623524,
+ -4.228558647025068,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "pedestrian",
+ "id": 5,
+ "frame": 1,
+ "position": [
+ 6.265413601685413,
+ 5.055121838842281,
+ 0
+ ],
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "acceleration": 0,
+ "rotation": [
+ 0,
+ 0,
+ 0
+ ],
+ "misc": {
+ "dimensions": [
+ 0,
+ 0,
+ 0
+ ],
+ "outline": 0,
+ "type": 3,
+ "activity": 1,
+ "velocity": [
+ 0,
+ 0,
+ 0
+ ],
+ "yaw_rate": 0
+ }
+ },
+ {
+ "type": "traffic_light",
+ "id": 0,
+ "frame": 3,
+ "position": [
+ -2.0730895057655374,
+ -9.366847892625884,
+ 0
+ ],
+ "misc": {
+ "frame": 3,
+ "orientation": -1.57,
+ "bounding_box": {
+ "width": 0.4,
+ "height": 1.2
+ },
+ "color": [
+ 0,
+ 255,
+ 0
+ ],
+ "state": "GREEN"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/next-env.d.ts b/GEMstack/onboard/visualization/sr_viz/threeD/next-env.d.ts
new file mode 100644
index 000000000..1b3be0840
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/next-env.d.ts
@@ -0,0 +1,5 @@
+///
+///
+
+// NOTE: This file should not be edited
+// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/next.config.ts b/GEMstack/onboard/visualization/sr_viz/threeD/next.config.ts
new file mode 100644
index 000000000..f70b91fc2
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/next.config.ts
@@ -0,0 +1,10 @@
+import type { NextConfig } from "next";
+
+const nextConfig: NextConfig = {
+ /* config options here */
+ eslint: {
+ ignoreDuringBuilds: true,
+ },
+};
+
+export default nextConfig;
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/package-lock.json b/GEMstack/onboard/visualization/sr_viz/threeD/package-lock.json
new file mode 100644
index 000000000..e9ef8df23
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/package-lock.json
@@ -0,0 +1,6793 @@
+{
+ "name": "cs588_vis",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "cs588_vis",
+ "version": "0.1.0",
+ "dependencies": {
+ "@emotion/react": "^11.14.0",
+ "@emotion/styled": "^11.14.0",
+ "@mui/icons-material": "^7.0.2",
+ "@mui/material": "^7.0.2",
+ "@react-three/drei": "^10.0.6",
+ "@react-three/fiber": "^9.1.2",
+ "cs588_vis": "file:",
+ "next": "15.3.0",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0",
+ "react-icons": "^5.5.0",
+ "three": "^0.175.0",
+ "urdf-loader": "^0.12.4"
+ },
+ "devDependencies": {
+ "@eslint/eslintrc": "^3",
+ "@tailwindcss/postcss": "^4",
+ "@types/node": "^20",
+ "@types/react": "^19",
+ "@types/react-dom": "^19",
+ "eslint": "^9",
+ "eslint-config-next": "15.3.0",
+ "tailwindcss": "^4",
+ "typescript": "^5"
+ }
+ },
+ "node_modules/@alloc/quick-lru": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.26.2",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
+ "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.25.9",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.0.tgz",
+ "integrity": "sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.27.0",
+ "@babel/types": "^7.27.0",
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
+ "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.25.9",
+ "@babel/types": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
+ "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.25.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
+ "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.0.tgz",
+ "integrity": "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.27.0"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/runtime": {
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.0.tgz",
+ "integrity": "sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==",
+ "dependencies": {
+ "regenerator-runtime": "^0.14.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.0.tgz",
+ "integrity": "sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.26.2",
+ "@babel/parser": "^7.27.0",
+ "@babel/types": "^7.27.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.0.tgz",
+ "integrity": "sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.26.2",
+ "@babel/generator": "^7.27.0",
+ "@babel/parser": "^7.27.0",
+ "@babel/template": "^7.27.0",
+ "@babel/types": "^7.27.0",
+ "debug": "^4.3.1",
+ "globals": "^11.1.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse/node_modules/globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.0.tgz",
+ "integrity": "sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.25.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@emnapi/core": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.4.0.tgz",
+ "integrity": "sha512-H+N/FqT07NmLmt6OFFtDfwe8PNygprzBikrEMyQfgqSmT0vzE515Pz7R8izwB9q/zsH/MA64AKoul3sA6/CzVg==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "@emnapi/wasi-threads": "1.0.1",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/runtime": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.0.tgz",
+ "integrity": "sha512-64WYIf4UYcdLnbKn/umDlNjQDSS8AgZrI/R9+x5ilkUVFxXcA1Ebl+gQLc/6mERA4407Xof0R7wEyEuj091CVw==",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/wasi-threads": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.1.tgz",
+ "integrity": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emotion/babel-plugin": {
+ "version": "11.13.5",
+ "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz",
+ "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.16.7",
+ "@babel/runtime": "^7.18.3",
+ "@emotion/hash": "^0.9.2",
+ "@emotion/memoize": "^0.9.0",
+ "@emotion/serialize": "^1.3.3",
+ "babel-plugin-macros": "^3.1.0",
+ "convert-source-map": "^1.5.0",
+ "escape-string-regexp": "^4.0.0",
+ "find-root": "^1.1.0",
+ "source-map": "^0.5.7",
+ "stylis": "4.2.0"
+ }
+ },
+ "node_modules/@emotion/cache": {
+ "version": "11.14.0",
+ "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz",
+ "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==",
+ "license": "MIT",
+ "dependencies": {
+ "@emotion/memoize": "^0.9.0",
+ "@emotion/sheet": "^1.4.0",
+ "@emotion/utils": "^1.4.2",
+ "@emotion/weak-memoize": "^0.4.0",
+ "stylis": "4.2.0"
+ }
+ },
+ "node_modules/@emotion/hash": {
+ "version": "0.9.2",
+ "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
+ "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/is-prop-valid": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz",
+ "integrity": "sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==",
+ "license": "MIT",
+ "dependencies": {
+ "@emotion/memoize": "^0.9.0"
+ }
+ },
+ "node_modules/@emotion/memoize": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
+ "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/react": {
+ "version": "11.14.0",
+ "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
+ "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.18.3",
+ "@emotion/babel-plugin": "^11.13.5",
+ "@emotion/cache": "^11.14.0",
+ "@emotion/serialize": "^1.3.3",
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
+ "@emotion/utils": "^1.4.2",
+ "@emotion/weak-memoize": "^0.4.0",
+ "hoist-non-react-statics": "^3.3.1"
+ },
+ "peerDependencies": {
+ "react": ">=16.8.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@emotion/serialize": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz",
+ "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==",
+ "license": "MIT",
+ "dependencies": {
+ "@emotion/hash": "^0.9.2",
+ "@emotion/memoize": "^0.9.0",
+ "@emotion/unitless": "^0.10.0",
+ "@emotion/utils": "^1.4.2",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@emotion/sheet": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
+ "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/styled": {
+ "version": "11.14.0",
+ "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.0.tgz",
+ "integrity": "sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.18.3",
+ "@emotion/babel-plugin": "^11.13.5",
+ "@emotion/is-prop-valid": "^1.3.0",
+ "@emotion/serialize": "^1.3.3",
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
+ "@emotion/utils": "^1.4.2"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.0.0-rc.0",
+ "react": ">=16.8.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@emotion/unitless": {
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz",
+ "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/use-insertion-effect-with-fallbacks": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz",
+ "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=16.8.0"
+ }
+ },
+ "node_modules/@emotion/utils": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz",
+ "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/weak-memoize": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz",
+ "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==",
+ "license": "MIT"
+ },
+ "node_modules/@eslint-community/eslint-utils": {
+ "version": "4.5.1",
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz",
+ "integrity": "sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==",
+ "dev": true,
+ "dependencies": {
+ "eslint-visitor-keys": "^3.4.3"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
+ }
+ },
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
+ "dev": true,
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@eslint-community/regexpp": {
+ "version": "4.12.1",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
+ "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
+ "dev": true,
+ "engines": {
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+ }
+ },
+ "node_modules/@eslint/config-array": {
+ "version": "0.20.0",
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz",
+ "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==",
+ "dev": true,
+ "dependencies": {
+ "@eslint/object-schema": "^2.1.6",
+ "debug": "^4.3.1",
+ "minimatch": "^3.1.2"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/config-helpers": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz",
+ "integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==",
+ "dev": true,
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/core": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz",
+ "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==",
+ "dev": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.15"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/eslintrc": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz",
+ "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==",
+ "dev": true,
+ "dependencies": {
+ "ajv": "^6.12.4",
+ "debug": "^4.3.2",
+ "espree": "^10.0.1",
+ "globals": "^14.0.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.0",
+ "minimatch": "^3.1.2",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@eslint/js": {
+ "version": "9.24.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.24.0.tgz",
+ "integrity": "sha512-uIY/y3z0uvOGX8cp1C2fiC4+ZmBhp6yZWkojtHL1YEMnRt1Y63HB9TM17proGEmeG7HeUY+UP36F0aknKYTpYA==",
+ "dev": true,
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/object-schema": {
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz",
+ "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==",
+ "dev": true,
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/plugin-kit": {
+ "version": "0.2.8",
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz",
+ "integrity": "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==",
+ "dev": true,
+ "dependencies": {
+ "@eslint/core": "^0.13.0",
+ "levn": "^0.4.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/plugin-kit/node_modules/@eslint/core": {
+ "version": "0.13.0",
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz",
+ "integrity": "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==",
+ "dev": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.15"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@humanfs/core": {
+ "version": "0.19.1",
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
+ "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
+ "dev": true,
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanfs/node": {
+ "version": "0.16.6",
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz",
+ "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==",
+ "dev": true,
+ "dependencies": {
+ "@humanfs/core": "^0.19.1",
+ "@humanwhocodes/retry": "^0.3.0"
+ },
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz",
+ "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==",
+ "dev": true,
+ "engines": {
+ "node": ">=18.18"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@humanwhocodes/module-importer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
+ "dev": true,
+ "engines": {
+ "node": ">=12.22"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@humanwhocodes/retry": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz",
+ "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=18.18"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@img/sharp-darwin-arm64": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.1.tgz",
+ "integrity": "sha512-pn44xgBtgpEbZsu+lWf2KNb6OAf70X68k+yk69Ic2Xz11zHR/w24/U49XT7AeRwJ0Px+mhALhU5LPci1Aymk7A==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-darwin-arm64": "1.1.0"
+ }
+ },
+ "node_modules/@img/sharp-darwin-x64": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.1.tgz",
+ "integrity": "sha512-VfuYgG2r8BpYiOUN+BfYeFo69nP/MIwAtSJ7/Zpxc5QF3KS22z8Pvg3FkrSFJBPNQ7mmcUcYQFBmEQp7eu1F8Q==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-darwin-x64": "1.1.0"
+ }
+ },
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.1.0.tgz",
+ "integrity": "sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-darwin-x64": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.1.0.tgz",
+ "integrity": "sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-arm": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.1.0.tgz",
+ "integrity": "sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==",
+ "cpu": [
+ "arm"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-arm64": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.1.0.tgz",
+ "integrity": "sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.1.0.tgz",
+ "integrity": "sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-s390x": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.1.0.tgz",
+ "integrity": "sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==",
+ "cpu": [
+ "s390x"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-x64": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.1.0.tgz",
+ "integrity": "sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.1.0.tgz",
+ "integrity": "sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.1.0.tgz",
+ "integrity": "sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-linux-arm": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.1.tgz",
+ "integrity": "sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA==",
+ "cpu": [
+ "arm"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-arm": "1.1.0"
+ }
+ },
+ "node_modules/@img/sharp-linux-arm64": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.1.tgz",
+ "integrity": "sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-arm64": "1.1.0"
+ }
+ },
+ "node_modules/@img/sharp-linux-s390x": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.1.tgz",
+ "integrity": "sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA==",
+ "cpu": [
+ "s390x"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-s390x": "1.1.0"
+ }
+ },
+ "node_modules/@img/sharp-linux-x64": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.1.tgz",
+ "integrity": "sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-x64": "1.1.0"
+ }
+ },
+ "node_modules/@img/sharp-linuxmusl-arm64": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.1.tgz",
+ "integrity": "sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linuxmusl-arm64": "1.1.0"
+ }
+ },
+ "node_modules/@img/sharp-linuxmusl-x64": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.1.tgz",
+ "integrity": "sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linuxmusl-x64": "1.1.0"
+ }
+ },
+ "node_modules/@img/sharp-wasm32": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.1.tgz",
+ "integrity": "sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg==",
+ "cpu": [
+ "wasm32"
+ ],
+ "optional": true,
+ "dependencies": {
+ "@emnapi/runtime": "^1.4.0"
+ },
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-win32-ia32": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.1.tgz",
+ "integrity": "sha512-WKf/NAZITnonBf3U1LfdjoMgNO5JYRSlhovhRhMxXVdvWYveM4kM3L8m35onYIdh75cOMCo1BexgVQcCDzyoWw==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-win32-x64": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.1.tgz",
+ "integrity": "sha512-hw1iIAHpNE8q3uMIRCgGOeDoz9KtFNarFLQclLxr/LK1VBkj8nby18RjFvr6aP7USRYAjTZW6yisnBWMX571Tw==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
+ "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/set-array": "^1.2.1",
+ "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/set-array": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
+ "license": "MIT"
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.25",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@mediapipe/tasks-vision": {
+ "version": "0.10.17",
+ "resolved": "https://registry.npmjs.org/@mediapipe/tasks-vision/-/tasks-vision-0.10.17.tgz",
+ "integrity": "sha512-CZWV/q6TTe8ta61cZXjfnnHsfWIdFhms03M9T7Cnd5y2mdpylJM0rF1qRq+wsQVRMLz1OYPVEBU9ph2Bx8cxrg=="
+ },
+ "node_modules/@monogrid/gainmap-js": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@monogrid/gainmap-js/-/gainmap-js-3.1.0.tgz",
+ "integrity": "sha512-Obb0/gEd/HReTlg8ttaYk+0m62gQJmCblMOjHSMHRrBP2zdfKMHLCRbh/6ex9fSUJMKdjjIEiohwkbGD3wj2Nw==",
+ "dependencies": {
+ "promise-worker-transferable": "^1.0.4"
+ },
+ "peerDependencies": {
+ "three": ">= 0.159.0"
+ }
+ },
+ "node_modules/@mui/core-downloads-tracker": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-7.0.2.tgz",
+ "integrity": "sha512-TfeFU9TgN1N06hyb/pV/63FfO34nijZRMqgHk0TJ3gkl4Fbd+wZ73+ZtOd7jag6hMmzO9HSrBc6Vdn591nhkAg==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ }
+ },
+ "node_modules/@mui/icons-material": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-7.0.2.tgz",
+ "integrity": "sha512-Bo57PFLOqXOqPNrXjd8AhzH5s6TCsNUQbvnQ0VKZ8D+lIlteqKnrk/O1luMJUc/BXONK7BfIdTdc7qOnXYbMdw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@mui/material": "^7.0.2",
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/material": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@mui/material/-/material-7.0.2.tgz",
+ "integrity": "sha512-rjJlJ13+3LdLfobRplkXbjIFEIkn6LgpetgU/Cs3Xd8qINCCQK9qXQIjjQ6P0FXFTPFzEVMj0VgBR1mN+FhOcA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.0",
+ "@mui/core-downloads-tracker": "^7.0.2",
+ "@mui/system": "^7.0.2",
+ "@mui/types": "^7.4.1",
+ "@mui/utils": "^7.0.2",
+ "@popperjs/core": "^2.11.8",
+ "@types/react-transition-group": "^4.4.12",
+ "clsx": "^2.1.1",
+ "csstype": "^3.1.3",
+ "prop-types": "^15.8.1",
+ "react-is": "^19.1.0",
+ "react-transition-group": "^4.4.5"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.5.0",
+ "@emotion/styled": "^11.3.0",
+ "@mui/material-pigment-css": "^7.0.2",
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ },
+ "@mui/material-pigment-css": {
+ "optional": true
+ },
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/material/node_modules/react-is": {
+ "version": "19.1.0",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.0.tgz",
+ "integrity": "sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==",
+ "license": "MIT"
+ },
+ "node_modules/@mui/private-theming": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.0.2.tgz",
+ "integrity": "sha512-6lt8heDC9wN8YaRqEdhqnm0cFCv08AMf4IlttFvOVn7ZdKd81PNpD/rEtPGLLwQAFyyKSxBG4/2XCgpbcdNKiA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.0",
+ "@mui/utils": "^7.0.2",
+ "prop-types": "^15.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/styled-engine": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.0.2.tgz",
+ "integrity": "sha512-11Bt4YdHGlh7sB8P75S9mRCUxTlgv7HGbr0UKz6m6Z9KLeiw1Bm9y/t3iqLLVMvSHYB6zL8X8X+LmfTE++gyBw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.0",
+ "@emotion/cache": "^11.13.5",
+ "@emotion/serialize": "^1.3.3",
+ "@emotion/sheet": "^1.4.0",
+ "csstype": "^3.1.3",
+ "prop-types": "^15.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.4.1",
+ "@emotion/styled": "^11.3.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/system": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@mui/system/-/system-7.0.2.tgz",
+ "integrity": "sha512-yFUraAWYWuKIISPPEVPSQ1NLeqmTT4qiQ+ktmyS8LO/KwHxB+NNVOacEZaIofh5x1NxY8rzphvU5X2heRZ/RDA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.0",
+ "@mui/private-theming": "^7.0.2",
+ "@mui/styled-engine": "^7.0.2",
+ "@mui/types": "^7.4.1",
+ "@mui/utils": "^7.0.2",
+ "clsx": "^2.1.1",
+ "csstype": "^3.1.3",
+ "prop-types": "^15.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.5.0",
+ "@emotion/styled": "^11.3.0",
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ },
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/types": {
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.1.tgz",
+ "integrity": "sha512-gUL8IIAI52CRXP/MixT1tJKt3SI6tVv4U/9soFsTtAsHzaJQptZ42ffdHZV3niX1ei0aUgMvOxBBN0KYqdG39g==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.0"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/utils": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.0.2.tgz",
+ "integrity": "sha512-72gcuQjPzhj/MLmPHLCgZjy2VjOH4KniR/4qRtXTTXIEwbkgcN+Y5W/rC90rWtMmZbjt9svZev/z+QHUI4j74w==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.0",
+ "@mui/types": "^7.4.1",
+ "@types/prop-types": "^15.7.14",
+ "clsx": "^2.1.1",
+ "prop-types": "^15.8.1",
+ "react-is": "^19.1.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/utils/node_modules/react-is": {
+ "version": "19.1.0",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.0.tgz",
+ "integrity": "sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==",
+ "license": "MIT"
+ },
+ "node_modules/@napi-rs/wasm-runtime": {
+ "version": "0.2.8",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.8.tgz",
+ "integrity": "sha512-OBlgKdX7gin7OIq4fadsjpg+cp2ZphvAIKucHsNfTdJiqdOmOEwQd/bHi0VwNrcw5xpBJyUw6cK/QilCqy1BSg==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "^1.4.0",
+ "@emnapi/runtime": "^1.4.0",
+ "@tybys/wasm-util": "^0.9.0"
+ }
+ },
+ "node_modules/@next/env": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-15.3.0.tgz",
+ "integrity": "sha512-6mDmHX24nWlHOlbwUiAOmMyY7KELimmi+ed8qWcJYjqXeC+G6JzPZ3QosOAfjNwgMIzwhXBiRiCgdh8axTTdTA=="
+ },
+ "node_modules/@next/eslint-plugin-next": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-15.3.0.tgz",
+ "integrity": "sha512-511UUcpWw5GWTyKfzW58U2F/bYJyjLE9e3SlnGK/zSXq7RqLlqFO8B9bitJjumLpj317fycC96KZ2RZsjGNfBw==",
+ "dev": true,
+ "dependencies": {
+ "fast-glob": "3.3.1"
+ }
+ },
+ "node_modules/@next/swc-darwin-arm64": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.3.0.tgz",
+ "integrity": "sha512-PDQcByT0ZfF2q7QR9d+PNj3wlNN4K6Q8JoHMwFyk252gWo4gKt7BF8Y2+KBgDjTFBETXZ/TkBEUY7NIIY7A/Kw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-darwin-x64": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.3.0.tgz",
+ "integrity": "sha512-m+eO21yg80En8HJ5c49AOQpFDq+nP51nu88ZOMCorvw3g//8g1JSUsEiPSiFpJo1KCTQ+jm9H0hwXK49H/RmXg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-gnu": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.3.0.tgz",
+ "integrity": "sha512-H0Kk04ZNzb6Aq/G6e0un4B3HekPnyy6D+eUBYPJv9Abx8KDYgNMWzKt4Qhj57HXV3sTTjsfc1Trc1SxuhQB+Tg==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-musl": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.3.0.tgz",
+ "integrity": "sha512-k8GVkdMrh/+J9uIv/GpnHakzgDQhrprJ/FbGQvwWmstaeFG06nnAoZCJV+wO/bb603iKV1BXt4gHG+s2buJqZA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-gnu": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.3.0.tgz",
+ "integrity": "sha512-ZMQ9yzDEts/vkpFLRAqfYO1wSpIJGlQNK9gZ09PgyjBJUmg8F/bb8fw2EXKgEaHbCc4gmqMpDfh+T07qUphp9A==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-musl": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.3.0.tgz",
+ "integrity": "sha512-RFwq5VKYTw9TMr4T3e5HRP6T4RiAzfDJ6XsxH8j/ZeYq2aLsBqCkFzwMI0FmnSsLaUbOb46Uov0VvN3UciHX5A==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-arm64-msvc": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.3.0.tgz",
+ "integrity": "sha512-a7kUbqa/k09xPjfCl0RSVAvEjAkYBYxUzSVAzk2ptXiNEL+4bDBo9wNC43G/osLA/EOGzG4CuNRFnQyIHfkRgQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-x64-msvc": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.3.0.tgz",
+ "integrity": "sha512-vHUQS4YVGJPmpjn7r5lEZuMhK5UQBNBRSB+iGDvJjaNk649pTIcRluDWNb9siunyLLiu/LDPHfvxBtNamyuLTw==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nolyfill/is-core-module": {
+ "version": "1.0.39",
+ "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz",
+ "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==",
+ "dev": true,
+ "engines": {
+ "node": ">=12.4.0"
+ }
+ },
+ "node_modules/@popperjs/core": {
+ "version": "2.11.8",
+ "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
+ "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/popperjs"
+ }
+ },
+ "node_modules/@react-three/drei": {
+ "version": "10.0.6",
+ "resolved": "https://registry.npmjs.org/@react-three/drei/-/drei-10.0.6.tgz",
+ "integrity": "sha512-QtiAv/a1BaP+ZYfp8BphV8BMSO0O1BNhIPye3Zqm5iDqgX6JeiknPR6f2UmzUdBfPLwjZEaqjfULgJFvTUWgkg==",
+ "dependencies": {
+ "@babel/runtime": "^7.26.0",
+ "@mediapipe/tasks-vision": "0.10.17",
+ "@monogrid/gainmap-js": "^3.0.6",
+ "@use-gesture/react": "^10.3.1",
+ "camera-controls": "^2.9.0",
+ "cross-env": "^7.0.3",
+ "detect-gpu": "^5.0.56",
+ "glsl-noise": "^0.0.0",
+ "hls.js": "^1.5.17",
+ "maath": "^0.10.8",
+ "meshline": "^3.3.1",
+ "stats-gl": "^2.2.8",
+ "stats.js": "^0.17.0",
+ "suspend-react": "^0.1.3",
+ "three-mesh-bvh": "^0.8.3",
+ "three-stdlib": "^2.35.6",
+ "troika-three-text": "^0.52.0",
+ "tunnel-rat": "^0.1.2",
+ "use-sync-external-store": "^1.4.0",
+ "utility-types": "^3.11.0",
+ "zustand": "^5.0.1"
+ },
+ "peerDependencies": {
+ "@react-three/fiber": "^9.0.0",
+ "react": "^19",
+ "react-dom": "^19",
+ "three": ">=0.159"
+ },
+ "peerDependenciesMeta": {
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@react-three/fiber": {
+ "version": "9.1.2",
+ "resolved": "https://registry.npmjs.org/@react-three/fiber/-/fiber-9.1.2.tgz",
+ "integrity": "sha512-k8FR9yVHV9kIF3iuOD0ds5hVymXYXfgdKklqziBVod9ZEJ8uk05Zjw29J/omU3IKeUfLNAIHfxneN3TUYM4I2w==",
+ "dependencies": {
+ "@babel/runtime": "^7.17.8",
+ "@types/react-reconciler": "^0.28.9",
+ "@types/webxr": "*",
+ "base64-js": "^1.5.1",
+ "buffer": "^6.0.3",
+ "its-fine": "^2.0.0",
+ "react-reconciler": "^0.31.0",
+ "react-use-measure": "^2.1.7",
+ "scheduler": "^0.25.0",
+ "suspend-react": "^0.1.3",
+ "use-sync-external-store": "^1.4.0",
+ "zustand": "^5.0.3"
+ },
+ "peerDependencies": {
+ "expo": ">=43.0",
+ "expo-asset": ">=8.4",
+ "expo-file-system": ">=11.0",
+ "expo-gl": ">=11.0",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0",
+ "react-native": ">=0.78",
+ "three": ">=0.156"
+ },
+ "peerDependenciesMeta": {
+ "expo": {
+ "optional": true
+ },
+ "expo-asset": {
+ "optional": true
+ },
+ "expo-file-system": {
+ "optional": true
+ },
+ "expo-gl": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ },
+ "react-native": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@react-three/fiber/node_modules/scheduler": {
+ "version": "0.25.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz",
+ "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA=="
+ },
+ "node_modules/@rtsao/scc": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
+ "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==",
+ "dev": true
+ },
+ "node_modules/@rushstack/eslint-patch": {
+ "version": "1.11.0",
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.11.0.tgz",
+ "integrity": "sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ==",
+ "dev": true
+ },
+ "node_modules/@swc/counter": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
+ "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="
+ },
+ "node_modules/@swc/helpers": {
+ "version": "0.5.15",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
+ "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
+ "dependencies": {
+ "tslib": "^2.8.0"
+ }
+ },
+ "node_modules/@tailwindcss/node": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.3.tgz",
+ "integrity": "sha512-H/6r6IPFJkCfBJZ2dKZiPJ7Ueb2wbL592+9bQEl2r73qbX6yGnmQVIfiUvDRB2YI0a3PWDrzUwkvQx1XW1bNkA==",
+ "dev": true,
+ "dependencies": {
+ "enhanced-resolve": "^5.18.1",
+ "jiti": "^2.4.2",
+ "lightningcss": "1.29.2",
+ "tailwindcss": "4.1.3"
+ }
+ },
+ "node_modules/@tailwindcss/oxide": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.3.tgz",
+ "integrity": "sha512-t16lpHCU7LBxDe/8dCj9ntyNpXaSTAgxWm1u2XQP5NiIu4KGSyrDJJRlK9hJ4U9yJxx0UKCVI67MJWFNll5mOQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 10"
+ },
+ "optionalDependencies": {
+ "@tailwindcss/oxide-android-arm64": "4.1.3",
+ "@tailwindcss/oxide-darwin-arm64": "4.1.3",
+ "@tailwindcss/oxide-darwin-x64": "4.1.3",
+ "@tailwindcss/oxide-freebsd-x64": "4.1.3",
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.3",
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.1.3",
+ "@tailwindcss/oxide-linux-arm64-musl": "4.1.3",
+ "@tailwindcss/oxide-linux-x64-gnu": "4.1.3",
+ "@tailwindcss/oxide-linux-x64-musl": "4.1.3",
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.1.3",
+ "@tailwindcss/oxide-win32-x64-msvc": "4.1.3"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-android-arm64": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.3.tgz",
+ "integrity": "sha512-cxklKjtNLwFl3mDYw4XpEfBY+G8ssSg9ADL4Wm6//5woi3XGqlxFsnV5Zb6v07dxw1NvEX2uoqsxO/zWQsgR+g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.3.tgz",
+ "integrity": "sha512-mqkf2tLR5VCrjBvuRDwzKNShRu99gCAVMkVsaEOFvv6cCjlEKXRecPu9DEnxp6STk5z+Vlbh1M5zY3nQCXMXhw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.3.tgz",
+ "integrity": "sha512-7sGraGaWzXvCLyxrc7d+CCpUN3fYnkkcso3rCzwUmo/LteAl2ZGCDlGvDD8Y/1D3ngxT8KgDj1DSwOnNewKhmg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.3.tgz",
+ "integrity": "sha512-E2+PbcbzIReaAYZe997wb9rId246yDkCwAakllAWSGqe6VTg9hHle67hfH6ExjpV2LSK/siRzBUs5wVff3RW9w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.3.tgz",
+ "integrity": "sha512-GvfbJ8wjSSjbLFFE3UYz4Eh8i4L6GiEYqCtA8j2Zd2oXriPuom/Ah/64pg/szWycQpzRnbDiJozoxFU2oJZyfg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.3.tgz",
+ "integrity": "sha512-35UkuCWQTeG9BHcBQXndDOrpsnt3Pj9NVIB4CgNiKmpG8GnCNXeMczkUpOoqcOhO6Cc/mM2W7kaQ/MTEENDDXg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.3.tgz",
+ "integrity": "sha512-dm18aQiML5QCj9DQo7wMbt1Z2tl3Giht54uVR87a84X8qRtuXxUqnKQkRDK5B4bCOmcZ580lF9YcoMkbDYTXHQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.3.tgz",
+ "integrity": "sha512-LMdTmGe/NPtGOaOfV2HuO7w07jI3cflPrVq5CXl+2O93DCewADK0uW1ORNAcfu2YxDUS035eY2W38TxrsqngxA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.3.tgz",
+ "integrity": "sha512-aalNWwIi54bbFEizwl1/XpmdDrOaCjRFQRgtbv9slWjmNPuJJTIKPHf5/XXDARc9CneW9FkSTqTbyvNecYAEGw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.3.tgz",
+ "integrity": "sha512-PEj7XR4OGTGoboTIAdXicKuWl4EQIjKHKuR+bFy9oYN7CFZo0eu74+70O4XuERX4yjqVZGAkCdglBODlgqcCXg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.3.tgz",
+ "integrity": "sha512-T8gfxECWDBENotpw3HR9SmNiHC9AOJdxs+woasRZ8Q/J4VHN0OMs7F+4yVNZ9EVN26Wv6mZbK0jv7eHYuLJLwA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/postcss": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.3.tgz",
+ "integrity": "sha512-6s5nJODm98F++QT49qn8xJKHQRamhYHfMi3X7/ltxiSQ9dyRsaFSfFkfaMsanWzf+TMYQtbk8mt5f6cCVXJwfg==",
+ "dev": true,
+ "dependencies": {
+ "@alloc/quick-lru": "^5.2.0",
+ "@tailwindcss/node": "4.1.3",
+ "@tailwindcss/oxide": "4.1.3",
+ "postcss": "^8.4.41",
+ "tailwindcss": "4.1.3"
+ }
+ },
+ "node_modules/@tweenjs/tween.js": {
+ "version": "23.1.3",
+ "resolved": "https://registry.npmjs.org/@tweenjs/tween.js/-/tween.js-23.1.3.tgz",
+ "integrity": "sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA=="
+ },
+ "node_modules/@tybys/wasm-util": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz",
+ "integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==",
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@types/draco3d": {
+ "version": "1.4.10",
+ "resolved": "https://registry.npmjs.org/@types/draco3d/-/draco3d-1.4.10.tgz",
+ "integrity": "sha512-AX22jp8Y7wwaBgAixaSvkoG4M/+PlAcm3Qs4OW8yT9DM4xUpWKeFhLueTAyZF39pviAdcDdeJoACapiAceqNcw=="
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
+ "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
+ "dev": true
+ },
+ "node_modules/@types/json-schema": {
+ "version": "7.0.15",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
+ "dev": true
+ },
+ "node_modules/@types/json5": {
+ "version": "0.0.29",
+ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
+ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
+ "dev": true
+ },
+ "node_modules/@types/node": {
+ "version": "20.17.30",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.30.tgz",
+ "integrity": "sha512-7zf4YyHA+jvBNfVrk2Gtvs6x7E8V+YDW05bNfG2XkWDJfYRXrTiP/DsB2zSYTaHX0bGIujTBQdMVAhb+j7mwpg==",
+ "dev": true,
+ "dependencies": {
+ "undici-types": "~6.19.2"
+ }
+ },
+ "node_modules/@types/offscreencanvas": {
+ "version": "2019.7.3",
+ "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.3.tgz",
+ "integrity": "sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A=="
+ },
+ "node_modules/@types/parse-json": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
+ "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
+ "license": "MIT"
+ },
+ "node_modules/@types/prop-types": {
+ "version": "15.7.14",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz",
+ "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==",
+ "license": "MIT"
+ },
+ "node_modules/@types/react": {
+ "version": "19.1.0",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.0.tgz",
+ "integrity": "sha512-UaicktuQI+9UKyA4njtDOGBD/67t8YEBt2xdfqu8+gP9hqPUPsiXlNPcpS2gVdjmis5GKPG3fCxbQLVgxsQZ8w==",
+ "dependencies": {
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@types/react-dom": {
+ "version": "19.1.2",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.2.tgz",
+ "integrity": "sha512-XGJkWF41Qq305SKWEILa1O8vzhb3aOo3ogBlSmiqNko/WmRb6QIaweuZCXjKygVDXpzXb5wyxKTSOsmkuqj+Qw==",
+ "dev": true,
+ "peerDependencies": {
+ "@types/react": "^19.0.0"
+ }
+ },
+ "node_modules/@types/react-reconciler": {
+ "version": "0.28.9",
+ "resolved": "https://registry.npmjs.org/@types/react-reconciler/-/react-reconciler-0.28.9.tgz",
+ "integrity": "sha512-HHM3nxyUZ3zAylX8ZEyrDNd2XZOnQ0D5XfunJF5FLQnZbHHYq4UWvW1QfelQNXv1ICNkwYhfxjwfnqivYB6bFg==",
+ "peerDependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@types/react-transition-group": {
+ "version": "4.4.12",
+ "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz",
+ "integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@types/stats.js": {
+ "version": "0.17.3",
+ "resolved": "https://registry.npmjs.org/@types/stats.js/-/stats.js-0.17.3.tgz",
+ "integrity": "sha512-pXNfAD3KHOdif9EQXZ9deK82HVNaXP5ZIF5RP2QG6OQFNTaY2YIetfrE9t528vEreGQvEPRDDc8muaoYeK0SxQ=="
+ },
+ "node_modules/@types/three": {
+ "version": "0.175.0",
+ "resolved": "https://registry.npmjs.org/@types/three/-/three-0.175.0.tgz",
+ "integrity": "sha512-ldMSBgtZOZ3g9kJ3kOZSEtZIEITmJOzu8eKVpkhf036GuNkM4mt0NXecrjCn5tMm1OblOF7dZehlaDypBfNokw==",
+ "dependencies": {
+ "@tweenjs/tween.js": "~23.1.3",
+ "@types/stats.js": "*",
+ "@types/webxr": "*",
+ "@webgpu/types": "*",
+ "fflate": "~0.8.2",
+ "meshoptimizer": "~0.18.1"
+ }
+ },
+ "node_modules/@types/webxr": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.5.21.tgz",
+ "integrity": "sha512-geZIAtLzjGmgY2JUi6VxXdCrTb99A7yP49lxLr2Nm/uIK0PkkxcEi4OGhoGDO4pxCf3JwGz2GiJL2Ej4K2bKaA=="
+ },
+ "node_modules/@typescript-eslint/eslint-plugin": {
+ "version": "8.29.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.29.1.tgz",
+ "integrity": "sha512-ba0rr4Wfvg23vERs3eB+P3lfj2E+2g3lhWcCVukUuhtcdUx5lSIFZlGFEBHKr+3zizDa/TvZTptdNHVZWAkSBg==",
+ "dev": true,
+ "dependencies": {
+ "@eslint-community/regexpp": "^4.10.0",
+ "@typescript-eslint/scope-manager": "8.29.1",
+ "@typescript-eslint/type-utils": "8.29.1",
+ "@typescript-eslint/utils": "8.29.1",
+ "@typescript-eslint/visitor-keys": "8.29.1",
+ "graphemer": "^1.4.0",
+ "ignore": "^5.3.1",
+ "natural-compare": "^1.4.0",
+ "ts-api-utils": "^2.0.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0",
+ "eslint": "^8.57.0 || ^9.0.0",
+ "typescript": ">=4.8.4 <5.9.0"
+ }
+ },
+ "node_modules/@typescript-eslint/parser": {
+ "version": "8.29.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.29.1.tgz",
+ "integrity": "sha512-zczrHVEqEaTwh12gWBIJWj8nx+ayDcCJs06yoNMY0kwjMWDM6+kppljY+BxWI06d2Ja+h4+WdufDcwMnnMEWmg==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/scope-manager": "8.29.1",
+ "@typescript-eslint/types": "8.29.1",
+ "@typescript-eslint/typescript-estree": "8.29.1",
+ "@typescript-eslint/visitor-keys": "8.29.1",
+ "debug": "^4.3.4"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0",
+ "typescript": ">=4.8.4 <5.9.0"
+ }
+ },
+ "node_modules/@typescript-eslint/scope-manager": {
+ "version": "8.29.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.29.1.tgz",
+ "integrity": "sha512-2nggXGX5F3YrsGN08pw4XpMLO1Rgtnn4AzTegC2MDesv6q3QaTU5yU7IbS1tf1IwCR0Hv/1EFygLn9ms6LIpDA==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/types": "8.29.1",
+ "@typescript-eslint/visitor-keys": "8.29.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@typescript-eslint/type-utils": {
+ "version": "8.29.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.29.1.tgz",
+ "integrity": "sha512-DkDUSDwZVCYN71xA4wzySqqcZsHKic53A4BLqmrWFFpOpNSoxX233lwGu/2135ymTCR04PoKiEEEvN1gFYg4Tw==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/typescript-estree": "8.29.1",
+ "@typescript-eslint/utils": "8.29.1",
+ "debug": "^4.3.4",
+ "ts-api-utils": "^2.0.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0",
+ "typescript": ">=4.8.4 <5.9.0"
+ }
+ },
+ "node_modules/@typescript-eslint/types": {
+ "version": "8.29.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.29.1.tgz",
+ "integrity": "sha512-VT7T1PuJF1hpYC3AGm2rCgJBjHL3nc+A/bhOp9sGMKfi5v0WufsX/sHCFBfNTx2F+zA6qBc/PD0/kLRLjdt8mQ==",
+ "dev": true,
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree": {
+ "version": "8.29.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.29.1.tgz",
+ "integrity": "sha512-l1enRoSaUkQxOQnbi0KPUtqeZkSiFlqrx9/3ns2rEDhGKfTa+88RmXqedC1zmVTOWrLc2e6DEJrTA51C9iLH5g==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/types": "8.29.1",
+ "@typescript-eslint/visitor-keys": "8.29.1",
+ "debug": "^4.3.4",
+ "fast-glob": "^3.3.2",
+ "is-glob": "^4.0.3",
+ "minimatch": "^9.0.4",
+ "semver": "^7.6.0",
+ "ts-api-utils": "^2.0.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4 <5.9.0"
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/fast-glob": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.8"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@typescript-eslint/utils": {
+ "version": "8.29.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.29.1.tgz",
+ "integrity": "sha512-QAkFEbytSaB8wnmB+DflhUPz6CLbFWE2SnSCrRMEa+KnXIzDYbpsn++1HGvnfAsUY44doDXmvRkO5shlM/3UfA==",
+ "dev": true,
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.4.0",
+ "@typescript-eslint/scope-manager": "8.29.1",
+ "@typescript-eslint/types": "8.29.1",
+ "@typescript-eslint/typescript-estree": "8.29.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0",
+ "typescript": ">=4.8.4 <5.9.0"
+ }
+ },
+ "node_modules/@typescript-eslint/visitor-keys": {
+ "version": "8.29.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.29.1.tgz",
+ "integrity": "sha512-RGLh5CRaUEf02viP5c1Vh1cMGffQscyHe7HPAzGpfmfflFg1wUz2rYxd+OZqwpeypYvZ8UxSxuIpF++fmOzEcg==",
+ "dev": true,
+ "dependencies": {
+ "@typescript-eslint/types": "8.29.1",
+ "eslint-visitor-keys": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@unrs/resolver-binding-darwin-arm64": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.4.1.tgz",
+ "integrity": "sha512-8Tv+Bsd0BjGwfEedIyor4inw8atppRxM5BdUnIt+3mAm/QXUm7Dw74CHnXpfZKXkp07EXJGiA8hStqCINAWhdw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-darwin-x64": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.4.1.tgz",
+ "integrity": "sha512-X8c3PhWziEMKAzZz+YAYWfwawi5AEgzy/hmfizAB4C70gMHLKmInJcp1270yYAOs7z07YVFI220pp50z24Jk3A==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-freebsd-x64": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.4.1.tgz",
+ "integrity": "sha512-UUr/nREy1UdtxXQnmLaaTXFGOcGxPwNIzeJdb3KXai3TKtC1UgNOB9s8KOA4TaxOUBR/qVgL5BvBwmUjD5yuVA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.4.1.tgz",
+ "integrity": "sha512-e3pII53dEeS8inkX6A1ad2UXE0nuoWCqik4kOxaDnls0uJUq0ntdj5d9IYd+bv5TDwf9DSge/xPOvCmRYH+Tsw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.4.1.tgz",
+ "integrity": "sha512-e/AKKd9gR+HNmVyDEPI/PIz2t0DrA3cyonHNhHVjrkxe8pMCiYiqhtn1+h+yIpHUtUlM6Y1FNIdivFa+r7wrEQ==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.4.1.tgz",
+ "integrity": "sha512-vtIu34luF1jRktlHtiwm2mjuE8oJCsFiFr8hT5+tFQdqFKjPhbJXn83LswKsOhy0GxAEevpXDI4xxEwkjuXIPA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-arm64-musl": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.4.1.tgz",
+ "integrity": "sha512-H3PaOuGyhFXiyJd+09uPhGl4gocmhyi1BRzvsP8Lv5AQO3p3/ZY7WjV4t2NkBksm9tMjf3YbOVHyPWi2eWsNYw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.4.1.tgz",
+ "integrity": "sha512-4+GmJcaaFntCi1S01YByqp8wLMjV/FyQyHVGm0vedIhL1Vfx7uHkz/sZmKsidRwokBGuxi92GFmSzqT2O8KcNA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.4.1.tgz",
+ "integrity": "sha512-6RDQVCmtFYTlhy89D5ixTqo9bTQqFhvNN0Ey1wJs5r+01Dq15gPHRXv2jF2bQATtMrOfYwv+R2ZR9ew1N1N3YQ==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-x64-gnu": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.4.1.tgz",
+ "integrity": "sha512-XpU9uzIkD86+19NjCXxlVPISMUrVXsXo5htxtuG+uJ59p5JauSRZsIxQxzzfKzkxEjdvANPM/lS1HFoX6A6QeA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-x64-musl": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.4.1.tgz",
+ "integrity": "sha512-3CDjG/spbTKCSHl66QP2ekHSD+H34i7utuDIM5gzoNBcZ1gTO0Op09Wx5cikXnhORRf9+HyDWzm37vU1PLSM1A==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-wasm32-wasi": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.4.1.tgz",
+ "integrity": "sha512-50tYhvbCTnuzMn7vmP8IV2UKF7ITo1oihygEYq9wW2DUb/Y+QMqBHJUSCABRngATjZ4shOK6f2+s0gQX6ElENQ==",
+ "cpu": [
+ "wasm32"
+ ],
+ "dev": true,
+ "optional": true,
+ "dependencies": {
+ "@napi-rs/wasm-runtime": "^0.2.8"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.4.1.tgz",
+ "integrity": "sha512-KyJiIne/AqV4IW0wyQO34wSMuJwy3VxVQOfIXIPyQ/Up6y/zi2P/WwXb78gHsLiGRUqCA9LOoCX+6dQZde0g1g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.4.1.tgz",
+ "integrity": "sha512-y2NUD7pygrBolN2NoXUrwVqBpKPhF8DiSNE5oB5/iFO49r2DpoYqdj5HPb3F42fPBH5qNqj6Zg63+xCEzAD2hw==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-win32-x64-msvc": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.4.1.tgz",
+ "integrity": "sha512-hVXaObGI2lGFmrtT77KSbPQ3I+zk9IU500wobjk0+oX59vg/0VqAzABNtt3YSQYgXTC2a/LYxekLfND/wlt0yQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@use-gesture/core": {
+ "version": "10.3.1",
+ "resolved": "https://registry.npmjs.org/@use-gesture/core/-/core-10.3.1.tgz",
+ "integrity": "sha512-WcINiDt8WjqBdUXye25anHiNxPc0VOrlT8F6LLkU6cycrOGUDyY/yyFmsg3k8i5OLvv25llc0QC45GhR/C8llw=="
+ },
+ "node_modules/@use-gesture/react": {
+ "version": "10.3.1",
+ "resolved": "https://registry.npmjs.org/@use-gesture/react/-/react-10.3.1.tgz",
+ "integrity": "sha512-Yy19y6O2GJq8f7CHf7L0nxL8bf4PZCPaVOCgJrusOeFHY1LvHgYXnmnXg6N5iwAnbgbZCDjo60SiM6IPJi9C5g==",
+ "dependencies": {
+ "@use-gesture/core": "10.3.1"
+ },
+ "peerDependencies": {
+ "react": ">= 16.8.0"
+ }
+ },
+ "node_modules/@webgpu/types": {
+ "version": "0.1.60",
+ "resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.1.60.tgz",
+ "integrity": "sha512-8B/tdfRFKdrnejqmvq95ogp8tf52oZ51p3f4QD5m5Paey/qlX4Rhhy5Y8tgFMi7Ms70HzcMMw3EQjH/jdhTwlA=="
+ },
+ "node_modules/acorn": {
+ "version": "8.14.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
+ "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
+ "dev": true,
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true,
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true
+ },
+ "node_modules/aria-query": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
+ "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/array-buffer-byte-length": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz",
+ "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "is-array-buffer": "^3.0.5"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array-includes": {
+ "version": "3.1.8",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz",
+ "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "is-string": "^1.0.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.findlast": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
+ "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.findlastindex": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz",
+ "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.9",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "es-shim-unscopables": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flat": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
+ "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flatmap": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
+ "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.tosorted": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz",
+ "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.3",
+ "es-errors": "^1.3.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/arraybuffer.prototype.slice": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
+ "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
+ "dev": true,
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.1",
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "is-array-buffer": "^3.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/ast-types-flow": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
+ "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==",
+ "dev": true
+ },
+ "node_modules/async-function": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz",
+ "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/available-typed-arrays": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
+ "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
+ "dev": true,
+ "dependencies": {
+ "possible-typed-array-names": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/axe-core": {
+ "version": "4.10.3",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.3.tgz",
+ "integrity": "sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/axobject-query": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
+ "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/babel-plugin-macros": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
+ "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.12.5",
+ "cosmiconfig": "^7.0.0",
+ "resolve": "^1.19.0"
+ },
+ "engines": {
+ "node": ">=10",
+ "npm": ">=6"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true
+ },
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/bidi-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz",
+ "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==",
+ "dependencies": {
+ "require-from-string": "^2.0.2"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "dev": true,
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/buffer": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
+ "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.2.1"
+ }
+ },
+ "node_modules/busboy": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
+ "dependencies": {
+ "streamsearch": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=10.16.0"
+ }
+ },
+ "node_modules/call-bind": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
+ "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
+ "dev": true,
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.0",
+ "es-define-property": "^1.0.0",
+ "get-intrinsic": "^1.2.4",
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/camera-controls": {
+ "version": "2.10.1",
+ "resolved": "https://registry.npmjs.org/camera-controls/-/camera-controls-2.10.1.tgz",
+ "integrity": "sha512-KnaKdcvkBJ1Irbrzl8XD6WtZltkRjp869Jx8c0ujs9K+9WD+1D7ryBsCiVqJYUqt6i/HR5FxT7RLASieUD+Q5w==",
+ "peerDependencies": {
+ "three": ">=0.126.1"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001713",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001713.tgz",
+ "integrity": "sha512-wCIWIg+A4Xr7NfhTuHdX+/FKh3+Op3LBbSp2N5Pfx6T/LhdQy3GTyoTg48BReaW/MyMNZAkTadsBtai3ldWK0Q==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ]
+ },
+ "node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/client-only": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
+ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
+ },
+ "node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/color": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
+ "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
+ "optional": true,
+ "dependencies": {
+ "color-convert": "^2.0.1",
+ "color-string": "^1.9.0"
+ },
+ "engines": {
+ "node": ">=12.5.0"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "devOptional": true,
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "devOptional": true
+ },
+ "node_modules/color-string": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
+ "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
+ "optional": true,
+ "dependencies": {
+ "color-name": "^1.0.0",
+ "simple-swizzle": "^0.2.2"
+ }
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "dev": true
+ },
+ "node_modules/convert-source-map": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
+ "license": "MIT"
+ },
+ "node_modules/cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/cross-env": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz",
+ "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==",
+ "dependencies": {
+ "cross-spawn": "^7.0.1"
+ },
+ "bin": {
+ "cross-env": "src/bin/cross-env.js",
+ "cross-env-shell": "src/bin/cross-env-shell.js"
+ },
+ "engines": {
+ "node": ">=10.14",
+ "npm": ">=6",
+ "yarn": ">=1"
+ }
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/cs588_vis": {
+ "resolved": "",
+ "link": true
+ },
+ "node_modules/csstype": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
+ },
+ "node_modules/damerau-levenshtein": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
+ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
+ "dev": true
+ },
+ "node_modules/data-view-buffer": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
+ "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/data-view-byte-length": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz",
+ "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/inspect-js"
+ }
+ },
+ "node_modules/data-view-byte-offset": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz",
+ "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true
+ },
+ "node_modules/define-data-property": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
+ "dev": true,
+ "dependencies": {
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/define-properties": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.0.1",
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/detect-gpu": {
+ "version": "5.0.70",
+ "resolved": "https://registry.npmjs.org/detect-gpu/-/detect-gpu-5.0.70.tgz",
+ "integrity": "sha512-bqerEP1Ese6nt3rFkwPnGbsUF9a4q+gMmpTVVOEzoCyeCc+y7/RvJnQZJx1JwhgQI5Ntg0Kgat8Uu7XpBqnz1w==",
+ "dependencies": {
+ "webgl-constants": "^1.1.1"
+ }
+ },
+ "node_modules/detect-libc": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
+ "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
+ "devOptional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/dom-helpers": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
+ "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.8.7",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/draco3d": {
+ "version": "1.5.7",
+ "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.5.7.tgz",
+ "integrity": "sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ=="
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "dev": true,
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "dev": true
+ },
+ "node_modules/enhanced-resolve": {
+ "version": "5.18.1",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
+ "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
+ "dev": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "license": "MIT",
+ "dependencies": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "node_modules/error-ex/node_modules/is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
+ "license": "MIT"
+ },
+ "node_modules/es-abstract": {
+ "version": "1.23.9",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.9.tgz",
+ "integrity": "sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==",
+ "dev": true,
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.2",
+ "arraybuffer.prototype.slice": "^1.0.4",
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "data-view-buffer": "^1.0.2",
+ "data-view-byte-length": "^1.0.2",
+ "data-view-byte-offset": "^1.0.1",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-set-tostringtag": "^2.1.0",
+ "es-to-primitive": "^1.3.0",
+ "function.prototype.name": "^1.1.8",
+ "get-intrinsic": "^1.2.7",
+ "get-proto": "^1.0.0",
+ "get-symbol-description": "^1.1.0",
+ "globalthis": "^1.0.4",
+ "gopd": "^1.2.0",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "internal-slot": "^1.1.0",
+ "is-array-buffer": "^3.0.5",
+ "is-callable": "^1.2.7",
+ "is-data-view": "^1.0.2",
+ "is-regex": "^1.2.1",
+ "is-shared-array-buffer": "^1.0.4",
+ "is-string": "^1.1.1",
+ "is-typed-array": "^1.1.15",
+ "is-weakref": "^1.1.0",
+ "math-intrinsics": "^1.1.0",
+ "object-inspect": "^1.13.3",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.7",
+ "own-keys": "^1.0.1",
+ "regexp.prototype.flags": "^1.5.3",
+ "safe-array-concat": "^1.1.3",
+ "safe-push-apply": "^1.0.0",
+ "safe-regex-test": "^1.1.0",
+ "set-proto": "^1.0.0",
+ "string.prototype.trim": "^1.2.10",
+ "string.prototype.trimend": "^1.0.9",
+ "string.prototype.trimstart": "^1.0.8",
+ "typed-array-buffer": "^1.0.3",
+ "typed-array-byte-length": "^1.0.3",
+ "typed-array-byte-offset": "^1.0.4",
+ "typed-array-length": "^1.0.7",
+ "unbox-primitive": "^1.1.0",
+ "which-typed-array": "^1.1.18"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-iterator-helpers": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz",
+ "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.6",
+ "es-errors": "^1.3.0",
+ "es-set-tostringtag": "^2.0.3",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.6",
+ "globalthis": "^1.0.4",
+ "gopd": "^1.2.0",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "internal-slot": "^1.1.0",
+ "iterator.prototype": "^1.1.4",
+ "safe-array-concat": "^1.1.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-set-tostringtag": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-shim-unscopables": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz",
+ "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==",
+ "dev": true,
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-to-primitive": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz",
+ "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==",
+ "dev": true,
+ "dependencies": {
+ "is-callable": "^1.2.7",
+ "is-date-object": "^1.0.5",
+ "is-symbol": "^1.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint": {
+ "version": "9.24.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.24.0.tgz",
+ "integrity": "sha512-eh/jxIEJyZrvbWRe4XuVclLPDYSYYYgLy5zXGGxD6j8zjSAxFEzI2fL/8xNq6O2yKqVt+eF2YhV+hxjV6UKXwQ==",
+ "dev": true,
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.2.0",
+ "@eslint-community/regexpp": "^4.12.1",
+ "@eslint/config-array": "^0.20.0",
+ "@eslint/config-helpers": "^0.2.0",
+ "@eslint/core": "^0.12.0",
+ "@eslint/eslintrc": "^3.3.1",
+ "@eslint/js": "9.24.0",
+ "@eslint/plugin-kit": "^0.2.7",
+ "@humanfs/node": "^0.16.6",
+ "@humanwhocodes/module-importer": "^1.0.1",
+ "@humanwhocodes/retry": "^0.4.2",
+ "@types/estree": "^1.0.6",
+ "@types/json-schema": "^7.0.15",
+ "ajv": "^6.12.4",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.6",
+ "debug": "^4.3.2",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^8.3.0",
+ "eslint-visitor-keys": "^4.2.0",
+ "espree": "^10.3.0",
+ "esquery": "^1.5.0",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^8.0.0",
+ "find-up": "^5.0.0",
+ "glob-parent": "^6.0.2",
+ "ignore": "^5.2.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.1.2",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.3"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://eslint.org/donate"
+ },
+ "peerDependencies": {
+ "jiti": "*"
+ },
+ "peerDependenciesMeta": {
+ "jiti": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-config-next": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-15.3.0.tgz",
+ "integrity": "sha512-+Z3M1W9MnJjX3W4vI9CHfKlEyhTWOUHvc5dB89FyRnzPsUkJlLWZOi8+1pInuVcSztSM4MwBFB0hIHf4Rbwu4g==",
+ "dev": true,
+ "dependencies": {
+ "@next/eslint-plugin-next": "15.3.0",
+ "@rushstack/eslint-patch": "^1.10.3",
+ "@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0",
+ "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0",
+ "eslint-import-resolver-node": "^0.3.6",
+ "eslint-import-resolver-typescript": "^3.5.2",
+ "eslint-plugin-import": "^2.31.0",
+ "eslint-plugin-jsx-a11y": "^6.10.0",
+ "eslint-plugin-react": "^7.37.0",
+ "eslint-plugin-react-hooks": "^5.0.0"
+ },
+ "peerDependencies": {
+ "eslint": "^7.23.0 || ^8.0.0 || ^9.0.0",
+ "typescript": ">=3.3.1"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-import-resolver-node": {
+ "version": "0.3.9",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
+ "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
+ "dev": true,
+ "dependencies": {
+ "debug": "^3.2.7",
+ "is-core-module": "^2.13.0",
+ "resolve": "^1.22.4"
+ }
+ },
+ "node_modules/eslint-import-resolver-node/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-import-resolver-typescript": {
+ "version": "3.10.0",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.0.tgz",
+ "integrity": "sha512-aV3/dVsT0/H9BtpNwbaqvl+0xGMRGzncLyhm793NFGvbwGGvzyAykqWZ8oZlZuGwuHkwJjhWJkG1cM3ynvd2pQ==",
+ "dev": true,
+ "dependencies": {
+ "@nolyfill/is-core-module": "1.0.39",
+ "debug": "^4.4.0",
+ "get-tsconfig": "^4.10.0",
+ "is-bun-module": "^2.0.0",
+ "stable-hash": "^0.0.5",
+ "tinyglobby": "^0.2.12",
+ "unrs-resolver": "^1.3.2"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint-import-resolver-typescript"
+ },
+ "peerDependencies": {
+ "eslint": "*",
+ "eslint-plugin-import": "*",
+ "eslint-plugin-import-x": "*"
+ },
+ "peerDependenciesMeta": {
+ "eslint-plugin-import": {
+ "optional": true
+ },
+ "eslint-plugin-import-x": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-module-utils": {
+ "version": "2.12.0",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz",
+ "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==",
+ "dev": true,
+ "dependencies": {
+ "debug": "^3.2.7"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-module-utils/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-import": {
+ "version": "2.31.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz",
+ "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==",
+ "dev": true,
+ "dependencies": {
+ "@rtsao/scc": "^1.1.0",
+ "array-includes": "^3.1.8",
+ "array.prototype.findlastindex": "^1.2.5",
+ "array.prototype.flat": "^1.3.2",
+ "array.prototype.flatmap": "^1.3.2",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.9",
+ "eslint-module-utils": "^2.12.0",
+ "hasown": "^2.0.2",
+ "is-core-module": "^2.15.1",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.8",
+ "object.groupby": "^1.0.3",
+ "object.values": "^1.2.0",
+ "semver": "^6.3.1",
+ "string.prototype.trimend": "^1.0.8",
+ "tsconfig-paths": "^3.15.0"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-import/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/eslint-plugin-jsx-a11y": {
+ "version": "6.10.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz",
+ "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==",
+ "dev": true,
+ "dependencies": {
+ "aria-query": "^5.3.2",
+ "array-includes": "^3.1.8",
+ "array.prototype.flatmap": "^1.3.2",
+ "ast-types-flow": "^0.0.8",
+ "axe-core": "^4.10.0",
+ "axobject-query": "^4.1.0",
+ "damerau-levenshtein": "^1.0.8",
+ "emoji-regex": "^9.2.2",
+ "hasown": "^2.0.2",
+ "jsx-ast-utils": "^3.3.5",
+ "language-tags": "^1.0.9",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.8",
+ "safe-regex-test": "^1.0.3",
+ "string.prototype.includes": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"
+ }
+ },
+ "node_modules/eslint-plugin-react": {
+ "version": "7.37.5",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz",
+ "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==",
+ "dev": true,
+ "dependencies": {
+ "array-includes": "^3.1.8",
+ "array.prototype.findlast": "^1.2.5",
+ "array.prototype.flatmap": "^1.3.3",
+ "array.prototype.tosorted": "^1.1.4",
+ "doctrine": "^2.1.0",
+ "es-iterator-helpers": "^1.2.1",
+ "estraverse": "^5.3.0",
+ "hasown": "^2.0.2",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.9",
+ "object.fromentries": "^2.0.8",
+ "object.values": "^1.2.1",
+ "prop-types": "^15.8.1",
+ "resolve": "^2.0.0-next.5",
+ "semver": "^6.3.1",
+ "string.prototype.matchall": "^4.0.12",
+ "string.prototype.repeat": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
+ }
+ },
+ "node_modules/eslint-plugin-react-hooks": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz",
+ "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/resolve": {
+ "version": "2.0.0-next.5",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
+ "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
+ "dev": true,
+ "dependencies": {
+ "is-core-module": "^2.13.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/eslint-plugin-react/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/eslint-scope": {
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz",
+ "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==",
+ "dev": true,
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint-visitor-keys": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
+ "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
+ "dev": true,
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/espree": {
+ "version": "10.3.0",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz",
+ "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==",
+ "dev": true,
+ "dependencies": {
+ "acorn": "^8.14.0",
+ "acorn-jsx": "^5.3.2",
+ "eslint-visitor-keys": "^4.2.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/esquery": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
+ "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
+ "dev": true,
+ "dependencies": {
+ "estraverse": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "dependencies": {
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "dev": true
+ },
+ "node_modules/fast-glob": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz",
+ "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
+ "dev": true,
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fast-glob/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "dev": true
+ },
+ "node_modules/fastq": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
+ "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
+ "dev": true,
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "node_modules/fflate": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz",
+ "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A=="
+ },
+ "node_modules/file-entry-cache": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
+ "dev": true,
+ "dependencies": {
+ "flat-cache": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=16.0.0"
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "dev": true,
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/find-root": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
+ "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
+ "license": "MIT"
+ },
+ "node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/flat-cache": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
+ "dev": true,
+ "dependencies": {
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.4"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/flatted": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
+ "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
+ "dev": true
+ },
+ "node_modules/for-each": {
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
+ "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
+ "dev": true,
+ "dependencies": {
+ "is-callable": "^1.2.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/function.prototype.name": {
+ "version": "1.1.8",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz",
+ "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "functions-have-names": "^1.2.3",
+ "hasown": "^2.0.2",
+ "is-callable": "^1.2.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/functions-have-names": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
+ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "dev": true,
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/get-symbol-description": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz",
+ "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-tsconfig": {
+ "version": "4.10.0",
+ "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz",
+ "integrity": "sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==",
+ "dev": true,
+ "dependencies": {
+ "resolve-pkg-maps": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+ "dev": true,
+ "dependencies": {
+ "is-glob": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/globals": {
+ "version": "14.0.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
+ "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/globalthis": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
+ "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
+ "dev": true,
+ "dependencies": {
+ "define-properties": "^1.2.1",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/glsl-noise": {
+ "version": "0.0.0",
+ "resolved": "https://registry.npmjs.org/glsl-noise/-/glsl-noise-0.0.0.tgz",
+ "integrity": "sha512-b/ZCF6amfAUb7dJM/MxRs7AetQEahYzJ8PtgfrmEdtw6uyGOr+ZSGtgjFm6mfsBkxJ4d2W7kg+Nlqzqvn3Bc0w=="
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "dev": true
+ },
+ "node_modules/graphemer": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
+ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
+ "dev": true
+ },
+ "node_modules/has-bigints": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz",
+ "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/has-property-descriptors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
+ "dev": true,
+ "dependencies": {
+ "es-define-property": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-proto": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
+ "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
+ "dev": true,
+ "dependencies": {
+ "dunder-proto": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+ "dev": true,
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hls.js": {
+ "version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.6.2.tgz",
+ "integrity": "sha512-rx+pETSCJEDThm/JCm8CuadcAC410cVjb1XVXFNDKFuylaayHk1+tFxhkjvnMDAfqsJHxZXDAJ3Uc2d5xQyWlQ=="
+ },
+ "node_modules/hoist-non-react-statics": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
+ "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "react-is": "^16.7.0"
+ }
+ },
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "dev": true,
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/immediate": {
+ "version": "3.0.6",
+ "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
+ "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ=="
+ },
+ "node_modules/import-fresh": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+ "dependencies": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/internal-slot": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
+ "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "hasown": "^2.0.2",
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/is-array-buffer": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
+ "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-arrayish": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
+ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
+ "optional": true
+ },
+ "node_modules/is-async-function": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz",
+ "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==",
+ "dev": true,
+ "dependencies": {
+ "async-function": "^1.0.0",
+ "call-bound": "^1.0.3",
+ "get-proto": "^1.0.1",
+ "has-tostringtag": "^1.0.2",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-bigint": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
+ "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
+ "dev": true,
+ "dependencies": {
+ "has-bigints": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-boolean-object": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
+ "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-bun-module": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz",
+ "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==",
+ "dev": true,
+ "dependencies": {
+ "semver": "^7.7.1"
+ }
+ },
+ "node_modules/is-callable": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-core-module": {
+ "version": "2.16.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-data-view": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
+ "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "get-intrinsic": "^1.2.6",
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-date-object": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
+ "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-finalizationregistry": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
+ "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-generator-function": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz",
+ "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "get-proto": "^1.0.0",
+ "has-tostringtag": "^1.0.2",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-map": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
+ "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-number-object": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
+ "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-promise": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
+ "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ=="
+ },
+ "node_modules/is-regex": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
+ "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "gopd": "^1.2.0",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-set": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
+ "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-shared-array-buffer": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz",
+ "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-string": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
+ "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-symbol": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
+ "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "has-symbols": "^1.1.0",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-typed-array": {
+ "version": "1.1.15",
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
+ "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
+ "dev": true,
+ "dependencies": {
+ "which-typed-array": "^1.1.16"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakmap": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
+ "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakref": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz",
+ "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakset": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
+ "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/isarray": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
+ "dev": true
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
+ },
+ "node_modules/iterator.prototype": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz",
+ "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.6",
+ "get-proto": "^1.0.0",
+ "has-symbols": "^1.1.0",
+ "set-function-name": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/its-fine": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/its-fine/-/its-fine-2.0.0.tgz",
+ "integrity": "sha512-KLViCmWx94zOvpLwSlsx6yOCeMhZYaxrJV87Po5k/FoZzcPSahvK5qJ7fYhS61sZi5ikmh2S3Hz55A2l3U69ng==",
+ "dependencies": {
+ "@types/react-reconciler": "^0.28.9"
+ },
+ "peerDependencies": {
+ "react": "^19.0.0"
+ }
+ },
+ "node_modules/jiti": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
+ "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
+ "dev": true,
+ "bin": {
+ "jiti": "lib/jiti-cli.mjs"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
+ },
+ "node_modules/js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "dev": true,
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/jsesc": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true
+ },
+ "node_modules/json-parse-even-better-errors": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
+ "license": "MIT"
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true
+ },
+ "node_modules/json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
+ "dev": true
+ },
+ "node_modules/json5": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
+ "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
+ "node_modules/jsx-ast-utils": {
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
+ "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
+ "dev": true,
+ "dependencies": {
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "object.assign": "^4.1.4",
+ "object.values": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
+ "dev": true,
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
+ "node_modules/language-subtag-registry": {
+ "version": "0.3.23",
+ "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz",
+ "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==",
+ "dev": true
+ },
+ "node_modules/language-tags": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz",
+ "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==",
+ "dev": true,
+ "dependencies": {
+ "language-subtag-registry": "^0.3.20"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/levn": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
+ "dev": true,
+ "dependencies": {
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/lie": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
+ "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
+ "dependencies": {
+ "immediate": "~3.0.5"
+ }
+ },
+ "node_modules/lightningcss": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.2.tgz",
+ "integrity": "sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==",
+ "dev": true,
+ "dependencies": {
+ "detect-libc": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "lightningcss-darwin-arm64": "1.29.2",
+ "lightningcss-darwin-x64": "1.29.2",
+ "lightningcss-freebsd-x64": "1.29.2",
+ "lightningcss-linux-arm-gnueabihf": "1.29.2",
+ "lightningcss-linux-arm64-gnu": "1.29.2",
+ "lightningcss-linux-arm64-musl": "1.29.2",
+ "lightningcss-linux-x64-gnu": "1.29.2",
+ "lightningcss-linux-x64-musl": "1.29.2",
+ "lightningcss-win32-arm64-msvc": "1.29.2",
+ "lightningcss-win32-x64-msvc": "1.29.2"
+ }
+ },
+ "node_modules/lightningcss-darwin-arm64": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.29.2.tgz",
+ "integrity": "sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-x64": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.2.tgz",
+ "integrity": "sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-freebsd-x64": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.2.tgz",
+ "integrity": "sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.2.tgz",
+ "integrity": "sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-gnu": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.2.tgz",
+ "integrity": "sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-musl": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.2.tgz",
+ "integrity": "sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-gnu": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.2.tgz",
+ "integrity": "sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-musl": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.2.tgz",
+ "integrity": "sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-arm64-msvc": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.2.tgz",
+ "integrity": "sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-x64-msvc": {
+ "version": "1.29.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.2.tgz",
+ "integrity": "sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lines-and-columns": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
+ "license": "MIT"
+ },
+ "node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/lodash.merge": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
+ "dev": true
+ },
+ "node_modules/loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dependencies": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
+ }
+ },
+ "node_modules/maath": {
+ "version": "0.10.8",
+ "resolved": "https://registry.npmjs.org/maath/-/maath-0.10.8.tgz",
+ "integrity": "sha512-tRvbDF0Pgqz+9XUa4jjfgAQ8/aPKmQdWXilFu2tMy4GWj4NOsx99HlULO4IeREfbO3a0sA145DZYyvXPkybm0g==",
+ "peerDependencies": {
+ "@types/three": ">=0.134.0",
+ "three": ">=0.134.0"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/meshline": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/meshline/-/meshline-3.3.1.tgz",
+ "integrity": "sha512-/TQj+JdZkeSUOl5Mk2J7eLcYTLiQm2IDzmlSvYm7ov15anEcDJ92GHqqazxTSreeNgfnYu24kiEvvv0WlbCdFQ==",
+ "peerDependencies": {
+ "three": ">=0.137"
+ }
+ },
+ "node_modules/meshoptimizer": {
+ "version": "0.18.1",
+ "resolved": "https://registry.npmjs.org/meshoptimizer/-/meshoptimizer-0.18.1.tgz",
+ "integrity": "sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw=="
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+ "dev": true,
+ "dependencies": {
+ "braces": "^3.0.3",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/minimist": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
+ "dev": true
+ },
+ "node_modules/next": {
+ "version": "15.3.0",
+ "resolved": "https://registry.npmjs.org/next/-/next-15.3.0.tgz",
+ "integrity": "sha512-k0MgP6BsK8cZ73wRjMazl2y2UcXj49ZXLDEgx6BikWuby/CN+nh81qFFI16edgd7xYpe/jj2OZEIwCoqnzz0bQ==",
+ "dependencies": {
+ "@next/env": "15.3.0",
+ "@swc/counter": "0.1.3",
+ "@swc/helpers": "0.5.15",
+ "busboy": "1.6.0",
+ "caniuse-lite": "^1.0.30001579",
+ "postcss": "8.4.31",
+ "styled-jsx": "5.1.6"
+ },
+ "bin": {
+ "next": "dist/bin/next"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^19.8.0 || >= 20.0.0"
+ },
+ "optionalDependencies": {
+ "@next/swc-darwin-arm64": "15.3.0",
+ "@next/swc-darwin-x64": "15.3.0",
+ "@next/swc-linux-arm64-gnu": "15.3.0",
+ "@next/swc-linux-arm64-musl": "15.3.0",
+ "@next/swc-linux-x64-gnu": "15.3.0",
+ "@next/swc-linux-x64-musl": "15.3.0",
+ "@next/swc-win32-arm64-msvc": "15.3.0",
+ "@next/swc-win32-x64-msvc": "15.3.0",
+ "sharp": "^0.34.1"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0",
+ "@playwright/test": "^1.41.2",
+ "babel-plugin-react-compiler": "*",
+ "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
+ "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
+ "sass": "^1.3.0"
+ },
+ "peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
+ "@playwright/test": {
+ "optional": true
+ },
+ "babel-plugin-react-compiler": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/next/node_modules/postcss": {
+ "version": "8.4.31",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
+ "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.6",
+ "picocolors": "^1.0.0",
+ "source-map-js": "^1.0.2"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.assign": {
+ "version": "4.1.7",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
+ "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0",
+ "has-symbols": "^1.1.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.entries": {
+ "version": "1.1.9",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz",
+ "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.fromentries": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
+ "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.groupby": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
+ "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.values": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz",
+ "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/optionator": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
+ "dev": true,
+ "dependencies": {
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0",
+ "word-wrap": "^1.2.5"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/own-keys": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
+ "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==",
+ "dev": true,
+ "dependencies": {
+ "get-intrinsic": "^1.2.6",
+ "object-keys": "^1.1.1",
+ "safe-push-apply": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dependencies": {
+ "callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/parse-json": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
+ },
+ "node_modules/path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true,
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/possible-typed-array-names": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
+ "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.3",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
+ "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "nanoid": "^3.3.8",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/potpack": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz",
+ "integrity": "sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ=="
+ },
+ "node_modules/prelude-ls": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
+ "dev": true,
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/promise-worker-transferable": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/promise-worker-transferable/-/promise-worker-transferable-1.0.4.tgz",
+ "integrity": "sha512-bN+0ehEnrXfxV2ZQvU2PetO0n4gqBD4ulq3MI1WOPLgr7/Mg9yRQkX5+0v1vagr74ZTsl7XtzlaYDo2EuCeYJw==",
+ "dependencies": {
+ "is-promise": "^2.1.0",
+ "lie": "^3.0.2"
+ }
+ },
+ "node_modules/prop-types": {
+ "version": "15.8.1",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
+ "dependencies": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
+ }
+ },
+ "node_modules/punycode": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/react": {
+ "version": "19.1.0",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.1.0.tgz",
+ "integrity": "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-dom": {
+ "version": "19.1.0",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.0.tgz",
+ "integrity": "sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==",
+ "dependencies": {
+ "scheduler": "^0.26.0"
+ },
+ "peerDependencies": {
+ "react": "^19.1.0"
+ }
+ },
+ "node_modules/react-icons": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz",
+ "integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==",
+ "peerDependencies": {
+ "react": "*"
+ }
+ },
+ "node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
+ },
+ "node_modules/react-reconciler": {
+ "version": "0.31.0",
+ "resolved": "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.31.0.tgz",
+ "integrity": "sha512-7Ob7Z+URmesIsIVRjnLoDGwBEG/tVitidU0nMsqX/eeJaLY89RISO/10ERe0MqmzuKUUB1rmY+h1itMbUHg9BQ==",
+ "dependencies": {
+ "scheduler": "^0.25.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "peerDependencies": {
+ "react": "^19.0.0"
+ }
+ },
+ "node_modules/react-reconciler/node_modules/scheduler": {
+ "version": "0.25.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz",
+ "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA=="
+ },
+ "node_modules/react-transition-group": {
+ "version": "4.4.5",
+ "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
+ "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@babel/runtime": "^7.5.5",
+ "dom-helpers": "^5.0.1",
+ "loose-envify": "^1.4.0",
+ "prop-types": "^15.6.2"
+ },
+ "peerDependencies": {
+ "react": ">=16.6.0",
+ "react-dom": ">=16.6.0"
+ }
+ },
+ "node_modules/react-use-measure": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/react-use-measure/-/react-use-measure-2.1.7.tgz",
+ "integrity": "sha512-KrvcAo13I/60HpwGO5jpW7E9DfusKyLPLvuHlUyP5zqnmAPhNc6qTRjUQrdTADl0lpPpDVU2/Gg51UlOGHXbdg==",
+ "peerDependencies": {
+ "react": ">=16.13",
+ "react-dom": ">=16.13"
+ },
+ "peerDependenciesMeta": {
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/reflect.getprototypeof": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
+ "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.9",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.7",
+ "get-proto": "^1.0.1",
+ "which-builtin-type": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/regenerator-runtime": {
+ "version": "0.14.1",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
+ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
+ },
+ "node_modules/regexp.prototype.flags": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz",
+ "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-errors": "^1.3.0",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "set-function-name": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/require-from-string": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/resolve": {
+ "version": "1.22.10",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
+ "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
+ "dependencies": {
+ "is-core-module": "^2.16.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/resolve-pkg-maps": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
+ "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
+ }
+ },
+ "node_modules/reusify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
+ "dev": true,
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "node_modules/safe-array-concat": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
+ "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "get-intrinsic": "^1.2.6",
+ "has-symbols": "^1.1.0",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">=0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safe-push-apply": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz",
+ "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safe-regex-test": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
+ "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "is-regex": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/scheduler": {
+ "version": "0.26.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz",
+ "integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA=="
+ },
+ "node_modules/semver": {
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
+ "devOptional": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/set-function-length": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
+ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-function-name": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
+ "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
+ "dev": true,
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz",
+ "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==",
+ "dev": true,
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/sharp": {
+ "version": "0.34.1",
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.1.tgz",
+ "integrity": "sha512-1j0w61+eVxu7DawFJtnfYcvSv6qPFvfTaqzTQ2BLknVhHTwGS8sc63ZBF4rzkWMBVKybo4S5OBtDdZahh2A1xg==",
+ "hasInstallScript": true,
+ "optional": true,
+ "dependencies": {
+ "color": "^4.2.3",
+ "detect-libc": "^2.0.3",
+ "semver": "^7.7.1"
+ },
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-darwin-arm64": "0.34.1",
+ "@img/sharp-darwin-x64": "0.34.1",
+ "@img/sharp-libvips-darwin-arm64": "1.1.0",
+ "@img/sharp-libvips-darwin-x64": "1.1.0",
+ "@img/sharp-libvips-linux-arm": "1.1.0",
+ "@img/sharp-libvips-linux-arm64": "1.1.0",
+ "@img/sharp-libvips-linux-ppc64": "1.1.0",
+ "@img/sharp-libvips-linux-s390x": "1.1.0",
+ "@img/sharp-libvips-linux-x64": "1.1.0",
+ "@img/sharp-libvips-linuxmusl-arm64": "1.1.0",
+ "@img/sharp-libvips-linuxmusl-x64": "1.1.0",
+ "@img/sharp-linux-arm": "0.34.1",
+ "@img/sharp-linux-arm64": "0.34.1",
+ "@img/sharp-linux-s390x": "0.34.1",
+ "@img/sharp-linux-x64": "0.34.1",
+ "@img/sharp-linuxmusl-arm64": "0.34.1",
+ "@img/sharp-linuxmusl-x64": "0.34.1",
+ "@img/sharp-wasm32": "0.34.1",
+ "@img/sharp-win32-ia32": "0.34.1",
+ "@img/sharp-win32-x64": "0.34.1"
+ }
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/side-channel": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "dev": true,
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/simple-swizzle": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
+ "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
+ "optional": true,
+ "dependencies": {
+ "is-arrayish": "^0.3.1"
+ }
+ },
+ "node_modules/source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/stable-hash": {
+ "version": "0.0.5",
+ "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz",
+ "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==",
+ "dev": true
+ },
+ "node_modules/stats-gl": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/stats-gl/-/stats-gl-2.4.2.tgz",
+ "integrity": "sha512-g5O9B0hm9CvnM36+v7SFl39T7hmAlv541tU81ME8YeSb3i1CIP5/QdDeSB3A0la0bKNHpxpwxOVRo2wFTYEosQ==",
+ "dependencies": {
+ "@types/three": "*",
+ "three": "^0.170.0"
+ },
+ "peerDependencies": {
+ "@types/three": "*",
+ "three": "*"
+ }
+ },
+ "node_modules/stats-gl/node_modules/three": {
+ "version": "0.170.0",
+ "resolved": "https://registry.npmjs.org/three/-/three-0.170.0.tgz",
+ "integrity": "sha512-FQK+LEpYc0fBD+J8g6oSEyyNzjp+Q7Ks1C568WWaoMRLW+TkNNWmenWeGgJjV105Gd+p/2ql1ZcjYvNiPZBhuQ=="
+ },
+ "node_modules/stats.js": {
+ "version": "0.17.0",
+ "resolved": "https://registry.npmjs.org/stats.js/-/stats.js-0.17.0.tgz",
+ "integrity": "sha512-hNKz8phvYLPEcRkeG1rsGmV5ChMjKDAWU7/OJJdDErPBNChQXxCo3WZurGpnWc6gZhAzEPFad1aVgyOANH1sMw=="
+ },
+ "node_modules/streamsearch": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
+ "node_modules/string.prototype.includes": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz",
+ "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/string.prototype.matchall": {
+ "version": "4.0.12",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz",
+ "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.6",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.6",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "internal-slot": "^1.1.0",
+ "regexp.prototype.flags": "^1.5.3",
+ "set-function-name": "^2.0.2",
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.repeat": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz",
+ "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==",
+ "dev": true,
+ "dependencies": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.5"
+ }
+ },
+ "node_modules/string.prototype.trim": {
+ "version": "1.2.10",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
+ "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "define-data-property": "^1.1.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-object-atoms": "^1.0.0",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimend": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
+ "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.2",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimstart": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
+ "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
+ "dev": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/strip-json-comments": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
+ "dev": true,
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/styled-jsx": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
+ "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
+ "dependencies": {
+ "client-only": "0.0.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "peerDependencies": {
+ "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
+ },
+ "peerDependenciesMeta": {
+ "@babel/core": {
+ "optional": true
+ },
+ "babel-plugin-macros": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/stylis": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz",
+ "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==",
+ "license": "MIT"
+ },
+ "node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/suspend-react": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/suspend-react/-/suspend-react-0.1.3.tgz",
+ "integrity": "sha512-aqldKgX9aZqpoDp3e8/BZ8Dm7x1pJl+qI3ZKxDN0i/IQTWUwBx/ManmlVJ3wowqbno6c2bmiIfs+Um6LbsjJyQ==",
+ "peerDependencies": {
+ "react": ">=17.0"
+ }
+ },
+ "node_modules/tailwindcss": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.3.tgz",
+ "integrity": "sha512-2Q+rw9vy1WFXu5cIxlvsabCwhU2qUwodGq03ODhLJ0jW4ek5BUtoCsnLB0qG+m8AHgEsSJcJGDSDe06FXlP74g==",
+ "dev": true
+ },
+ "node_modules/tapable": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
+ "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/three": {
+ "version": "0.175.0",
+ "resolved": "https://registry.npmjs.org/three/-/three-0.175.0.tgz",
+ "integrity": "sha512-nNE3pnTHxXN/Phw768u0Grr7W4+rumGg/H6PgeseNJojkJtmeHJfZWi41Gp2mpXl1pg1pf1zjwR4McM1jTqkpg=="
+ },
+ "node_modules/three-mesh-bvh": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/three-mesh-bvh/-/three-mesh-bvh-0.8.3.tgz",
+ "integrity": "sha512-4G5lBaF+g2auKX3P0yqx+MJC6oVt6sB5k+CchS6Ob0qvH0YIhuUk1eYr7ktsIpY+albCqE80/FVQGV190PmiAg==",
+ "peerDependencies": {
+ "three": ">= 0.159.0"
+ }
+ },
+ "node_modules/three-stdlib": {
+ "version": "2.35.15",
+ "resolved": "https://registry.npmjs.org/three-stdlib/-/three-stdlib-2.35.15.tgz",
+ "integrity": "sha512-2XbhiOV7jVCchUoWxTmsj5dNhTe8eYb58Nyrfoa2F2yL+6h/+2VRaU2gENljRW1d/P1mk4/uwNzbdkKWV3hwzw==",
+ "dependencies": {
+ "@types/draco3d": "^1.4.0",
+ "@types/offscreencanvas": "^2019.6.4",
+ "@types/webxr": "^0.5.2",
+ "draco3d": "^1.4.1",
+ "fflate": "^0.6.9",
+ "potpack": "^1.0.1"
+ },
+ "peerDependencies": {
+ "three": ">=0.128.0"
+ }
+ },
+ "node_modules/three-stdlib/node_modules/fflate": {
+ "version": "0.6.10",
+ "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.6.10.tgz",
+ "integrity": "sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg=="
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.12",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz",
+ "integrity": "sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==",
+ "dev": true,
+ "dependencies": {
+ "fdir": "^6.4.3",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/tinyglobby/node_modules/fdir": {
+ "version": "6.4.3",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz",
+ "integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==",
+ "dev": true,
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/tinyglobby/node_modules/picomatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
+ "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
+ "dev": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/troika-three-text": {
+ "version": "0.52.4",
+ "resolved": "https://registry.npmjs.org/troika-three-text/-/troika-three-text-0.52.4.tgz",
+ "integrity": "sha512-V50EwcYGruV5rUZ9F4aNsrytGdKcXKALjEtQXIOBfhVoZU9VAqZNIoGQ3TMiooVqFAbR1w15T+f+8gkzoFzawg==",
+ "dependencies": {
+ "bidi-js": "^1.0.2",
+ "troika-three-utils": "^0.52.4",
+ "troika-worker-utils": "^0.52.0",
+ "webgl-sdf-generator": "1.1.1"
+ },
+ "peerDependencies": {
+ "three": ">=0.125.0"
+ }
+ },
+ "node_modules/troika-three-utils": {
+ "version": "0.52.4",
+ "resolved": "https://registry.npmjs.org/troika-three-utils/-/troika-three-utils-0.52.4.tgz",
+ "integrity": "sha512-NORAStSVa/BDiG52Mfudk4j1FG4jC4ILutB3foPnfGbOeIs9+G5vZLa0pnmnaftZUGm4UwSoqEpWdqvC7zms3A==",
+ "peerDependencies": {
+ "three": ">=0.125.0"
+ }
+ },
+ "node_modules/troika-worker-utils": {
+ "version": "0.52.0",
+ "resolved": "https://registry.npmjs.org/troika-worker-utils/-/troika-worker-utils-0.52.0.tgz",
+ "integrity": "sha512-W1CpvTHykaPH5brv5VHLfQo9D1OYuo0cSBEUQFFT/nBUzM8iD6Lq2/tgG/f1OelbAS1WtaTPQzE5uM49egnngw=="
+ },
+ "node_modules/ts-api-utils": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz",
+ "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=18.12"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4"
+ }
+ },
+ "node_modules/tsconfig-paths": {
+ "version": "3.15.0",
+ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
+ "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
+ "dev": true,
+ "dependencies": {
+ "@types/json5": "^0.0.29",
+ "json5": "^1.0.2",
+ "minimist": "^1.2.6",
+ "strip-bom": "^3.0.0"
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="
+ },
+ "node_modules/tunnel-rat": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/tunnel-rat/-/tunnel-rat-0.1.2.tgz",
+ "integrity": "sha512-lR5VHmkPhzdhrM092lI2nACsLO4QubF0/yoOhzX7c+wIpbN1GjHNzCc91QlpxBi+cnx8vVJ+Ur6vL5cEoQPFpQ==",
+ "dependencies": {
+ "zustand": "^4.3.2"
+ }
+ },
+ "node_modules/tunnel-rat/node_modules/zustand": {
+ "version": "4.5.6",
+ "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.6.tgz",
+ "integrity": "sha512-ibr/n1hBzLLj5Y+yUcU7dYw8p6WnIVzdJbnX+1YpaScvZVF2ziugqHs+LAmHw4lWO9c/zRj+K1ncgWDQuthEdQ==",
+ "dependencies": {
+ "use-sync-external-store": "^1.2.2"
+ },
+ "engines": {
+ "node": ">=12.7.0"
+ },
+ "peerDependencies": {
+ "@types/react": ">=16.8",
+ "immer": ">=9.0.6",
+ "react": ">=16.8"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "immer": {
+ "optional": true
+ },
+ "react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/type-check": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
+ "dev": true,
+ "dependencies": {
+ "prelude-ls": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/typed-array-buffer": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
+ "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/typed-array-byte-length": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz",
+ "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "for-each": "^0.3.3",
+ "gopd": "^1.2.0",
+ "has-proto": "^1.2.0",
+ "is-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-byte-offset": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
+ "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
+ "dev": true,
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "for-each": "^0.3.3",
+ "gopd": "^1.2.0",
+ "has-proto": "^1.2.0",
+ "is-typed-array": "^1.1.15",
+ "reflect.getprototypeof": "^1.0.9"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-length": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
+ "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
+ "dev": true,
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "is-typed-array": "^1.1.13",
+ "possible-typed-array-names": "^1.0.0",
+ "reflect.getprototypeof": "^1.0.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typescript": {
+ "version": "5.8.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
+ "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
+ "dev": true,
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
+ "node_modules/unbox-primitive": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
+ "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-bigints": "^1.0.2",
+ "has-symbols": "^1.1.0",
+ "which-boxed-primitive": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "6.19.8",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz",
+ "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==",
+ "dev": true
+ },
+ "node_modules/unrs-resolver": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.4.1.tgz",
+ "integrity": "sha512-MhPB3wBI5BR8TGieTb08XuYlE8oFVEXdSAgat3psdlRyejl8ojQ8iqPcjh094qCZ1r+TnkxzP6BeCd/umfHckQ==",
+ "dev": true,
+ "funding": {
+ "url": "https://github.com/sponsors/JounQin"
+ },
+ "optionalDependencies": {
+ "@unrs/resolver-binding-darwin-arm64": "1.4.1",
+ "@unrs/resolver-binding-darwin-x64": "1.4.1",
+ "@unrs/resolver-binding-freebsd-x64": "1.4.1",
+ "@unrs/resolver-binding-linux-arm-gnueabihf": "1.4.1",
+ "@unrs/resolver-binding-linux-arm-musleabihf": "1.4.1",
+ "@unrs/resolver-binding-linux-arm64-gnu": "1.4.1",
+ "@unrs/resolver-binding-linux-arm64-musl": "1.4.1",
+ "@unrs/resolver-binding-linux-ppc64-gnu": "1.4.1",
+ "@unrs/resolver-binding-linux-s390x-gnu": "1.4.1",
+ "@unrs/resolver-binding-linux-x64-gnu": "1.4.1",
+ "@unrs/resolver-binding-linux-x64-musl": "1.4.1",
+ "@unrs/resolver-binding-wasm32-wasi": "1.4.1",
+ "@unrs/resolver-binding-win32-arm64-msvc": "1.4.1",
+ "@unrs/resolver-binding-win32-ia32-msvc": "1.4.1",
+ "@unrs/resolver-binding-win32-x64-msvc": "1.4.1"
+ }
+ },
+ "node_modules/urdf-loader": {
+ "version": "0.12.4",
+ "resolved": "https://registry.npmjs.org/urdf-loader/-/urdf-loader-0.12.4.tgz",
+ "integrity": "sha512-CmBVJmsGDQpWLN3cg9lYkgMGlpbdKqaXDhvG4XXkpADRcYMDWGxHsu0U/1FQcvMq5oke7C65WJoSG2/MyX7HrA==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "three": ">=0.152.0"
+ }
+ },
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "node_modules/use-sync-external-store": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz",
+ "integrity": "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
+ }
+ },
+ "node_modules/utility-types": {
+ "version": "3.11.0",
+ "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.11.0.tgz",
+ "integrity": "sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/webgl-constants": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/webgl-constants/-/webgl-constants-1.1.1.tgz",
+ "integrity": "sha512-LkBXKjU5r9vAW7Gcu3T5u+5cvSvh5WwINdr0C+9jpzVB41cjQAP5ePArDtk/WHYdVj0GefCgM73BA7FlIiNtdg=="
+ },
+ "node_modules/webgl-sdf-generator": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/webgl-sdf-generator/-/webgl-sdf-generator-1.1.1.tgz",
+ "integrity": "sha512-9Z0JcMTFxeE+b2x1LJTdnaT8rT8aEp7MVxkNwoycNmJWwPdzoXzMh0BjJSh/AEFP+KPYZUli814h8bJZFIZ2jA=="
+ },
+ "node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/which-boxed-primitive": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
+ "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
+ "dev": true,
+ "dependencies": {
+ "is-bigint": "^1.1.0",
+ "is-boolean-object": "^1.2.1",
+ "is-number-object": "^1.1.1",
+ "is-string": "^1.1.1",
+ "is-symbol": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-builtin-type": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
+ "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
+ "dev": true,
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "function.prototype.name": "^1.1.6",
+ "has-tostringtag": "^1.0.2",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.1.0",
+ "is-finalizationregistry": "^1.1.0",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.2.1",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.1.0",
+ "which-collection": "^1.0.2",
+ "which-typed-array": "^1.1.16"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-collection": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
+ "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
+ "dev": true,
+ "dependencies": {
+ "is-map": "^2.0.3",
+ "is-set": "^2.0.3",
+ "is-weakmap": "^2.0.2",
+ "is-weakset": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-typed-array": {
+ "version": "1.1.19",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz",
+ "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==",
+ "dev": true,
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "for-each": "^0.3.5",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/word-wrap": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
+ "dev": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/yaml": {
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
+ "license": "ISC",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/zustand": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.3.tgz",
+ "integrity": "sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==",
+ "engines": {
+ "node": ">=12.20.0"
+ },
+ "peerDependencies": {
+ "@types/react": ">=18.0.0",
+ "immer": ">=9.0.6",
+ "react": ">=18.0.0",
+ "use-sync-external-store": ">=1.2.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "immer": {
+ "optional": true
+ },
+ "react": {
+ "optional": true
+ },
+ "use-sync-external-store": {
+ "optional": true
+ }
+ }
+ }
+ }
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/package.json b/GEMstack/onboard/visualization/sr_viz/threeD/package.json
new file mode 100644
index 000000000..f86ed25a2
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/package.json
@@ -0,0 +1,37 @@
+{
+ "name": "cs588_vis",
+ "version": "0.1.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev --turbopack",
+ "build": "next build",
+ "start": "next start",
+ "lint": "next lint"
+ },
+ "dependencies": {
+ "@emotion/react": "^11.14.0",
+ "@emotion/styled": "^11.14.0",
+ "@mui/icons-material": "^7.0.2",
+ "@mui/material": "^7.0.2",
+ "@react-three/drei": "^10.0.6",
+ "@react-three/fiber": "^9.1.2",
+ "cs588_vis": "file:",
+ "next": "15.3.0",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0",
+ "react-icons": "^5.5.0",
+ "three": "^0.175.0",
+ "urdf-loader": "^0.12.4"
+ },
+ "devDependencies": {
+ "@eslint/eslintrc": "^3",
+ "@tailwindcss/postcss": "^4",
+ "@types/node": "^20",
+ "@types/react": "^19",
+ "@types/react-dom": "^19",
+ "eslint": "^9",
+ "eslint-config-next": "15.3.0",
+ "tailwindcss": "^4",
+ "typescript": "^5"
+ }
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/postcss.config.mjs b/GEMstack/onboard/visualization/sr_viz/threeD/postcss.config.mjs
new file mode 100644
index 000000000..c7bcb4b1e
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/postcss.config.mjs
@@ -0,0 +1,5 @@
+const config = {
+ plugins: ["@tailwindcss/postcss"],
+};
+
+export default config;
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/gem_e2.urdf b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/gem_e2.urdf
new file mode 100644
index 000000000..1989feab6
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/gem_e2.urdf
@@ -0,0 +1,1473 @@
+
+
+
+
+
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ 10000
+ 100000000
+ 1000000
+ 1e8
+ 0.001
+ 100.0
+ Gazebo/Blue
+
+
+ 10000
+ 100000000
+ 1000000
+ 1e8
+ 0.001
+ 100.0
+ Gazebo/Blue
+
+
+ 0.9
+ 1000000
+ 0.005
+ 1e8
+ Gazebo/Black
+
+
+ 0.9
+ 1000000
+ 0.005
+ 1e8
+ Gazebo/Black
+
+
+ 0.9
+ 1000000
+ 0.005
+ 1e8
+ Gazebo/Black
+
+
+ 0.9
+ 1000000
+ 0.005
+ 1e8
+ Gazebo/Black
+
+
+
+
+ Gazebo/White
+
+
+ Gazebo/Grey
+
+
+ Gazebo/White
+
+
+
+ Gazebo/Black
+
+
+ Gazebo/Black
+
+
+ Gazebo/Black
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/White
+
+
+ Gazebo/White
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Blue
+
+
+ Gazebo/Blue
+
+
+ Gazebo/Grey
+
+
+ Gazebo/Grey
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Red
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Orange
+
+
+ Gazebo/Red
+
+
+
+ true
+ gazebo_ros_control/DefaultRobotHWSim
+
+
+
+
+
+ 30.0
+
+
+ 1.5707963
+
+ 640
+ 480
+
+ R8G8B8
+
+
+ 0.02
+ 300
+
+
+ gaussian
+ 0.0
+ 0.007
+
+
+
+ true
+ 0.0
+ front_single_camera
+ image_raw
+ camera_info
+ front_single_camera_link
+ 0.07
+ 0.0
+ 0.0
+ 0.0
+ 0.0
+ 0.0
+
+
+
+
+
+
+ true
+ IMU_link
+ IMU_link
+ imu
+ imu_service
+ 0.0
+ 50.0
+
+
+
+
+
+ 20.0
+ GPS_link
+ GPS_link
+ /gps/fix
+ /gps/fix_velocity
+ 40.09302494
+ -88.23575484
+ 90
+ 220
+ 0 0 0
+ 0.001 0.001 0.001
+ 0.05 0.05 0.05
+ 0.001 0.001 0.001
+ 0.5 0.5 0.5
+
+
+
+
+
+
+
+
+
+ true
+ 20
+ 0 0 0 0 0 0
+ false
+
+
+
+ 2
+ 1
+ -28
+ 28
+
+
+ 2
+ 1
+ -28
+ 28
+
+
+
+ 0.3
+ 5
+ 0.01
+
+
+
+ 0.005
+ /front_sonar_distance
+ front_sonar_link
+
+
+
+
+
+
+ true
+ 20
+ 0 0 0 0 0 0
+ false
+
+
+
+ 2
+ 1
+ -28
+ 28
+
+
+ 2
+ 1
+ -28
+ 28
+
+
+
+ 0.3
+ 5
+ 0.01
+
+
+
+ 0.005
+ /rear_sonar_distance
+ rear_sonar_link
+
+
+
+
+
+
+ 30.0
+
+ 1.5707963
+
+ 800
+ 600
+ R8G8B8
+
+
+ 0.02
+ 300
+
+
+ gaussian
+ 0.0
+ 0.007
+
+
+
+ 0 -0.07 0 0 0 0
+ 1.5707963
+
+ 800
+ 600
+ R8G8B8
+
+
+ 0.02
+ 300
+
+
+ gaussian
+ 0.0
+ 0.007
+
+
+
+ true
+ 0.0
+ stereo/camera
+ image_raw
+ camera_info
+ stereo_camera_link
+
+
+ 0.5
+ 0.0
+ 0.0
+ 0.0
+ 0.0
+ 0.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+ transmission_interface/SimpleTransmission
+
+ hardware_interface/EffortJointInterface
+
+
+ hardware_interface/EffortJointInterface
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/gem_e4.urdf b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/gem_e4.urdf
new file mode 100644
index 000000000..5ddb5a0eb
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/gem_e4.urdf
@@ -0,0 +1,919 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/base_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/base_link.STL
new file mode 100755
index 000000000..9c17ee417
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/base_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/chair_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/chair_link.STL
new file mode 100755
index 000000000..0c6765cf2
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/chair_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/door_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/door_link.STL
new file mode 100755
index 000000000..c747ca9af
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/door_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/base_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/base_link.STL
new file mode 100644
index 000000000..952b788ef
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/base_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_camera_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_camera_link.STL
new file mode 100644
index 000000000..d658e5cdb
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_camera_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_lidar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_lidar_link.STL
new file mode 100644
index 000000000..d49aea2e7
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_lidar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_rack_link.STL
new file mode 100755
index 000000000..6484d4245
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_radar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_radar_link.STL
new file mode 100644
index 000000000..fa7839417
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/front_radar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/gps_antenna_aux_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/gps_antenna_aux_link.STL
new file mode 100755
index 000000000..9a0c069b0
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/gps_antenna_aux_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/gps_antenna_main_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/gps_antenna_main_link.STL
new file mode 100755
index 000000000..32c0d6565
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/gps_antenna_main_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/headlight_fl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/headlight_fl_link.STL
new file mode 100755
index 000000000..bc49454cd
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/headlight_fl_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/headlight_fr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/headlight_fr_link.STL
new file mode 100755
index 000000000..bc49454cd
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/headlight_fr_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/i_logo_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/i_logo_link.STL
new file mode 100755
index 000000000..e0769efe7
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/i_logo_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/imu_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/imu_link.STL
new file mode 100644
index 000000000..97d552e72
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/imu_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/lightbar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/lightbar_link.STL
new file mode 100755
index 000000000..04a9d2f1e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/lightbar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/rear_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/rear_rack_link.STL
new file mode 100755
index 000000000..1ab3f1a54
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/rear_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/stoplight_rl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/stoplight_rl_link.STL
new file mode 100755
index 000000000..9e30a0a21
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/stoplight_rl_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/stoplight_rr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/stoplight_rr_link.STL
new file mode 100755
index 000000000..9e30a0a21
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/stoplight_rr_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/taillight_rl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/taillight_rl_link.STL
new file mode 100755
index 000000000..b24d6ae97
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/taillight_rl_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/taillight_rr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/taillight_rr_link.STL
new file mode 100755
index 000000000..afc66745f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/taillight_rr_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/top_lidar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/top_lidar_link.STL
new file mode 100644
index 000000000..b52b8f475
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/top_lidar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/top_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/top_rack_link.STL
new file mode 100644
index 000000000..a55bd5397
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/top_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/turnlight_fl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/turnlight_fl_link.STL
new file mode 100755
index 000000000..50888317f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/turnlight_fl_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/turnlight_fr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/turnlight_fr_link.STL
new file mode 100755
index 000000000..a4488df1f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/turnlight_fr_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_fl.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_fl.STL
new file mode 100644
index 000000000..06fb9b87e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_fl.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_fr.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_fr.STL
new file mode 100644
index 000000000..85975cc77
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_fr.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_rl.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_rl.STL
new file mode 100644
index 000000000..049fec865
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_rl.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_rr.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_rr.STL
new file mode 100644
index 000000000..0d0940a96
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/e4/wheel_link_rr.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_camera_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_camera_link.STL
new file mode 100755
index 000000000..5074cba3e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_camera_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_emergency_button_link.STL
new file mode 100755
index 000000000..eb6fcfd4e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_emergency_button_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_head_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_head_light_link.STL
new file mode 100755
index 000000000..bc49454cd
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_head_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_turn_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_turn_light_link.STL
new file mode 100755
index 000000000..50888317f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_turn_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_wheel_link.STL
new file mode 100755
index 000000000..06fb9b87e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_left_wheel_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_rack_link.STL
new file mode 100755
index 000000000..6484d4245
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_emergency_button_link.STL
new file mode 100755
index 000000000..4180556f8
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_emergency_button_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_head_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_head_light_link.STL
new file mode 100755
index 000000000..bc49454cd
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_head_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_turn_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_turn_light_link.STL
new file mode 100755
index 000000000..a4488df1f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_turn_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_wheel_link.STL
new file mode 100755
index 000000000..85975cc77
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/front_right_wheel_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_I_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_I_link.STL
new file mode 100755
index 000000000..e0769efe7
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_I_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_antenna_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_antenna_link.STL
new file mode 100755
index 000000000..32c0d6565
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_antenna_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_blue_outer_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_blue_outer_link.STL
new file mode 100755
index 000000000..717f1c931
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_blue_outer_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_fixed_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_fixed_hinge_link.STL
new file mode 100755
index 000000000..2c8e0610a
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_fixed_hinge_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_steering_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_steering_hinge_link.STL
new file mode 100755
index 000000000..43f7ecc63
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/left_steering_hinge_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_emergency_button_link.STL
new file mode 100755
index 000000000..033a25319
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_emergency_button_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_light_link.STL
new file mode 100755
index 000000000..b24d6ae97
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_stop_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_stop_light_link.STL
new file mode 100755
index 000000000..9e30a0a21
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_stop_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_wheel_link.STL
new file mode 100755
index 000000000..049fec865
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_left_wheel_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_light_bar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_light_bar_link.STL
new file mode 100755
index 000000000..04a9d2f1e
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_light_bar_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_rack_link.STL
new file mode 100755
index 000000000..1ab3f1a54
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_emergency_button_link.STL
new file mode 100755
index 000000000..4bb494cd5
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_emergency_button_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_light_link.STL
new file mode 100755
index 000000000..afc66745f
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_stop_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_stop_light_link.STL
new file mode 100755
index 000000000..9e30a0a21
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_stop_light_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_wheel_link.STL
new file mode 100755
index 000000000..0d0940a96
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/rear_right_wheel_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_I_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_I_link.STL
new file mode 100755
index 000000000..e0769efe7
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_I_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_antenna_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_antenna_link.STL
new file mode 100755
index 000000000..9a0c069b0
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_antenna_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_blue_outer_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_blue_outer_link.STL
new file mode 100755
index 000000000..717f1c931
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_blue_outer_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_fixed_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_fixed_hinge_link.STL
new file mode 100755
index 000000000..0307a31e6
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_fixed_hinge_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_steering_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_steering_hinge_link.STL
new file mode 100755
index 000000000..01cb60e1b
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/right_steering_hinge_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/top_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/top_rack_link.STL
new file mode 100755
index 000000000..33cbd12b1
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/meshes/top_rack_link.STL differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/plane.off b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/plane.off
new file mode 100644
index 000000000..5ce7162d9
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/model/plane.off
@@ -0,0 +1,8 @@
+OFF
+4 2 0
+-5.000000 -5.000000 0.000000
+-5.000000 5.000000 0.000000
+5.000000 -5.000000 0.000000
+5.000000 5.000000 0.000000
+3 0 2 1
+3 1 2 3
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/pedestrian.glb b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/pedestrian.glb
new file mode 100644
index 000000000..5b0b0d826
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/pedestrian.glb differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/traffic_light_1.glb b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/traffic_light_1.glb
new file mode 100644
index 000000000..d7f8826cb
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/traffic_light_1.glb differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/public/models/traffic_light_2.glb b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/traffic_light_2.glb
new file mode 100644
index 000000000..47161ae23
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/public/models/traffic_light_2.glb differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/app/favicon.ico b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/favicon.ico
new file mode 100644
index 000000000..718d6fea4
Binary files /dev/null and b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/favicon.ico differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/app/globals.css b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/globals.css
new file mode 100644
index 000000000..a2dc41ece
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/globals.css
@@ -0,0 +1,26 @@
+@import "tailwindcss";
+
+:root {
+ --background: #ffffff;
+ --foreground: #171717;
+}
+
+@theme inline {
+ --color-background: var(--background);
+ --color-foreground: var(--foreground);
+ --font-sans: var(--font-geist-sans);
+ --font-mono: var(--font-geist-mono);
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --background: #0a0a0a;
+ --foreground: #ededed;
+ }
+}
+
+body {
+ background: var(--background);
+ color: var(--foreground);
+ font-family: Arial, Helvetica, sans-serif;
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/app/layout.tsx b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/layout.tsx
new file mode 100644
index 000000000..5ec74caf3
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/layout.tsx
@@ -0,0 +1,32 @@
+import type { Metadata } from "next";
+import { Geist, Geist_Mono } from "next/font/google";
+import "./globals.css";
+
+const geistSans = Geist({
+ variable: "--font-geist-sans",
+ subsets: ["latin"],
+});
+
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono",
+ subsets: ["latin"],
+});
+
+export const metadata: Metadata = {
+ title: "CS588 Visualizer",
+ description: "CS588 3D driving UI in Three.js",
+};
+
+export default function RootLayout({
+ children,
+}: {
+ children: React.ReactNode;
+}) {
+ return (
+
+
+ {children}
+
+
+ );
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/app/page.tsx b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/page.tsx
new file mode 100644
index 000000000..9cc8d24b5
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/page.tsx
@@ -0,0 +1,18 @@
+"use client";
+
+import ControlPanel from "@/components/ControlPanel";
+import CanvasWrapper from "@/components/CanvasWrapper";
+import Scrubber from "@/components/Scrubber";
+import { usePlaybackTime } from "@/hooks/usePlaybackTime";
+
+export default function HomePage() {
+ const { time, reset, restart, play, togglePlay, speed, setPlaybackSpeed, moveToTime, duration, setDuration } = usePlaybackTime();
+
+ return (
+
+
+
+
+
+ );
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Agent.tsx b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Agent.tsx
new file mode 100644
index 000000000..2525cc54c
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Agent.tsx
@@ -0,0 +1,56 @@
+"use client";
+
+import { useRef, useMemo, useEffect } from "react";
+import { useFrame } from "@react-three/fiber";
+import { Mesh, Object3D, MeshStandardMaterial } from "three";
+import { useGLTF } from "@react-three/drei";
+import { FrameData } from "@/types/FrameData";
+import { currentAgent } from "@/config/agentConfig";
+
+interface AgentProps {
+ id: string;
+ timeline: FrameData[];
+ time: number;
+}
+
+export default function Agent({ id, timeline, time }: AgentProps) {
+ const ref = useRef(null);
+
+ const { modelPath, scale, rotation, offset, bodyColor } = currentAgent;
+
+ const { scene } = useGLTF(modelPath);
+ const clonedScene = useMemo(() => scene.clone(true), [scene]);
+
+ useEffect(() => {
+ clonedScene.traverse((child) => {
+ if (
+ child instanceof Mesh &&
+ child.material instanceof MeshStandardMaterial
+ ) {
+ child.material = child.material.clone();
+ child.material.color.set(bodyColor);
+ }
+ });
+ }, [clonedScene, bodyColor]);
+
+ useFrame(() => {
+ const frame = timeline.find((f) => f.time >= time);
+ if (frame && ref.current) {
+ ref.current.position.set(frame.x, 0, frame.y);
+ ref.current.rotation.y = -frame.yaw;
+ }
+ });
+
+ const hasSpawned = timeline.length > 0 && timeline[0].time <= time;
+ if (!hasSpawned) return null;
+
+ return (
+ }
+ object={clonedScene}
+ scale={scale}
+ rotation={rotation}
+ position={offset}
+ />
+ );
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/components/CanvasWrapper.tsx b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/CanvasWrapper.tsx
new file mode 100644
index 000000000..91d8d2803
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/CanvasWrapper.tsx
@@ -0,0 +1,52 @@
+"use client";
+
+import { Canvas } from "@react-three/fiber";
+import React, { useEffect } from "react";
+import { Environment } from "@react-three/drei";
+import { useTimelineStore } from "@/hooks/useTimelineStore";
+import Vehicle from "./Vehicle";
+import Agent from "./Agent";
+import Ground from "./Ground";
+
+export default function CanvasWrapper({
+ time,
+ setDuration,
+}: {
+ time: number;
+ setDuration: (duration: number) => void;
+}) {
+ const { vehicle, agents } = useTimelineStore();
+ useEffect(() => {
+ if (vehicle.length > 0) {
+ setDuration(vehicle[vehicle.length - 1].time - vehicle[0].time);
+ }
+ }, [vehicle]);
+ const startTime = vehicle.length > 0 ? vehicle[0].time : 0;
+ const syncedTime = startTime + time;
+
+ return (
+
+
+
+
+
+ {Object.entries(agents).map(([id, timeline]) => (
+
+ ))}
+
+
+ );
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/components/ControlPanel.tsx b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/ControlPanel.tsx
new file mode 100644
index 000000000..c2b62df99
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/ControlPanel.tsx
@@ -0,0 +1,89 @@
+"use client";
+
+import React, { useState } from "react";
+import { TiUpload } from "react-icons/ti";
+import { RxCross2 } from "react-icons/rx";
+import { buildTimeline } from "@/utils/buildTimeline";
+import { parseLogFile } from "@/utils/parseLogFile";
+import { useTimelineStore } from "@/hooks/useTimelineStore";
+import { TimelineData } from "@/types/TimelineData";
+
+export default function ControlPanel({ reset }: { reset: () => void }) {
+ const [isOpen, setIsOpen] = useState(false);
+ const [fileName, setFileName] = useState(null);
+ const setTimeline = useTimelineStore((state) => state.setTimeline);
+
+ const handleFileUpload = async (
+ event: React.ChangeEvent
+ ) => {
+ const file = event.target.files?.[0];
+ if (!file) return;
+
+ setFileName(file.name);
+
+ try {
+ const entries = await parseLogFile(file);
+ const timeline: TimelineData = buildTimeline(entries);
+ setTimeline(timeline);
+ reset(); // ⏪ Restart animation time
+ console.log("✅ timeline loaded:", timeline);
+ } catch (err) {
+ console.error("❌ Failed to parse log file:", err);
+ }
+ };
+
+ return (
+ <>
+
+ {isOpen && (
+ <>
+
+
Control Panel
+ setIsOpen(false)}
+ className="text-white p-1 rounded hover:bg-white/10"
+ title="Close Panel"
+ >
+
+
+
+
+
+
+
+ Choose file
+
+
+
+ {fileName ? `✅ ${fileName}` : "No file loaded"}
+
+
+
+
+
🚧 Feature toggles coming soon...
+
+ >
+ )}
+
+
+ {!isOpen && (
+ setIsOpen(true)}
+ className="fixed top-1/2 left-0 -translate-y-1/2 z-50 bg-black/80 text-white w-3 h-8 flex items-center justify-center rounded-r hover:bg-black border-l border-white/20"
+ title="Open Panel"
+ >
+ ⟩
+
+ )}
+ >
+ );
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Ground.tsx b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Ground.tsx
new file mode 100644
index 000000000..010a80a8e
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Ground.tsx
@@ -0,0 +1,24 @@
+"use client";
+
+import React from "react";
+import { groundConfig } from "@/config/groundConfig";
+import { Grid } from "@react-three/drei";
+
+export default function Ground() {
+ return (
+
+ );
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Scrubber.tsx b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Scrubber.tsx
new file mode 100644
index 000000000..459984bf2
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Scrubber.tsx
@@ -0,0 +1,98 @@
+"use client";
+import React, { useState, useRef } from "react";
+import { IconButton, Slider, Menu, MenuItem } from "@mui/material";
+import PlayArrowIcon from "@mui/icons-material/PlayArrow";
+import PauseIcon from "@mui/icons-material/Pause";
+import SpeedIcon from "@mui/icons-material/Speed";
+import RefreshIcon from "@mui/icons-material/Refresh";
+
+export default function Scrubber({
+ time,
+ play,
+ togglePlay,
+ restart,
+ setPlaybackSpeed,
+ moveToTime,
+ duration
+}: {
+ time: number;
+ play: boolean;
+ togglePlay: () => void;
+ restart: () => void;
+ setPlaybackSpeed: (speed: number) => void;
+ moveToTime: (time: number) => void;
+ duration: number;
+}) {
+ const [anchorEl, setAnchorEl] = useState(null);
+ const [selectedSpeed, setSelectedSpeed] = useState(1);
+ const speedOptions = [0.5, 1, 1.5, 2, 3];
+ const open = Boolean(anchorEl);
+ const handleClick = (event: React.MouseEvent) => {
+ setAnchorEl(event.currentTarget);
+ };
+ const handleClose = () => {
+ setAnchorEl(null);
+ };
+ const handleMenuItemClick = (speed: number) => {
+ setSelectedSpeed(speed);
+ setPlaybackSpeed(speed);
+ handleClose();
+ };
+ const handleSliderChange = (_: Event, newValue: number | number[]) => {
+ if (typeof newValue === "number") {
+ moveToTime(newValue);
+ }
+ };
+ const formatDuration = (time: number) => {
+ const minutes = Math.floor(time / 60);
+ const seconds = Math.floor(time % 60);
+ return `${minutes < 10 ? "0" : ""}${minutes}:${seconds < 10 ? "0" : ""}${seconds}`;
+ }
+ return (
+
+
+ {play ? (
+
+ ) : (
+
+ )}
+
+
+
{time < duration ? formatDuration(time) : formatDuration(duration)}
+
+ {formatDuration(duration)}
+
+
+
+
+
+
+ {speedOptions.map((speed) => (
+ handleMenuItemClick(speed)}
+ >
+ {speed}x
+
+ ))}
+
+
+
+
+
+
+ );
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Vehicle.tsx b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Vehicle.tsx
new file mode 100644
index 000000000..22d55138b
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/components/Vehicle.tsx
@@ -0,0 +1,75 @@
+import React, { useRef, useMemo, useEffect } from "react";
+import * as THREE from "three";
+import { useFrame } from "@react-three/fiber";
+import { useCameraController } from "@/hooks/useCameraController";
+import { currentVehicle } from "@/config/vehicleConfig";
+import { FrameData } from "@/types/FrameData";
+import { OrbitControls } from "@react-three/drei";
+import URDFLoader from "urdf-loader";
+
+interface VehicleProps {
+ timeline: FrameData[];
+ time: number;
+}
+
+export default function Vehicle({ timeline, time }: VehicleProps) {
+ const ref = useRef(null);
+ const vehicleGroup = useRef(new THREE.Group()); // ← create empty group for the robot
+ const mode = useCameraController(ref, timeline, time);
+
+ const targetPosition = useMemo(() => new THREE.Vector3(), []);
+ const targetQuaternion = useMemo(() => new THREE.Quaternion(), []);
+
+ const { modelPath, scale, rotation, offset, bodyColor } = currentVehicle;
+
+ useEffect(() => {
+ const loader = new URDFLoader();
+
+ loader.load(
+ modelPath,
+ (robot) => {
+ robot.scale.set(scale[0], scale[1], scale[2]);
+ robot.rotation.set(rotation[0], rotation[1], rotation[2]);
+ robot.position.set(offset[0], offset[1], offset[2]);
+
+ robot.traverse((child) => {
+ if (child instanceof THREE.Mesh &&
+ child.material instanceof THREE.MeshStandardMaterial) {
+ child.material = child.material.clone();
+ child.material.color.set(bodyColor);
+ }
+ });
+
+ if (vehicleGroup.current) {
+ vehicleGroup.current.add(robot);
+ }
+ },
+ undefined,
+ (error) => {
+ console.error("URDF loading failed", error);
+ }
+ );
+ }, [modelPath, scale, rotation, offset, bodyColor]);
+
+ useFrame(() => {
+ if (!ref.current || timeline.length === 0) return;
+
+ const frame = timeline.find((f) => f.time >= time) ?? timeline.at(-1);
+ if (!frame) return;
+
+ targetPosition.set(frame.x, 0, frame.y);
+ ref.current.position.lerp(targetPosition, 0.2);
+
+ targetQuaternion.setFromEuler(new THREE.Euler(0, -frame.yaw, 0));
+ ref.current.quaternion.slerp(targetQuaternion, 0.2);
+ });
+
+ return (
+ <>
+
+
+
+ {mode === "free" && }
+ >
+ );
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/config/agentConfig.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/agentConfig.ts
new file mode 100644
index 000000000..8a95fca53
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/agentConfig.ts
@@ -0,0 +1,30 @@
+const agentConfig = {
+ pedestrian: {
+ name: "Pedestrian",
+ modelPath: "/models/pedestrian.glb",
+ scale: [0.2, 0.2, 0.2],
+ rotation: [0, Math.PI, 0],
+ offset: [0, 0, 0],
+ bodyColor: "#808080",
+ },
+ cyclist: {
+ name: "Cyclist",
+ modelPath: "/models/cyclist.glb",
+ scale: [1, 1, 1],
+ rotation: [0, Math.PI, 0],
+ offset: [0, 0.1, 0],
+ bodyColor: "#808080",
+ },
+ vehicle: {
+ name: "Vehicle",
+ modelPath: "/models/vehicle.glb",
+ scale: [1, 1, 1],
+ rotation: [0, Math.PI, 0],
+ offset: [0, 0.25, 0],
+ bodyColor: "#808080",
+ },
+};
+
+const currentAgent = agentConfig.pedestrian;
+
+export { agentConfig, currentAgent };
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/config/cameraConfig.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/cameraConfig.ts
new file mode 100644
index 000000000..6de374087
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/cameraConfig.ts
@@ -0,0 +1,35 @@
+type CameraConfig = {
+ position: [number, number, number];
+ lookAt: [number, number, number];
+ damping?: number;
+};
+
+type CameraConfigMap = {
+ [key in 'first' | 'chase' | 'top' | 'side' | 'free']: Partial;
+};
+
+const cameraConfig: CameraConfigMap = {
+ first: {
+ position: [0, 1.5, -0.3], // on top of vehicle
+ lookAt: [2, 1.5, 0], // looking forward (+Z)
+ damping: 0.1,
+ },
+ chase: {
+ position: [-6, 3, 0], // behind vehicle
+ lookAt: [0, 0, 0], // looking at the rear
+ damping: 0.1,
+ },
+ top: {
+ position: [0, 10, 0], // overhead
+ lookAt: [0, 0, 0], // looking forward
+ damping: 0.1,
+ },
+ side: {
+ position: [0, 2, 5], // from the right
+ lookAt: [0, 0, -10], // looking at vehicle side
+ damping: 0.1,
+ },
+ free: {},
+};
+
+export { cameraConfig };
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/config/groundConfig.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/groundConfig.ts
new file mode 100644
index 000000000..d3c653c9f
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/groundConfig.ts
@@ -0,0 +1,32 @@
+export interface GroundConfig {
+ size: [number, number];
+ position: [number, number, number];
+ rotation: [number, number, number];
+ cellSize: number;
+ cellThickness: number;
+ cellColor: string;
+ sectionSize: number;
+ sectionThickness: number;
+ sectionColor: string;
+ fadeDistance: number;
+ fadeStrength: number;
+ infiniteGrid: boolean;
+}
+
+const groundConfig: GroundConfig = {
+ size: [20000, 20000],
+ position: [0, 0, 0],
+ rotation: [0, 0, 0],
+ cellSize: 1,
+ cellThickness: 0.5,
+ cellColor: "#000000",
+ sectionSize: 10,
+ sectionThickness: 1,
+ sectionColor: "#000000",
+ fadeDistance: 100,
+ fadeStrength: 1,
+ infiniteGrid: false,
+};
+
+
+export { groundConfig };
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/config/vehicleConfig.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/vehicleConfig.ts
new file mode 100644
index 000000000..f51360701
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/vehicleConfig.ts
@@ -0,0 +1,36 @@
+const vehicles = {
+ gemE4: {
+ name: "Gem E4",
+ modelPath: "/models/model/gem_e4.urdf",
+ scale: [1, 1, 1],
+ rotation: [-Math.PI / 2, 0, 0],
+ offset: [0, 0, 0],
+ bodyColor: "#808080",
+ },
+ roadster: {
+ name: "Roadster",
+ modelPath: "/models/roadster.glb",
+ scale: [1, 1, 1],
+ rotation: [0, Math.PI / 2, 0],
+ offset: [0, 0, 0],
+ bodyColor: "#808080",
+ },
+ suv: {
+ name: "SUV",
+ modelPath: "/models/roadster.glb",
+ scale: [1, 1, 1],
+ rotation: [0, Math.PI / 2, 0],
+ bodyColor: "#808080",
+ },
+ truck: {
+ name: "Truck",
+ modelPath: "/models/roadster.glb",
+ scale: [1, 1, 1],
+ rotation: [0, Math.PI, 0],
+ bodyColor: "#808080",
+ },
+};
+
+const currentVehicle = vehicles.gemE4;
+
+export { vehicles, currentVehicle };
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/useCameraController.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/useCameraController.ts
new file mode 100644
index 000000000..01649c9d3
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/useCameraController.ts
@@ -0,0 +1,118 @@
+import { useEffect, useState, useRef } from "react";
+import { useThree, useFrame } from "@react-three/fiber";
+import * as THREE from "three";
+import { FrameData } from "@/types/FrameData";
+import { cameraConfig } from "@/config/cameraConfig";
+
+type CameraModeKey = "chase" | "top" | "side" | "free" | "first";
+
+export function useCameraController(
+ carRef: React.RefObject,
+ timeline: FrameData[] = [],
+ time: number
+): CameraModeKey {
+ const { camera, gl } = useThree();
+ const [mode, setMode] = useState("chase");
+ const lastMode = useRef("chase");
+ const modeRef = useRef("chase");
+
+ const smoothedPos = useRef(new THREE.Vector3());
+ const smoothedLookAt = useRef(new THREE.Vector3());
+
+ useEffect(() => {
+ modeRef.current = mode;
+ }, [mode]);
+
+ // Allow switching between all modes at any time
+ useEffect(() => {
+ const handleKey = (e: KeyboardEvent) => {
+ switch (e.key) {
+ case "1":
+ setMode("first");
+ break;
+ case "2":
+ setMode("chase");
+ break;
+ case "3":
+ setMode("top");
+ break;
+ case "4":
+ setMode("side");
+ break;
+ case "5":
+ lastMode.current = modeRef.current;
+ setMode("free");
+ break;
+ case "0":
+ if (lastMode.current !== "free") {
+ setMode(lastMode.current);
+ }
+ break;
+ }
+ };
+
+ window.addEventListener("keydown", handleKey);
+ return () => window.removeEventListener("keydown", handleKey);
+ }, []);
+
+ // Switch to free mode on scroll or click
+ useEffect(() => {
+ const dom = gl.domElement;
+
+ const activateFreeMode = () => {
+ if (modeRef.current !== "free") {
+ lastMode.current = modeRef.current;
+ setMode("free");
+ }
+ };
+
+ const onMouseDown = (e: MouseEvent) => {
+ if (e.button === 0) activateFreeMode(); // Left click
+ };
+
+ const onWheel = () => {
+ activateFreeMode(); // Scroll
+ };
+
+ dom.addEventListener("mousedown", onMouseDown);
+ dom.addEventListener("wheel", onWheel);
+
+ return () => {
+ dom.removeEventListener("mousedown", onMouseDown);
+ dom.removeEventListener("wheel", onWheel);
+ };
+ }, [gl.domElement]);
+
+ useFrame(() => {
+ if (modeRef.current === "free") return;
+ if (!carRef.current) return;
+
+ // Always fallback to a stable frame if timeline is empty
+ const frame =
+ timeline.find((f) => f.time >= time) ??
+ timeline.at(-1) ??
+ { x: 0, y: 0, yaw: 0 };
+
+ const config = cameraConfig[modeRef.current];
+ if (!config?.position || !config?.lookAt) return;
+
+ const carPos = new THREE.Vector3(frame.x, 0, frame.y);
+ const carQuat = new THREE.Quaternion().setFromEuler(new THREE.Euler(0, -frame.yaw, 0));
+
+ const damping = config.damping ?? 0.1;
+
+ // camera offset (relative to vehicle) and final position
+ const offset = new THREE.Vector3(...config.position).applyQuaternion(carQuat);
+ const camTargetPos = carPos.clone().add(offset);
+ smoothedPos.current.lerp(camTargetPos, damping);
+ camera.position.copy(smoothedPos.current);
+
+ // look at offset
+ const lookAtOffset = new THREE.Vector3(...config.lookAt).applyQuaternion(carQuat);
+ const camLookAt = carPos.clone().add(lookAtOffset);
+ smoothedLookAt.current.lerp(camLookAt, damping);
+ camera.lookAt(smoothedLookAt.current);
+ });
+
+ return mode;
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/usePlaybackTime.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/usePlaybackTime.ts
new file mode 100644
index 000000000..fda840914
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/usePlaybackTime.ts
@@ -0,0 +1,61 @@
+import { useEffect, useRef, useState } from "react";
+
+export function usePlaybackTime() {
+ const [time, setTime] = useState(0);
+ const [play, setPlay] = useState(true);
+ const [speed, setSpeed] = useState(1);
+ const [duration, setDuration] = useState(0);
+
+ const lastFrame = useRef(performance.now());
+
+ const reset = () => {
+ lastFrame.current = performance.now();
+ setTime(0);
+ setDuration(0);
+ setPlay(true);
+ };
+
+ const restart = () => {
+ lastFrame.current = performance.now();
+ setTime(0);
+ setPlay(true);
+ }
+
+ const togglePlay = () => {
+ setPlay((prev) => {
+ if (!prev) lastFrame.current = performance.now();
+ return !prev;
+ });
+ };
+
+ const setPlaybackSpeed = (newSpeed: number) => {
+ if (newSpeed <= 0) return;
+ setSpeed(newSpeed);
+ };
+
+ const moveToTime = (targetTime: number) => {
+ setTime(targetTime);
+ lastFrame.current = performance.now();
+ }
+
+ useEffect(() => {
+ let rafId: number;
+
+ const loop = () => {
+ rafId = requestAnimationFrame(loop);
+
+ if (!play) return;
+
+ const now = performance.now();
+ const delta = (now - lastFrame.current) / 1000;
+ lastFrame.current = now;
+
+ setTime((t) => t + delta * speed);
+ };
+
+ rafId = requestAnimationFrame(loop);
+ return () => cancelAnimationFrame(rafId);
+ }, [play, speed]);
+
+ return { time, reset, restart, play, togglePlay, speed, setPlaybackSpeed, moveToTime, duration, setDuration };
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/useTimelineStore.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/useTimelineStore.ts
new file mode 100644
index 000000000..2dd500e93
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/useTimelineStore.ts
@@ -0,0 +1,8 @@
+import { TimelineStore } from '@/types/TimelineStore';
+import { create } from 'zustand';
+
+export const useTimelineStore = create((set) => ({
+ vehicle: [],
+ agents: {},
+ setTimeline: (timeline) => set(timeline),
+}));
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/useVehicleControls.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/useVehicleControls.ts
new file mode 100644
index 000000000..0dbe955a9
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/hooks/useVehicleControls.ts
@@ -0,0 +1,67 @@
+import { useEffect, useState, useRef } from 'react';
+import { Group, Vector3, Euler } from 'three';
+import { useFrame } from '@react-three/fiber';
+
+export function useVehicleControls(
+ groupRef: React.RefObject,
+ getSpeed: () => number = () => 1
+) {
+ const [keys, setKeys] = useState<{ [key: string]: boolean }>({});
+ const targetPosition = useRef(new Vector3());
+ const targetRotation = useRef(new Euler());
+
+ useEffect(() => {
+ const handleKeyDown = (e: KeyboardEvent) =>
+ setKeys((k) => ({ ...k, [e.key.toLowerCase()]: true }));
+ const handleKeyUp = (e: KeyboardEvent) =>
+ setKeys((k) => ({ ...k, [e.key.toLowerCase()]: false }));
+
+ window.addEventListener('keydown', handleKeyDown);
+ window.addEventListener('keyup', handleKeyUp);
+ return () => {
+ window.removeEventListener('keydown', handleKeyDown);
+ window.removeEventListener('keyup', handleKeyUp);
+ };
+ }, []);
+
+ const state = { moving: false, direction: 0 };
+
+ useFrame((_, delta) => {
+ if (!groupRef.current) return;
+
+ const group = groupRef.current;
+ const speed = getSpeed();
+ const moveDir = new Vector3();
+ const currentRotation = group.rotation.clone();
+
+ state.moving = false;
+
+ const forward = new Vector3(0, 0, 1).applyEuler(currentRotation);
+
+ if (keys['w']) {
+ moveDir.add(forward);
+ state.moving = true;
+ state.direction = 1;
+ }
+ if (keys['s']) {
+ moveDir.sub(forward);
+ state.moving = true;
+ state.direction = -1;
+ }
+
+ moveDir.normalize().multiplyScalar(speed * delta);
+ targetPosition.current.add(moveDir);
+
+ const steerAmount = 1.5 * delta * (keys['s'] ? -1 : 1);
+ if (keys['a']) targetRotation.current.y += steerAmount;
+ if (keys['d']) targetRotation.current.y -= steerAmount;
+
+ // Smooth rotation
+ group.rotation.y += (targetRotation.current.y - group.rotation.y) * 0.2;
+
+ // Smooth position
+ group.position.lerp(targetPosition.current, 0.2);
+ });
+
+ return state;
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/types/FrameData.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/types/FrameData.ts
new file mode 100644
index 000000000..78ea540cd
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/types/FrameData.ts
@@ -0,0 +1,9 @@
+export interface FrameData {
+ time: number;
+ x: number;
+ y: number;
+ z: number;
+ yaw: number;
+ pitch: number;
+ roll: number;
+}
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/types/LogEntry.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/types/LogEntry.ts
new file mode 100644
index 000000000..15b88b363
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/types/LogEntry.ts
@@ -0,0 +1,7 @@
+export interface LogEntry {
+ key: string; // Top-level key (e.g., "vehicle", "agents", etc.)
+ type: string; // Inner type (e.g., "VehicleState")
+ time: number; // Timestamp of the event
+ data: T; // Full data object (includes pose, velocity, etc.)
+}
+
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/types/TimelineData.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/types/TimelineData.ts
new file mode 100644
index 000000000..81de7652c
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/types/TimelineData.ts
@@ -0,0 +1,6 @@
+import { FrameData } from './FrameData';
+
+export interface TimelineData {
+ vehicle: FrameData[];
+ agents: Record;
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/types/TimelineStore.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/types/TimelineStore.ts
new file mode 100644
index 000000000..ed2341de9
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/types/TimelineStore.ts
@@ -0,0 +1,5 @@
+import { TimelineData } from './TimelineData';
+
+export interface TimelineStore extends TimelineData {
+ setTimeline: (timeline: TimelineData) => void;
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/utils/buildTimeline.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/utils/buildTimeline.ts
new file mode 100644
index 000000000..a0a138002
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/utils/buildTimeline.ts
@@ -0,0 +1,33 @@
+import { LogEntry } from '@/types/LogEntry';
+import { FrameData } from '@/types/FrameData';
+import { TimelineData } from '@/types/TimelineData';
+
+export function buildTimeline(entries: LogEntry[]): TimelineData {
+ const vehicle: FrameData[] = [];
+ const agents: Record = {};
+
+ for (const entry of entries) {
+ const pose = entry.data?.pose;
+ if (!pose || typeof pose.x !== 'number' || typeof pose.y !== 'number') continue;
+
+ const frame: FrameData = {
+ time: entry.time,
+ x: pose.x,
+ y: pose.y,
+ z: pose.z ?? 0,
+ yaw: pose.yaw ?? 0,
+ pitch: pose.pitch ?? 0,
+ roll: pose.roll ?? 0
+ };
+
+ if (entry.key === 'vehicle') {
+ vehicle.push(frame);
+ } else {
+ const key = entry.key.trim();
+ if (!agents[key]) agents[key] = [];
+ agents[key].push(frame);
+ }
+ }
+
+ return { vehicle, agents };
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/utils/parseLogFile.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/utils/parseLogFile.ts
new file mode 100644
index 000000000..6d879c0aa
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/utils/parseLogFile.ts
@@ -0,0 +1,54 @@
+import { LogEntry } from '../types/LogEntry';
+import { streamLogLines } from './streamLogLines';
+
+export async function parseLogFile(file: File): Promise {
+ const entries: LogEntry[] = [];
+
+ for await (const line of streamLogLines(file)) {
+ try {
+ const parsed = JSON.parse(line);
+ const time = parsed.time;
+
+ for (const [key, value] of Object.entries(parsed)) {
+ if (key === 'time' || typeof value !== 'object' || value === null) continue;
+
+ if (
+ key === 'vehicle' &&
+ 'type' in value &&
+ 'data' in value &&
+ (value as any).data?.pose?.frame === 3
+ ) {
+ entries.push({
+ key,
+ type: (value as any).type,
+ time,
+ data: (value as any).data,
+ });
+ continue;
+ }
+
+ if (key === 'agents') {
+ for (const [agentId, agentValue] of Object.entries(value)) {
+ if (
+ typeof agentValue === 'object' &&
+ agentValue !== null &&
+ 'data' in agentValue &&
+ (agentValue as any).data?.pose?.frame === 1
+ ) {
+ entries.push({
+ key: agentId,
+ type: (agentValue as any).type ?? 'AgentState',
+ time,
+ data: (agentValue as any).data,
+ });
+ }
+ }
+ }
+ }
+ } catch (err) {
+ console.warn('Failed to parse log line:', err);
+ }
+ }
+
+ return entries;
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/utils/streamLogLines.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/utils/streamLogLines.ts
new file mode 100644
index 000000000..d4c0c5ba8
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/utils/streamLogLines.ts
@@ -0,0 +1,20 @@
+export async function* streamLogLines(file: File): AsyncGenerator {
+ const reader = file.stream().getReader();
+ const decoder = new TextDecoder('utf-8');
+ let partial = '';
+
+ while (true) {
+ const { value, done } = await reader.read();
+ if (done) break;
+
+ partial += decoder.decode(value, { stream: true });
+ const lines = partial.split('\n');
+ partial = lines.pop() || '';
+
+ for (const line of lines) {
+ if (line.trim()) yield line;
+ }
+ }
+
+ if (partial.trim()) yield partial;
+}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/tsconfig.json b/GEMstack/onboard/visualization/sr_viz/threeD/tsconfig.json
new file mode 100644
index 000000000..c1334095f
--- /dev/null
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/tsconfig.json
@@ -0,0 +1,27 @@
+{
+ "compilerOptions": {
+ "target": "ES2017",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "bundler",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
+ "exclude": ["node_modules"]
+}