cosmo_backend/scripts/init_db.sql

5778 lines
2.5 MiB
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
Navicat Premium Data Transfer
Source Server : localhost-postgre
Source Server Type : PostgreSQL
Source Server Version : 140008 (140008)
Source Host : localhost:5432
Source Catalog : cosmo_db
Source Schema : public
Target Server Type : PostgreSQL
Target Server Version : 140008 (140008)
File Encoding : 65001
Date: 02/12/2025 16:02:50
*/
-- ----------------------------
-- Sequence structure for menus_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."menus_id_seq";
CREATE SEQUENCE "public"."menus_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 1
CACHE 1;
ALTER SEQUENCE "public"."menus_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Sequence structure for orbits_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."orbits_id_seq";
CREATE SEQUENCE "public"."orbits_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 1
CACHE 1;
ALTER SEQUENCE "public"."orbits_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Sequence structure for positions_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."positions_id_seq";
CREATE SEQUENCE "public"."positions_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
ALTER SEQUENCE "public"."positions_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Sequence structure for resources_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."resources_id_seq";
CREATE SEQUENCE "public"."resources_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 1
CACHE 1;
ALTER SEQUENCE "public"."resources_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Sequence structure for role_menus_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."role_menus_id_seq";
CREATE SEQUENCE "public"."role_menus_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 1
CACHE 1;
ALTER SEQUENCE "public"."role_menus_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Sequence structure for roles_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."roles_id_seq";
CREATE SEQUENCE "public"."roles_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 1
CACHE 1;
ALTER SEQUENCE "public"."roles_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Sequence structure for static_data_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."static_data_id_seq";
CREATE SEQUENCE "public"."static_data_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 1
CACHE 1;
ALTER SEQUENCE "public"."static_data_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Sequence structure for system_settings_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."system_settings_id_seq";
CREATE SEQUENCE "public"."system_settings_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 1
CACHE 1;
ALTER SEQUENCE "public"."system_settings_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Sequence structure for tasks_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."tasks_id_seq";
CREATE SEQUENCE "public"."tasks_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 1
CACHE 1;
ALTER SEQUENCE "public"."tasks_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Sequence structure for users_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "public"."users_id_seq";
CREATE SEQUENCE "public"."users_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 1
CACHE 1;
ALTER SEQUENCE "public"."users_id_seq" OWNER TO "postgres";
-- ----------------------------
-- Table structure for celestial_bodies
-- ----------------------------
DROP TABLE IF EXISTS "public"."celestial_bodies";
CREATE TABLE "public"."celestial_bodies" (
"id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
"name_zh" varchar(200) COLLATE "pg_catalog"."default",
"type" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"description" text COLLATE "pg_catalog"."default",
"extra_data" jsonb,
"created_at" timestamp(6) DEFAULT now(),
"updated_at" timestamp(6) DEFAULT now(),
"is_active" bool NOT NULL
)
;
ALTER TABLE "public"."celestial_bodies" OWNER TO "postgres";
COMMENT ON COLUMN "public"."celestial_bodies"."id" IS 'JPL Horizons ID or custom ID';
COMMENT ON COLUMN "public"."celestial_bodies"."name" IS 'English name';
COMMENT ON COLUMN "public"."celestial_bodies"."name_zh" IS 'Chinese name';
COMMENT ON COLUMN "public"."celestial_bodies"."type" IS 'Body type';
COMMENT ON COLUMN "public"."celestial_bodies"."description" IS 'Description';
COMMENT ON COLUMN "public"."celestial_bodies"."extra_data" IS 'Extended metadata (JSON)';
-- ----------------------------
-- Records of celestial_bodies
-- ----------------------------
BEGIN;
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('799', 'Uranus', '天王星', 'planet', '天王星,侧躺着自转的行星', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('899', 'Neptune', '海王星', 'planet', '海王星,太阳系最外层的行星', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('999', 'Pluto', '冥王星', 'dwarf_planet', '冥王星,曾经的第九大行星,现为矮行星', 'null', '2025-11-28 06:42:36.420118', '2025-11-28 06:42:36.420118', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('2000001', 'Ceres', '谷神星', 'dwarf_planet', '谷神星,小行星带中最大的天体,也是唯一的矮行星', 'null', '2025-11-28 15:29:59.25821', '2025-11-28 15:29:59.25821', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('136199', 'Eris', '阋神星', 'dwarf_planet', '阋神星,曾被认为是第十大行星,导致冥王星被降级为矮行星', 'null', '2025-11-28 15:29:59.282445', '2025-11-28 15:29:59.282445', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('136108', 'Haumea', '妊神星', 'dwarf_planet', '妊神星,形状像橄榄球的矮行星,拥有两颗卫星和光环', 'null', '2025-11-28 15:29:59.287985', '2025-11-28 15:29:59.287985', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('136472', 'Makemake', '鸟神星', 'dwarf_planet', '鸟神星,柯伊伯带中第二亮的天体', 'null', '2025-11-28 15:29:59.292912', '2025-11-28 15:29:59.292912', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('-31', 'Voyager 1', '旅行者1号', 'probe', '离地球最远的人造物体,已进入星际空间', '{"status": "active", "launch_date": "1977-09-05"}', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('-32', 'Voyager 2', '旅行者2号', 'probe', '唯一造访过天王星和海王星的探测器', '{"status": "active", "launch_date": "1977-08-20"}', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('-98', 'New Horizons', '新视野号', 'probe', '飞掠冥王星,正处于柯伊伯带', '{"status": "active", "launch_date": "2006-01-19"}', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('-96', 'Parker Solar Probe', '帕克太阳探测器', 'probe', '正在''触摸''太阳,速度最快的人造物体', '{"status": "active", "launch_date": "2018-08-12"}', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('-61', 'Juno', '朱诺号', 'probe', '正在木星轨道运行', '{"status": "active", "launch_date": "2011-08-05"}', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('-168', 'Perseverance', '毅力号', 'probe', '火星探测车', '{"status": "active", "launch_date": "2020-07-30"}', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('10', 'Sun', '太阳', 'star', '太阳,太阳系的中心', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('199', 'Mercury', '水星', 'planet', '水星,距离太阳最近的行星', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('299', 'Venus', '金星', 'planet', '金星,太阳系中最热的行星', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('606', 'Titan', '泰坦', 'satellite', '土卫六是环绕土星运行的一颗卫星,是土星卫星中最大的一个,也是太阳系第二大的卫星。', 'null', '2025-11-30 12:56:21.696176', '2025-11-30 12:57:13.71257', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('499', 'Mars', '火星', 'planet', '火星,红色星球', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('599', 'Jupiter', '木星', 'planet', '木星,太阳系中最大的行星', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('699', 'Saturn', '土星', 'planet', '土星,拥有美丽的光环', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('301', 'Moon', '月球', 'satellite', '月球,地球的天然卫星', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('399', 'Earth', '地球', 'planet', '地球,我们的家园', 'null', '2025-11-27 11:04:42.507696', '2025-11-27 11:04:42.507696', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('-82', 'Cassini', '卡西尼号', 'probe', '土星探测器已于2017年撞击销毁', '{"status": "inactive", "launch_date": "1997-10-15"}', '2025-11-27 11:04:42.507696', '2025-11-29 18:50:56.175292', 'f');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('-170', 'Webb', '韦伯空间望远镜', 'probe', 'James Webb Space Telescope简称JWST是已发射的红外线空间天文台。', 'null', '2025-11-30 04:19:08.066695', '2025-11-30 04:45:33.952556', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('503', 'Ganymede', '伊俄', 'satellite', '木卫一英语Io音译为艾奥是木星最近的卫星是太阳系第四大卫星。', 'null', '2025-11-30 04:32:47.649744', '2025-11-30 05:11:54.264517', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('601', 'Mimas', '弥玛斯', 'satellite', '土卫一以希腊神话中的一位泰坦巨人的名字命名。', 'null', '2025-11-30 04:30:30.554802', '2025-11-30 05:11:55.782738', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('90004920', '3I/ATLAS', '3I/ATLAS', 'comet', '又称C/2025 N1 (ATLAS)是一颗星际彗星由位于智利里奥乌尔塔多的小行星陆地撞击持续报警系统于2025年7月1日发现', 'null', '2025-11-30 13:02:20.797868', '2025-11-30 14:01:33.220136', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('90000030', '1P/Halley', '哈雷彗星', 'comet', '哈雷彗星正式名称为1P/Halley是著名的短周期彗星每隔75-76年就能从地球上被观测到[5],亦是唯一能用肉眼直接从地球看到的短周期彗星,人的一生中可能经历两次其来访。', 'null', '2025-11-30 13:17:27.008344', '2025-11-30 14:01:57.892516', 't');
INSERT INTO "public"."celestial_bodies" ("id", "name", "name_zh", "type", "description", "extra_data", "created_at", "updated_at", "is_active") VALUES ('50326340', '1I/''Oumuamua', '奥陌陌', 'comet', '原定名 1I/2017 U1是已知第一颗经过太阳系的星际天体。它于2017年10月18日UT在距离地球约0.2 AU30,000,000 km19,000,000 mi处被泛星1号望远镜发现并在极端双曲线的轨道上运行。', 'null', '2025-11-30 13:12:34.82927', '2025-11-30 14:01:13.064328', 't');
COMMIT;
-- ----------------------------
-- Table structure for menus
-- ----------------------------
DROP TABLE IF EXISTS "public"."menus";
CREATE TABLE "public"."menus" (
"id" int4 NOT NULL DEFAULT nextval('menus_id_seq'::regclass),
"parent_id" int4,
"name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL,
"title" varchar(100) COLLATE "pg_catalog"."default" NOT NULL,
"icon" varchar(100) COLLATE "pg_catalog"."default",
"path" varchar(255) COLLATE "pg_catalog"."default",
"component" varchar(255) COLLATE "pg_catalog"."default",
"sort_order" int4 NOT NULL,
"is_active" bool NOT NULL,
"description" text COLLATE "pg_catalog"."default",
"created_at" timestamp(6) DEFAULT now(),
"updated_at" timestamp(6) DEFAULT now()
)
;
ALTER TABLE "public"."menus" OWNER TO "postgres";
COMMENT ON COLUMN "public"."menus"."parent_id" IS 'Parent menu ID (NULL for root)';
COMMENT ON COLUMN "public"."menus"."name" IS 'Menu name';
COMMENT ON COLUMN "public"."menus"."title" IS 'Display title';
COMMENT ON COLUMN "public"."menus"."icon" IS 'Icon name (e.g., ''settings'', ''database'')';
COMMENT ON COLUMN "public"."menus"."path" IS 'Route path (e.g., ''/admin/celestial-bodies'')';
COMMENT ON COLUMN "public"."menus"."component" IS 'Component path (e.g., ''admin/CelestialBodies'')';
COMMENT ON COLUMN "public"."menus"."sort_order" IS 'Display order (ascending)';
COMMENT ON COLUMN "public"."menus"."is_active" IS 'Menu active status';
COMMENT ON COLUMN "public"."menus"."description" IS 'Menu description';
-- ----------------------------
-- Records of menus
-- ----------------------------
BEGIN;
INSERT INTO "public"."menus" ("id", "parent_id", "name", "title", "icon", "path", "component", "sort_order", "is_active", "description", "created_at", "updated_at") VALUES (1, NULL, 'dashboard', '控制台', 'dashboard', '/admin/dashboard', 'admin/Dashboard', 1, 't', '系统控制台', '2025-11-28 18:07:11.767382', '2025-11-28 18:07:11.767382');
INSERT INTO "public"."menus" ("id", "parent_id", "name", "title", "icon", "path", "component", "sort_order", "is_active", "description", "created_at", "updated_at") VALUES (2, NULL, 'data_management', '数据管理', 'database', NULL, NULL, 2, 't', '数据管理模块', '2025-11-28 18:07:11.767382', '2025-11-28 18:07:11.767382');
INSERT INTO "public"."menus" ("id", "parent_id", "name", "title", "icon", "path", "component", "sort_order", "is_active", "description", "created_at", "updated_at") VALUES (6, NULL, 'platform_management', '平台管理', 'settings', NULL, NULL, 3, 't', '管理用户和系统参数', '2025-11-29 19:03:08.776597', '2025-11-29 19:03:08.776597');
INSERT INTO "public"."menus" ("id", "parent_id", "name", "title", "icon", "path", "component", "sort_order", "is_active", "description", "created_at", "updated_at") VALUES (3, 2, 'celestial_bodies', '天体数据管理', 'null', '/admin/celestial-bodies', 'admin/CelestialBodies', 1, 't', '查看和管理天体数据', '2025-11-28 18:07:11.767382', '2025-11-28 18:07:11.767382');
INSERT INTO "public"."menus" ("id", "parent_id", "name", "title", "icon", "path", "component", "sort_order", "is_active", "description", "created_at", "updated_at") VALUES (4, 2, 'static_data', '静态数据管理', 'null', '/admin/static-data', 'admin/StaticData', 2, 't', '查看和管理静态数据(星座、星系等)', '2025-11-28 18:07:11.767382', '2025-11-28 18:07:11.767382');
INSERT INTO "public"."menus" ("id", "parent_id", "name", "title", "icon", "path", "component", "sort_order", "is_active", "description", "created_at", "updated_at") VALUES (5, 2, 'nasa_data', 'NASA数据下载', 'null', '/admin/nasa-data', 'admin/NasaData', 3, 't', '管理NASA Horizons数据下载', '2025-11-28 18:07:11.767382', '2025-11-28 18:07:11.767382');
INSERT INTO "public"."menus" ("id", "parent_id", "name", "title", "icon", "path", "component", "sort_order", "is_active", "description", "created_at", "updated_at") VALUES (7, 6, 'user_management', '用户管理', 'null', '/admin/users', 'admin/Users', 1, 't', '管理系统用户账号', '2025-11-29 19:03:08.776597', '2025-11-29 19:03:08.776597');
INSERT INTO "public"."menus" ("id", "parent_id", "name", "title", "icon", "path", "component", "sort_order", "is_active", "description", "created_at", "updated_at") VALUES (8, 6, 'platform_parameters_management', '平台参数管理', 'null', '/admin/settings', 'admin/Settings', 2, 't', '管理系统通用配置参数', '2025-11-29 19:03:08.776597', '2025-11-29 19:03:08.776597');
INSERT INTO "public"."menus" ("id", "parent_id", "name", "title", "icon", "path", "component", "sort_order", "is_active", "description", "created_at", "updated_at") VALUES (10, 6, 'system_tasks', '系统任务监控', 'schedule', '/admin/tasks', 'admin/Tasks', 30, 't', NULL, '2025-11-30 16:04:59.572869', '2025-11-30 16:04:59.572869');
COMMIT;
-- ----------------------------
-- Table structure for nasa_cache
-- ----------------------------
DROP TABLE IF EXISTS "public"."nasa_cache";
CREATE TABLE "public"."nasa_cache" (
"cache_key" varchar(500) COLLATE "pg_catalog"."default" NOT NULL,
"body_id" varchar(50) COLLATE "pg_catalog"."default",
"start_time" timestamp(6),
"end_time" timestamp(6),
"step" varchar(10) COLLATE "pg_catalog"."default",
"data" jsonb NOT NULL,
"expires_at" timestamp(6) NOT NULL,
"created_at" timestamp(6) DEFAULT now()
)
;
ALTER TABLE "public"."nasa_cache" OWNER TO "postgres";
COMMENT ON COLUMN "public"."nasa_cache"."cache_key" IS 'Cache key: {body_id}:{start}:{end}:{step}';
COMMENT ON COLUMN "public"."nasa_cache"."body_id" IS 'Body ID';
COMMENT ON COLUMN "public"."nasa_cache"."start_time" IS 'Query start time';
COMMENT ON COLUMN "public"."nasa_cache"."end_time" IS 'Query end time';
COMMENT ON COLUMN "public"."nasa_cache"."step" IS 'Time step (e.g., ''1d'')';
COMMENT ON COLUMN "public"."nasa_cache"."data" IS 'Complete API response (JSON)';
COMMENT ON COLUMN "public"."nasa_cache"."expires_at" IS 'Cache expiration time';
-- ----------------------------
-- Records of nasa_cache
-- ----------------------------
BEGIN;
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '399', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 0.4069096565927317, "y": 0.898844958806908, "z": -0.00005522887991875773, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.421908', '2025-11-29 09:33:48.421908');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '136199', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 85.23035679505978, "y": 39.4343443015953, "z": -17.53157415922237, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.440484', '2025-11-29 09:33:48.440484');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '136108', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": -37.06975282888567, "y": -23.54816541798193, "z": 23.55484623121936, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.453571', '2025-11-29 09:33:48.453571');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '-61', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": -1.437755979923895, "y": 4.98797865184957, "z": -0.01989199042680636, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.464467', '2025-11-29 09:33:48.464467');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '599', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": -1.446208885740123, "y": 4.994331848518202, "z": 0.01161039423087845, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.479688', '2025-11-29 09:33:48.479688');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '136472', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": -45.99147113543151, "y": -8.977876899931898, "z": 24.1531166213925, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.489958', '2025-11-29 09:33:48.489958');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '499', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": -0.1497891567545544, "y": -1.459951306889201, "z": -0.02692129026178018, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.501895', '2025-11-29 09:33:48.501895');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '199', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": -0.0840506956359852, "y": 0.3007075868245221, "z": 0.0322836073665921, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.511427', '2025-11-29 09:33:48.511427');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '301', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 0.4091821122797022, "y": 0.8976427159750155, "z": -0.0001017236328996329, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.523944', '2025-11-29 09:33:48.523944');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '899', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 29.87471094758927, "y": 0.4115889127982045, "z": -0.6969154495136582, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.537697', '2025-11-29 09:33:48.537697');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '-98', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 19.90522076551015, "y": -60.05862209326342, "z": 2.203256780305199, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.54826', '2025-11-29 09:33:48.54826');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '-96', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 0.4866676873210167, "y": -0.1296991871900179, "z": -0.02985941529723999, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.557683', '2025-11-29 09:33:48.557683');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '-168', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": -0.1497691805035074, "y": -1.459961716561737, "z": -0.02692387889272935, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.568467', '2025-11-29 09:33:48.568467');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '50326340', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 45.34163358624963, "y": 7.254039472144692, "z": 19.13305991101185, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.176018', '2025-11-30 16:40:13.354988');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '50326340', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 45.17142851853252, "y": 7.228677364154636, "z": 19.05857535611775, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:06.681922', '2025-11-30 14:38:05.255042');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '399', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 0.4385657286854642, "y": 0.8842432984692209, "z": -0.00005338272498396311, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.586681', '2025-11-30 14:38:57.586681');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '136199', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 85.23131162800924, "y": 39.43262777285576, "z": -17.53344859700739, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.603822', '2025-11-30 14:38:57.603822');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '136108', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -37.07250962768507, "y": -23.54465682880082, "z": 23.5551114003899, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.635202', '2025-11-30 14:38:57.635202');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '-61', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -1.424288651896172, "y": 4.993068661123791, "z": -0.01703278319189943, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.651555', '2025-11-30 14:38:57.651555');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '599', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -1.431517900071797, "y": 4.997806578399909, "z": 0.01126730741994878, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.664367', '2025-11-30 14:38:57.664367');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '136472', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -45.99183973207791, "y": -8.973593476275743, "z": 24.15376029258411, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.676812', '2025-11-30 14:38:57.676812');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '499', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -0.1786592049909938, "y": -1.459228615700759, "z": -0.0261982014107643, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.688911', '2025-11-30 14:38:57.688911');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '199', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -0.0173629012768162, "y": 0.3078760952717054, "z": 0.02675286743387364, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.703009', '2025-11-30 14:38:57.703009');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '301', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 0.4401403641583912, "y": 0.8821314461933324, "z": -0.0001937729408146045, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.72876', '2025-11-30 14:38:57.72876');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '899', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 29.87485194708481, "y": 0.4052743686218909, "z": -0.6967883046200377, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.742655', '2025-11-30 14:38:57.742655');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '-98', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 19.89907835632467, "y": -60.04415933924647, "z": 2.202687478364319, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.762319', '2025-11-30 14:38:57.762319');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '-96', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 0.5133923572981219, "y": -0.157526243208142, "z": -0.03178374029635921, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.779175', '2025-11-30 14:38:57.779175');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '-168', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -0.1786371174944146, "y": -1.459232585021869, "z": -0.02620144138721896, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.79755', '2025-11-30 14:38:57.79755');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '90000030', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -19.52150990598776, "y": 27.42092997167663, "z": -9.892076311816648, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.215639', '2025-11-30 16:40:15.219599');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '2000001', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 2.757893466552557, "y": 0.8251286531152949, "z": -0.4819543867075194, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:06.693137', '2025-11-30 14:38:06.693137');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '50326340', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 45.14305949940297, "y": 7.224449953663926, "z": 19.04616061475457, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:12.143887', '2025-11-30 14:38:08.12405');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '90000030', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -19.5285577579066, "y": 27.41836409571058, "z": -9.893612740378765, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:12.16998', '2025-11-30 14:38:12.173814');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '90004920', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -1.381442021958738, "y": -0.04056655444445224, "z": 0.07520280974736904, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:12.189497', '2025-11-30 14:38:12.192838');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '2000001', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 2.698868279444411, "y": 0.980156835393438, "z": -0.4661727053167005, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:42.753006', '2025-11-30 14:37:42.753006');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '599', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -1.438865411828493, "y": 4.996074245450399, "z": 0.01143884631349353, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.833378', '2025-11-30 14:37:50.833378');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '2000001', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 2.689872940911583, "y": 1.001556937760596, "z": -0.4638380583774875, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.844596', '2025-11-29 09:17:05.844596');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '-32', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 39.14832804434981, "y": -103.8155347028511, "z": -87.70533731236905, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:06.047415', '2025-11-29 09:17:06.047415');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '999', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 19.13555973301846, "y": -29.68658388345706, "z": -2.357095029738795, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.579162', '2025-11-29 09:33:48.579162');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '-31', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": -31.79570802395128, "y": -134.4112089100603, "z": 97.2516826245431, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.642506', '2025-11-29 09:33:48.642506');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '999', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 19.13285095777496, "y": -29.68757749297204, "z": -2.356202351697279, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:51.008155', '2025-11-30 14:37:51.008155');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '599', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -1.36525649765955, "y": 5.012915649168125, "z": 0.009722154579107056, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.668213', '2025-11-30 14:37:55.668213');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '90004920', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -1.372839754435643, "y": -0.07892387219394875, "z": 0.0773413670661216, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.506572', '2025-11-30 14:38:16.510168');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '90004920', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -1.346096724118506, "y": -0.1939238668023326, "z": 0.08370308178729947, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:18.583803', '2025-11-30 14:38:18.589512');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '-96', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 0.6124522591110799, "y": -0.3862015445092543, "z": -0.04064229476208573, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:18.611183', '2025-11-30 14:38:18.611183');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '599', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -1.254310719407385, "y": 5.036188927289951, "z": 0.00714325644111811, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.146503', '2025-11-30 14:38:19.146503');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '2000001', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 2.785308523002956, "y": 0.7418694238427759, "z": -0.4896406198045508, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:44.935668', '2025-11-30 14:39:44.935668');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '503', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -1.263916028342283, "y": 5.027913106846577, "z": 0.007024021888325304, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:44.943935', '2025-11-30 14:39:44.943935');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '136108', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -37.10831488386052, "y": -23.49902849762753, "z": 23.55853806295048, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.002744', '2025-11-30 14:39:45.002744');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '601', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 9.528751179177227, "y": -0.08797272664567156, "z": -0.3774213730003984, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.141865', '2025-11-30 14:39:45.141865');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '90004920', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -1.486748127770403, "y": 0.4952095332501642, "z": 0.04455257993592956, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.241851', '2025-11-30 16:40:15.249117');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '136199', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 85.22960081112738, "y": 39.4357031526233, "z": -17.53009021263407, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.562014', '2025-11-29 14:45:36.562014');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '-32', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 39.14498991441749, "y": -103.8081164201916, "z": -87.69634657107362, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.654146', '2025-11-29 09:33:48.654146');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '2000001', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 2.690350937010032, "y": 1.000432299324247, "z": -0.4639617208928429, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.370448', '2025-11-29 06:24:18.370448');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '136108', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": -37.06802964392354, "y": -23.55035819287315, "z": 23.55468038580255, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.419881', '2025-11-29 06:24:18.419881');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '199', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": -0.1242588867465034, "y": 0.2903329146116532, "z": 0.03512363719998867, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.463482', '2025-11-29 06:24:18.463482');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '-31', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": -31.79720466646097, "y": -134.4210352023488, "z": 97.25878287684897, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.556338', '2025-11-29 06:24:18.556338');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '599', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": -1.23204854981748, "y": 5.040554445206258, "z": 0.006626967413611227, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.889467', '2025-11-29 06:25:29.892754');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '599', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": -0.7899661848172759, "y": 5.106724476913768, "z": -0.003538822447225519, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.927205', '2025-11-29 06:25:29.931412');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '-31', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": -31.76098399014949, "y": -134.1832398913909, "z": 97.08695417621091, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:30.063266', '2025-11-29 06:25:30.065879');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '-32', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 38.93134050586588, "y": -103.3333455736254, "z": -87.12090341401806, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.099199', '2025-11-29 06:25:30.102609');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '301', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 0.9508841089098676, "y": -0.3407847506863571, "z": -0.0002045000487370622, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.548265', '2025-11-29 06:26:44.552136');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '-32', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 38.93619644051968, "y": -103.3441357939923, "z": -87.13398245169603, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.670496', '2025-11-29 06:26:44.673454');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '199', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": -0.1765415227351779, "y": 0.2693161614112331, "z": 0.03820148301859709, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.436094', '2025-11-29 06:27:23.443475');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '-31', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": -31.6939215591398, "y": -133.7430298966951, "z": 96.76884378483192, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.539977', '2025-11-29 06:27:23.542772');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '136199', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 85.2703666004818, "y": 39.36216692290118, "z": -17.61028011123744, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.725341', '2025-11-29 06:28:09.731216');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '-168', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": -1.203252229721197, "y": -1.015862982198999, "z": 0.008215971791380453, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.911571', '2025-11-29 06:28:09.915518');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '301', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 0.9675322089196116, "y": -0.2909812073200299, "z": -0.00009405616774950348, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.567094', '2025-11-29 06:28:58.571647');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '-32', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 38.94348031046258, "y": -103.3603211311059, "z": -87.15360093957065, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.67157', '2025-11-29 06:28:58.674472');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '499', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": -1.134199867553943, "y": -1.080395987989773, "z": 0.005172334556582282, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.678599', '2025-11-29 06:34:56.68391');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '299', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": -0.1040199584205041, "y": 0.7114716639793662, "z": 0.01577632491406496, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.788878', '2025-11-29 06:34:56.792357');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '399', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 0.9913022339421941, "y": -0.1727370708544685, "z": 0.000002314818435048089, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.740273', '2025-11-29 06:35:48.747717');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '-96', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 0.1589024248506377, "y": 0.06132066636218379, "z": -0.008331999910861265, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.925917', '2025-11-29 06:35:48.931004');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '-61', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": -0.8844927334767122, "y": 5.089212234496086, "z": -0.007937518004770886, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.659087', '2025-11-29 06:37:03.663515');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '899', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 29.87907938011122, "y": 0.1747281984390247, "z": -0.6921363830901383, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.763526', '2025-11-29 06:37:03.768962');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '10', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.864109', '2025-11-29 06:37:03.868352');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '399', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 0.9960868719688607, "y": -0.1388784955302507, "z": 0.0000001679333358171769, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.898269', '2025-11-29 06:40:20.902637');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '499', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": -1.103275614859422, "y": -1.106820489244781, "z": 0.003860252713456058, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.973772', '2025-11-29 06:40:20.976647');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '2000001', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 2.689075156279716, "y": 1.003430916203794, "z": -0.4636317602740871, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.517068', '2025-11-29 14:45:36.517068');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '90000030', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -19.52755255482651, "y": 27.41873303278969, "z": -9.89339406512796, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:06.711817', '2025-11-30 14:38:06.715059');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '503', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -1.381060600915466, "y": 5.01132769221966, "z": 0.0104567105132232, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.357857', '2025-11-30 16:40:15.357857');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '199', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 0.3314705000645559, "y": -0.219077815595308, "z": -0.0483058567042859, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.876536', '2025-11-30 14:38:19.876536');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '399', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 0.3868703633113312, "y": 0.9074080464548188, "z": -0.00005642291589915567, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.396804', '2025-11-29 06:24:18.396804');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '301', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 0.3893443603688082, "y": 0.9069139772533995, "z": -0.00003807021849696308, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.471384', '2025-11-29 06:24:18.471384');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '999', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 19.13895062275961, "y": -29.68532912407216, "z": -2.35819972315485, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.51337', '2025-11-29 06:24:18.51337');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '2000001', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 2.791038401185732, "y": 0.7232677444753066, "z": -0.4912850640648935, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:24:57.656925', '2025-11-29 06:24:26.719348');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '136108', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": -37.10969078287341, "y": -23.49727294404524, "z": 23.55866909638336, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.829032', '2025-11-29 06:25:29.837103');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '136108', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": -37.19070889925796, "y": -23.3936155556409, "z": 23.56630027395454, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.899728', '2025-11-29 06:25:29.903642');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '-98', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 19.6348732987897, "y": -59.42203413498502, "z": 2.178197554777419, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.011541', '2025-11-29 06:25:30.014378');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '899', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 29.8795640118362, "y": 0.1399823641314827, "z": -0.6914317319992315, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.564334', '2025-11-29 06:26:44.567799');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '399', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 0.9557225039635915, "y": -0.3220267537434819, "z": 0.00001636580656843991, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.31608', '2025-11-29 06:27:23.320911');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '-96', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 0.4291981114543199, "y": -0.07869241062678542, "z": -0.02585315680748446, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.480064', '2025-11-29 06:27:23.482456');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '399', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 0.9607932404574078, "y": -0.3057459826715404, "z": 0.0000148990242091332, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.693149', '2025-11-29 06:28:09.70006');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '-96', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 0.4094717133847875, "y": -0.06332842203271322, "z": -0.02450392971582291, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.895467', '2025-11-29 06:28:09.899514');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '499', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": -1.193675481453361, "y": -1.025325133757909, "z": 0.007784872495509057, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.547705', '2025-11-29 06:28:58.550918');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '299', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 0.01738792544700795, "y": 0.7194497170492415, "z": 0.008880686940233688, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.653398', '2025-11-29 06:28:58.656373');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '199', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": -0.3502287706431357, "y": 0.09905804161048144, "z": 0.04021817552057643, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.694099', '2025-11-29 06:34:56.698661');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '-31', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": -31.70350250915095, "y": -133.8059164518272, "z": 96.81428926597039, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.797324', '2025-11-29 06:34:56.800777');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '199', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": -0.3626585979505383, "y": 0.07292006256817837, "z": 0.03922218193485337, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.859438', '2025-11-29 06:35:48.864154');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '-31', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": -31.70470011657721, "y": -133.8137772864115, "z": 96.81996992435482, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:49.031541', '2025-11-29 06:35:49.035612');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '999', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 19.06484167929358, "y": -29.7125823134367, "z": -2.33380781539881, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.94588', '2025-11-30 14:38:19.94588');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '699', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 9.521903234820684, "y": 0.05736383880727534, "z": -0.380025925204588, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.828137', '2025-11-30 14:38:57.828137');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '-32', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 39.14013444760983, "y": -103.7973261891661, "z": -87.6832690987916, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.914284', '2025-11-30 14:38:57.914284');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '299', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -0.718801009508303, "y": 0.006527987859938148, "z": 0.04156436860102183, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.841996', '2025-11-30 14:39:45.841996');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '301', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 0.424776160067158, "y": 0.8899819642601253, "z": -0.000150159964098408, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.93462', '2025-11-30 14:37:50.93462');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '-32', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 39.14256218178825, "y": -103.8027213049132, "z": -87.68980783943692, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:51.108057', '2025-11-30 14:37:51.108057');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '-61', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -1.386471720058853, "y": 5.009204001334788, "z": 0.003164407716270477, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.407594', '2025-11-30 16:40:15.407594');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '399', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 0.6692894938433782, "y": 0.72999308109382, "z": -0.00004933135785572338, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:06.71893', '2025-11-30 14:38:06.71893');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '199', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": -0.1346999900459337, "y": 0.2868461001651567, "z": 0.03579633852955724, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.626093', '2025-11-29 14:45:36.626093');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '136199', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 85.2297599711007, "y": 39.43541708367287, "z": -17.53040262366651, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.409234', '2025-11-29 06:24:18.409234');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '499', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": -0.1317162405159078, "y": -1.460125723348635, "z": -0.02736812479909729, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.454118', '2025-11-29 06:24:18.454118');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '899', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 29.87462205394789, "y": 0.4155360809229253, "z": -0.6969942656539335, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.479888', '2025-11-29 06:24:18.479888');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '299', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": -0.5117407003404342, "y": -0.5110832077602734, "z": 0.02250586164771977, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.547314', '2025-11-29 06:24:18.547314');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '-61', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": -1.221891049031305, "y": 5.031186683764978, "z": -0.0281531645995004, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.866474', '2025-11-29 06:25:29.873801');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '-61', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": -0.7786640911114996, "y": 5.09354158062908, "z": -0.03781134164230096, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.912972', '2025-11-29 06:25:29.916975');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '699', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 9.53005116688387, "y": -0.09294928169424421, "z": -0.3777314463087457, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:30.023284', '2025-11-29 06:25:30.025863');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '699', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 9.539625184388791, "y": -0.4213036524831343, "z": -0.3723933149361465, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.053061', '2025-11-29 06:25:30.055702');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '2000001', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 2.894496502611976, "y": 0.2206766007354811, "z": -0.5262539002207394, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.071907', '2025-11-29 06:29:21.291738');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '-98', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 19.65331157801631, "y": -59.46545259811394, "z": 2.179906787735927, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.243875', '2025-11-29 06:29:51.245856');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '899', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 29.87934861818562, "y": 0.1557759059370502, "z": -0.6917522794621036, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.666024', '2025-11-29 06:30:40.660706');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '499', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": -1.164338268365945, "y": -1.053222921101797, "z": 0.006480833085658175, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.316231', '2025-11-29 06:32:22.312181');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '299', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": -0.04347140269190074, "y": 0.7180266714166531, "z": 0.01237272464589564, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.420677', '2025-11-29 06:32:22.416671');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '136472', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": -46.00574184753906, "y": -8.808659399121682, "z": 24.17839291896963, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.921852', '2025-11-29 06:33:14.923738');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '799', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 10.26495370599171, "y": 16.59110281923677, "z": -0.07148275134440525, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:15.015739', '2025-11-29 06:33:15.017627');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '399', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 0.9853694641059897, "y": -0.206388860193297, "z": 0.000005080324155857033, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.803682', '2025-11-29 06:34:07.811253');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '-96', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 0.2449906110530355, "y": 0.03243103472464736, "z": -0.01369720947586854, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.033466', '2025-11-29 06:34:08.036392');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '301', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 0.9901547865698126, "y": -0.1878188718720897, "z": 0.0001961050590703047, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.706447', '2025-11-29 06:34:56.710744');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '-32', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 38.95804794232658, "y": -103.392691826714, "z": -87.1928376684917, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.805157', '2025-11-29 06:34:56.808561');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '136108', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": -37.17425597725889, "y": -23.41471099333079, "z": 23.56476406710513, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.781184', '2025-11-29 06:35:48.784901');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '999', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 18.92858819319333, "y": -29.76223257317377, "z": -2.288979897964448, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.957449', '2025-11-29 06:35:48.962877');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '599', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": -0.8879926050941992, "y": 5.095392071292631, "z": -0.0012984712089872, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.68789', '2025-11-29 06:37:03.690877');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '-98', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 19.67482183863834, "y": -59.51610474987397, "z": 2.181900772035037, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.780981', '2025-11-29 06:37:03.786059');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '799', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 10.25142603429695, "y": 16.59864530201366, "z": -0.07127966684168661, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.881133', '2025-11-29 06:37:03.885399');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '2000001', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 2.884876170893424, "y": 0.2974105003661336, "z": -0.5220527170604374, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.873851', '2025-11-29 06:39:50.803907');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '399', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 0.3814951155661225, "y": 0.9096177783581177, "z": -0.00005673630043378273, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.545038', '2025-11-29 14:45:36.545038');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '606', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 9.520423710711803, "y": 0.03078920632248144, "z": -0.382697443103709, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.712296', '2025-11-30 16:40:15.717531');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '-61', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": -1.446302452121971, "y": 4.984876024320136, "z": -0.02117007376872694, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.4286', '2025-11-29 06:24:18.4286');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '90004920', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -1.398185844613474, "y": 0.03615748983304937, "z": 0.07090089867837261, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:06.728964', '2025-11-30 14:38:06.731447');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '-96', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 0.4677234637049023, "y": -0.1117002563894495, "z": -0.02851906387840003, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.497887', '2025-11-29 06:24:18.497887');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '503', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -1.260958453851727, "y": 5.033527259932608, "z": 0.006945540736579958, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:18.784821', '2025-11-30 14:38:18.784821');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '-32', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 39.1480245781059, "y": -103.8148603135619, "z": -87.7045199729548, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.563915', '2025-11-29 06:24:18.563915');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '199', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 0.2951238611442145, "y": -0.2885298291248416, "z": -0.05064793855500426, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.92965', '2025-11-29 06:25:29.934303');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '199', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": -0.08303214499228734, "y": 0.3009081046520322, "z": 0.03220657538694302, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.974851', '2025-11-29 06:25:29.978697');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '10', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:30.033148', '2025-11-29 06:25:30.035797');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '10', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.062813', '2025-11-29 06:25:30.065299');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '399', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 0.9701043397405216, "y": -0.2729280547612153, "z": 0.00001167953702669208, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.109023', '2025-11-29 06:29:51.11563');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '-96', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 0.3647063905550031, "y": -0.03184442266990937, "z": -0.02148845769457946, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.252391', '2025-11-29 06:29:51.254518');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '301', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 0.9767581102670426, "y": -0.2568921280566388, "z": 0.00001201890635907737, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.656596', '2025-11-29 06:30:40.650721');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '-32', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 38.9483362033202, "y": -103.371111359978, "z": -87.1666798857654, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.762776', '2025-11-29 06:30:40.756713');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '301', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 0.9807442593375264, "y": -0.239674846991427, "z": 0.00006646712799946338, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.336325', '2025-11-29 06:32:22.332348');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '-32', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 38.95076414382293, "y": -103.3765064755771, "z": -87.17321934515287, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.438664', '2025-11-29 06:32:22.434687');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '199', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": -0.3190297326702818, "y": 0.1493492853496034, "z": 0.04146651951469184, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.93855', '2025-11-29 06:33:14.940921');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '-31', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": -31.70110728642294, "y": -133.790194792632, "z": 96.80292793136638, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:15.031453', '2025-11-29 06:33:15.033501');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '2000001', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 2.889953244247028, "y": 0.2590675247036976, "z": -0.5242017245172007, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.776179', '2025-11-29 06:33:36.835218');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '-98', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 19.66560329465524, "y": -59.4943970439332, "z": 2.18104622326726, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.017307', '2025-11-29 06:34:08.020124');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '899', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 29.87917108359635, "y": 0.168410765509357, "z": -0.6920089555865351, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.717856', '2025-11-29 06:34:56.721441');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '136199', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 85.26656454689564, "y": 39.36904843365736, "z": -17.60278611334502, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.760476', '2025-11-29 06:35:48.767091');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '-168', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": -1.123964682657749, "y": -1.08930661520856, "z": 0.00473542301981116, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.941644', '2025-11-29 06:35:48.94639');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '2000001', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 2.886195485873777, "y": 0.2878296438267823, "z": -0.5225990347806401, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.559475', '2025-11-29 06:36:32.935437');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '136472', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": -46.0050334436616, "y": -8.817228390984752, "z": 24.17712044292205, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.700228', '2025-11-29 06:37:03.704088');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '-96', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 0.1028421734688025, "y": 0.07094519588030757, "z": -0.004964119377571821, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.796181', '2025-11-29 06:37:03.799738');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '299', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": -0.143998784930393, "y": 0.7042696723373916, "z": 0.01798416145371049, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.894645', '2025-11-29 06:37:03.899612');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '-61', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": -1.448596822275745, "y": 4.984058574872735, "z": -0.02145195945563856, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.585689', '2025-11-29 14:45:36.585689');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '599', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": -1.455383783253972, "y": 4.992139594490685, "z": 0.01182481573715517, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.436821', '2025-11-29 06:24:18.436821');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '136199', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 85.27226693681756, "y": 39.35872556231389, "z": -17.61402696729011, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.885791', '2025-11-29 06:25:29.889724');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '-168', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": -0.5578563218051706, "y": -1.397845729835722, "z": -0.01560222545471972, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:30.00022', '2025-11-29 06:25:30.003169');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '-168', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": -1.240736019890574, "y": -0.9772666121651947, "z": 0.00994762731657474, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.03282', '2025-11-29 06:25:30.035351');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '-31', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": -31.69032866556863, "y": -133.7194474958882, "z": 96.75180163130814, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.089422', '2025-11-29 06:25:30.092454');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '136199', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 85.26941625887942, "y": 39.3638874515886, "z": -17.60840664746867, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.131786', '2025-11-29 06:29:51.136426');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '-168', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": -1.183963915089645, "y": -1.034704190212413, "z": 0.007347530995902277, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.260085', '2025-11-29 06:29:51.262175');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '136199', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 85.26894104497971, "y": 39.36474767811503, "z": -17.6074699066563, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.582338', '2025-11-29 06:30:40.579588');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '-168', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": -1.174185040111994, "y": -1.044007143037556, "z": 0.006912816153692107, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.695479', '2025-11-29 06:30:40.689871');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '136472', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": -46.00591871467606, "y": -8.806517135888019, "z": 24.17871091564997, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.304718', '2025-11-29 06:32:22.301739');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '799', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 10.26833454852364, "y": 16.58921550862088, "z": -0.07153363162564245, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.411951', '2025-11-29 06:32:22.407785');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '-61', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": -0.849549824997003, "y": 5.087286062431547, "z": -0.0232306271069725, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.903976', '2025-11-29 06:33:14.905962');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '699', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 9.53889270235905, "y": -0.3712331344794126, "z": -0.3732375286025828, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.999574', '2025-11-29 06:33:15.001304');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '199', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": -0.3356894919553887, "y": 0.1245979730634989, "z": 0.04097181656986624, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.967465', '2025-11-29 06:34:07.972079');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '-31', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": -31.70230489908337, "y": -133.7980556205591, "z": 96.8086086016412, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.109677', '2025-11-29 06:34:08.113169');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '136199', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 85.2656137486113, "y": 39.37076856038122, "z": -17.60091255437439, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.914793', '2025-11-29 06:40:20.917484');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '199', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": -0.3813043983404519, "y": 0.01954804496424344, "z": 0.03657068812845071, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.983322', '2025-11-29 06:40:20.985065');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '999', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 18.93405040086678, "y": -29.76023907270737, "z": -2.290757770780983, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.043254', '2025-11-29 06:40:21.045739');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '-32', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 38.96533170739186, "y": -103.4088771838428, "z": -87.21245590961374, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.1058', '2025-11-29 06:40:21.108727');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '50326340', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 45.15724406298186, "y": 7.226563672948979, "z": 19.05236800867062, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:08.111072', '2025-11-30 14:38:06.695443');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '301', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 0.7454843145986574, "y": 0.6575757388961911, "z": 0.00007169890117329594, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.765929', '2025-11-30 14:38:16.765929');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '799', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 10.07837764864235, "y": 16.6938656076142, "z": -0.06868203441838239, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:19.244891', '2025-11-30 14:38:19.244891');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '-32', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 39.08672380655771, "y": -103.6786335403855, "z": -87.53941451526279, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:19.881712', '2025-11-30 14:38:19.881712');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '301', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 0.7685417993589089, "y": 0.6303270509668006, "z": -0.00002773674525191572, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.900456', '2025-11-30 14:38:19.900456');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '699', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 9.529263818053678, "y": -0.0762497805230477, "z": -0.3779901785697563, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.95493', '2025-11-30 14:38:19.95493');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '399', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 0.7771998055092569, "y": 0.617437535922594, "z": -0.00004048381185103434, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:44.949871', '2025-11-30 14:39:44.949871');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '136108', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": -37.06757010379205, "y": -23.55094292069966, "z": 23.55463614545837, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.572184', '2025-11-29 14:45:36.572184');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '136472', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": -45.99124056814133, "y": -8.980554023983625, "z": 24.15271422752661, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.445454', '2025-11-29 06:24:18.445454');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '136472', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": -45.99677849139215, "y": -8.915764282017024, "z": 24.16243071207263, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.903443', '2025-11-29 06:25:29.906616');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '136472', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": -46.00733029378527, "y": -8.789378814989846, "z": 24.18125312747842, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.943215', '2025-11-29 06:25:29.946639');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '799', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 10.09538923472217, "y": 16.68460816451575, "z": -0.06893698245881738, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:30.043192', '2025-11-29 06:25:30.045953');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '799', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 10.29536703145616, "y": 16.5740926700804, "z": -0.07194048592122937, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.07256', '2025-11-29 06:25:30.074992');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '136108', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": -37.1824840425491, "y": -23.40416406877258, "z": 23.56553318502478, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.150982', '2025-11-29 06:29:51.157704');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '999', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 18.91221618154638, "y": -29.7681571160514, "z": -2.283594179073199, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.268715', '2025-11-29 06:29:51.270817');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '599', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": -0.8427870298380429, "y": 5.100851058995432, "z": -0.002332611395437937, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.62093', '2025-11-29 06:30:40.615254');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '10', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.723558', '2025-11-29 06:30:40.717365');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '-61', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": -0.8413313057150723, "y": 5.087563260025628, "z": -0.02580775197126643, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.276802', '2025-11-29 06:32:22.274067');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '699', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 9.538987521595917, "y": -0.3767964004061021, "z": -0.3731445953352185, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.393301', '2025-11-29 06:32:22.388989');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '399', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 0.9819760609804423, "y": -0.2231257752270376, "z": 0.000006649427998420176, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.86015', '2025-11-29 06:33:14.864983');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '-96', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 0.2799151426058487, "y": 0.01651636373502639, "z": -0.01593127012797437, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.973872', '2025-11-29 06:33:14.975899');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '899', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 29.8792163324512, "y": 0.1652524783981329, "z": -0.691944735535593, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.003962', '2025-11-29 06:34:08.006641');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '136472', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": -46.00485610862437, "y": -8.819370623535569, "z": 24.17680220158378, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.961941', '2025-11-29 06:40:20.964209');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '-96', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 0.03085727216842987, "y": 0.06776899873298717, "z": -0.0008524433164493515, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.022426', '2025-11-29 06:40:21.025031');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '299', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": -0.163824245763165, "y": 0.6998264823824597, "z": 0.01906704911381847, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.084707', '2025-11-29 06:40:21.087247');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '90000030', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -19.52805522439548, "y": 27.41854866354568, "z": -9.8935034366943, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:08.136492', '2025-11-30 14:38:08.139889');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '399', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 0.7314341094995458, "y": 0.66949579224154, "z": -0.00004574791649059063, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.550726', '2025-11-30 14:38:16.550726');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '599', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -1.269140285898434, "y": 5.033224347742974, "z": 0.007487326090983674, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.636753', '2025-11-30 14:38:16.636753');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '136472', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -45.99568697983361, "y": -8.928615691926131, "z": 24.1605070314909, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.662755', '2025-11-30 14:38:16.662755');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '499', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -0.4758608480885918, "y": -1.419531635907637, "z": -0.01807839170679973, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.684978', '2025-11-30 14:38:16.684978');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '699', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 9.528723321365863, "y": -0.06511560738573915, "z": -0.3781626483484187, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:18.868001', '2025-11-30 14:38:18.868001');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '-96', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 0.6081749218252639, "y": -0.3999713533961787, "z": -0.04058482730810959, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.929083', '2025-11-30 14:38:19.929083');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '299', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -0.7188179628743918, "y": -0.01378658091530868, "z": 0.04128625663959287, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.995835', '2025-11-30 14:38:19.995835');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '799', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 10.0034058254771, "y": 16.73439736732494, "z": -0.06755929857949648, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.868531', '2025-11-30 14:38:57.868531');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '-98', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 19.90905972949205, "y": -60.06766119311793, "z": 2.203612588623621, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.488393', '2025-11-29 06:24:18.488393');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '10', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.530137', '2025-11-29 06:24:18.530137');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '399', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 0.7986944868186452, "y": 0.590268655522892, "z": -0.00003777824441315787, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:24:57.706655', '2025-11-29 06:24:57.714063');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '136199', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 85.24419141456993, "y": 39.40944527021196, "z": -17.55875119052119, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:24:57.730291', '2025-11-29 06:24:57.736384');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '899', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 29.87662007534234, "y": 0.3200120729209069, "z": -0.6950727497313715, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.960606', '2025-11-29 06:25:29.964224');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '899', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 29.87964795283589, "y": 0.1336641452367142, "z": -0.6913041876597219, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.999724', '2025-11-29 06:25:30.002208');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '-61', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": -0.8252145596648802, "y": 5.08853107729493, "z": -0.03010003979062689, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.169591', '2025-11-29 06:29:51.173253');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '699', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 9.539167537313885, "y": -0.3879233442908668, "z": -0.3729579643875546, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.276158', '2025-11-29 06:29:51.27869');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '-61', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": -0.8332252315888882, "y": 5.08798722991328, "z": -0.02808472856879433, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.611086', '2025-11-29 06:30:40.605255');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '699', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 9.539079178492024, "y": -0.3823598089236209, "z": -0.37305140934326, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.715119', '2025-11-29 06:30:40.709793');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '136199', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 85.26846580243316, "y": 39.36560787946616, "z": -17.60653315989337, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.242569', '2025-11-29 06:32:22.240231');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '-168', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": -1.164317063603658, "y": -1.053230362631463, "z": 0.006477817001712399, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.374268', '2025-11-29 06:32:22.370267');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '499', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": -1.154380413191283, "y": -1.062362315105149, "z": 0.006045119419456965, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.930777', '2025-11-29 06:33:14.932679');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '299', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": -0.06371025107538457, "y": 0.7164105908501561, "z": 0.01351830524570457, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:15.023151', '2025-11-29 06:33:15.024994');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '599', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": -0.8653973511026238, "y": 5.098169861624489, "z": -0.001815580546679038, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.905662', '2025-11-29 06:34:07.910874');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '10', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.081117', '2025-11-29 06:34:08.083721');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '-168', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": -1.103267554350163, "y": -1.106841509783366, "z": 0.003862951689928127, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.033508', '2025-11-29 06:40:21.035986');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '-31', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": -31.70709532332314, "y": -133.8294989654353, "z": 96.83133122329367, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.094527', '2025-11-29 06:40:21.097233');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '90004920', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -1.389890177329537, "y": -0.00220467286316172, "z": 0.0730558621712515, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:08.151291', '2025-11-30 14:38:08.15486');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '136108', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -37.10143402683666, "y": -23.50780558036985, "z": 23.55788205002025, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.605955', '2025-11-30 14:38:16.605955');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '606', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 9.519525140917414, "y": -0.04784429373155839, "z": -0.3778819624791519, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:18.602312', '2025-11-30 14:38:18.607715');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '-31', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -31.76697114343797, "y": -134.2225447637332, "z": 97.1153559867045, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:19.747146', '2025-11-30 14:38:19.747146');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '-32', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 39.08186824247709, "y": -103.6678432888542, "z": -87.52633660790015, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:20.013371', '2025-11-30 14:38:20.013371');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '136108', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -37.10418664205082, "y": -23.50429488440583, "z": 23.55814462434406, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:44.959025', '2025-11-30 14:39:44.959025');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '-168', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -0.1642105855803329, "y": -1.459665347221563, "z": -0.02656401865569663, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.994619', '2025-11-30 14:37:50.994619');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '301', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 0.7572010756451402, "y": 0.6440545638480639, "z": 0.00002404383940832648, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.067975', '2025-11-30 14:39:45.067975');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '699', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 9.528995198303027, "y": -0.07068283055517267, "z": -0.3780764116733941, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.432004', '2025-11-30 14:39:45.432004');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '-168', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": -0.1317004687843831, "y": -1.460109476479227, "z": -0.02736694493525512, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.505705', '2025-11-29 06:24:18.505705');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '499', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": -0.5578484180812756, "y": -1.397827452694197, "z": -0.0156130693670966, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.916747', '2025-11-29 06:25:29.919995');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '499', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": -1.240751040505504, "y": -0.9772835217921132, "z": 0.009946030531350715, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.958273', '2025-11-29 06:25:29.962017');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '299', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": -0.7170580571218492, "y": 0.04712549332856857, "z": 0.04202154623434014, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:30.053781', '2025-11-29 06:25:30.0565');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '299', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 0.1183304657769062, "y": 0.710421803319912, "z": 0.002932263267224765, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.081016', '2025-11-29 06:25:30.083876');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '599', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": -0.8352460898575598, "y": 5.101722711690663, "z": -0.002504947855405989, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.185529', '2025-11-29 06:29:51.188625');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '10', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.285874', '2025-11-29 06:29:51.288203');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '136472', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": -46.00609548838381, "y": -8.804374866609262, "z": 24.17902886339605, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.629908', '2025-11-29 06:30:40.62422');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '799', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 10.27171501174199, "y": 16.58732751670823, "z": -0.07158451384296012, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.731974', '2025-11-29 06:30:40.726356');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '2000001', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 2.89229159706596, "y": 0.2398776083569915, "z": -0.5252399298940998, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.203013', '2025-11-29 06:31:51.845312');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '-98', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 19.65945748290849, "y": -59.47992494069477, "z": 2.18047651081444, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.355565', '2025-11-29 06:32:22.351609');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '599', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": -0.857862886984839, "y": 5.099074278653281, "z": -0.001987946022993616, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.912745', '2025-11-29 06:33:14.915327');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '10', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:15.006931', '2025-11-29 06:33:15.009141');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '301', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 0.9874332515620143, "y": -0.2050978084645038, "z": 0.0001615284923215837, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.987883', '2025-11-29 06:34:07.991963');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '-32', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 38.95562001327244, "y": -103.3872967089707, "z": -87.18629823651503, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.124969', '2025-11-29 06:34:08.127027');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '2000001', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 2.883523491936086, "y": 0.3069879116188604, "z": -0.5215003614311507, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.650485', '2025-11-29 06:43:51.726311');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '136472', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -46.0046786798729, "y": -8.821512849865266, "z": 24.17648391131717, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.770195', '2025-11-29 06:44:22.766737');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '-96', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -0.0466097283449537, "y": 0.00962540971920703, "z": 0.002822377457071301, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.826105', '2025-11-29 06:44:22.822514');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '299', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -0.1835192913346566, "y": 0.6948261861749803, "z": 0.02013475796226327, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.875532', '2025-11-29 06:44:22.8722');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '2000001', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 2.767327882047898, "y": 0.797459851240199, "z": -0.4845683439069238, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:12.145469', '2025-11-30 14:38:12.145469');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '136108', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -37.10556281345329, "y": -23.50253946783381, "z": 23.55827582693042, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.04223', '2025-11-30 14:38:19.04223');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '299', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -0.555553787625912, "y": -0.4622182320475151, "z": 0.02570519682741283, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.888672', '2025-11-30 14:38:57.888672');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '136199', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 85.24371473519616, "y": 39.41030419223056, "z": -17.55781413466873, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:44.980157', '2025-11-30 14:39:44.980157');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '199', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 0.3085918694283169, "y": -0.2664964521202706, "z": -0.05008259983037263, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.093113', '2025-11-30 14:39:45.093113');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '999', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 19.05940587376748, "y": -29.71455979421305, "z": -2.332001761495742, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.54927', '2025-11-30 14:39:45.54927');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '-98', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 19.90214957121805, "y": -60.05139074612871, "z": 2.20297213066238, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.962331', '2025-11-30 14:37:50.962331');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '-32', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 39.07701266959954, "y": -103.6570530356788, "z": -87.51325866415986, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.869416', '2025-11-30 14:39:45.869416');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '699', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 9.520759945400314, "y": 0.07545580131913891, "z": -0.3802951867929573, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.522364', '2025-11-29 06:24:18.522364');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '399', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 0.9388656927246593, "y": -0.370302400380203, "z": 0.00001996833192624092, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.860819', '2025-11-29 06:25:29.868821');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '-96', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 0.5982846828641838, "y": -0.4183256533001896, "z": -0.04026656879859918, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.990587', '2025-11-29 06:25:29.992847');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '-96', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 0.479783437401424, "y": -0.1230776184684909, "z": -0.02938138026633446, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.022644', '2025-11-29 06:25:30.025418');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '136472', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": -46.0062721687203, "y": -8.802232591317479, "z": 24.17934676220741, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.195486', '2025-11-29 06:29:51.19798');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '799', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 10.2750951178676, "y": 16.5854388340633, "z": -0.07163543277740021, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.293885', '2025-11-29 06:29:51.29627');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '2000001', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 2.893410730075448, "y": 0.2302784350301396, "z": -0.5257499460814931, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.52462', '2025-11-29 06:30:09.240688');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '-98', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 19.656384542137, "y": -59.47268879931739, "z": 2.18019165060358, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.676355', '2025-11-29 06:30:40.670757');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '899', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 29.87930475887485, "y": 0.1589350617623648, "z": -0.691816102293502, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.346525', '2025-11-29 06:32:22.342221');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '2000001', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 2.891139102161951, "y": 0.2494740088829498, "z": -0.5247238549294105, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.835981', '2025-11-29 06:32:45.122833');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '-98', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 19.66253040039457, "y": -59.48716102223644, "z": 2.180761368368814, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.965629', '2025-11-29 06:33:14.967569');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '136472', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": -46.00556488691866, "y": -8.810801656278615, "z": 24.17807487335572, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.927174', '2025-11-29 06:34:07.932116');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '799', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 10.26157247485227, "y": 16.59298943709701, "z": -0.07143196918077677, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.090767', '2025-11-29 06:34:08.092584');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '399', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 0.9980452559600576, "y": -0.1218835828983889, "z": -0.000000667363768114181, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.685072', '2025-11-29 06:44:22.684884');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '499', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -1.092795652394507, "y": -1.115458209243473, "z": 0.003422249286598767, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.779007', '2025-11-29 06:44:22.77557');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '-168', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -1.092790601374574, "y": -1.115479918908465, "z": 0.00342640823727967, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.833819', '2025-11-29 06:44:22.830411');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '-31', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -31.70829292255596, "y": -133.8373598098307, "z": 96.83701186385011, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.883628', '2025-11-29 06:44:22.879817');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '136108', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -37.09730442298533, "y": -23.51307128107321, "z": 23.55748776565848, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:12.19196', '2025-11-30 14:38:12.19196');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '799', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 10.08518345871069, "y": 16.69016470276091, "z": -0.06878378292900937, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.986655', '2025-11-30 14:38:19.986655');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '136199', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 85.24228453534545, "y": 39.41288081449324, "z": -17.55500293143651, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:44.878421', '2025-11-30 14:39:44.878421');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '503', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -1.240918965899314, "y": 5.046126873724218, "z": 0.007046133672502143, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:44.991476', '2025-11-30 14:39:44.991476');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '-61', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -1.236193304979117, "y": 5.027207454569532, "z": -0.02854865756253996, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.005443', '2025-11-30 14:39:45.005443');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '199', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 0.3406686941014272, "y": -0.1938192312809406, "z": -0.04708532068922267, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.024864', '2025-11-30 14:39:45.024864');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '899', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 29.8764973192852, "y": 0.3263287564552661, "z": -0.6951994586065299, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.158349', '2025-11-30 14:39:45.158349');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '999', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 19.06755414697987, "y": -29.71158919121384, "z": -2.334695097714185, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.292627', '2025-11-30 14:39:45.292627');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '10', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.61105', '2025-11-30 14:39:45.61105');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '-32', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 39.08429602561453, "y": -103.6732384148341, "z": -87.53287556612864, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.654549', '2025-11-30 14:39:45.654549');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '599', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": -1.457829764998401, "y": 4.991552556215755, "z": 0.01188199772896078, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.595122', '2025-11-29 14:45:36.595122');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '499', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": -1.231520312218509, "y": -0.9870422087636371, "z": 0.009515169259572331, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.697862', '2025-11-29 06:08:32.69998');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '899', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 29.87968976052073, "y": 0.1305055624140842, "z": -0.6912401878063144, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.723023', '2025-11-29 06:08:32.724926');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '299', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 0.09826575885952613, "y": 0.7133616959415123, "z": 0.004130388458352508, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.791538', '2025-11-29 06:08:32.793426');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '-98', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 19.90829193925861, "y": -60.06585338062212, "z": 2.203541427291952, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.377963', '2025-11-29 09:29:37.377963');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-29T06:00:00+00:00:2025-11-29T06:00:00+00:00:1h', '799', '2025-11-29 06:00:00', '2025-11-29 06:00:00', '1h', '{"positions": [{"x": 9.992314481301163, "y": 16.7403570675702, "z": -0.06739326153533555, "time": "2025-11-29T06:00:00+00:00"}]}', '2025-12-06 06:24:18.539598', '2025-11-29 06:24:18.539598');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '301', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 0.8003702090233066, "y": 0.588284458315908, "z": -0.0001763299731465839, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.945187', '2025-11-29 06:25:29.94912');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '301', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 0.938244966618006, "y": -0.3728987345064721, "z": -0.0002263462829540439, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.989189', '2025-11-29 06:25:29.991559');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '-32', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 39.07458487984649, "y": -103.6516579085222, "z": -87.506719678648, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:30.07293', '2025-11-29 06:25:30.075406');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '499', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": -1.183986348231805, "y": -1.034703442928929, "z": 0.007350741605750244, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.206221', '2025-11-29 06:29:51.208419');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '299', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": -0.002906197437707557, "y": 0.7195466301003252, "z": 0.01005299097621172, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.302594', '2025-11-29 06:29:51.304661');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '399', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 0.9743421737538758, "y": -0.2563996864953597, "z": 0.000009990148329899423, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.555803', '2025-11-29 06:30:40.552909');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '-96', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 0.3391702297111491, "y": -0.01579688687660819, "z": -0.01979450395244338, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.685686', '2025-11-29 06:30:40.681249');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '399', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 0.9782998476982487, "y": -0.2397974919832345, "z": 0.000008299438024532462, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.224006', '2025-11-29 06:32:22.222322');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '-96', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 0.3110724691383802, "y": 0.0003653671097881165, "z": -0.01795111402707859, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.365128', '2025-11-29 06:32:22.360785');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '899', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 29.87926081216571, "y": 0.1620939879378938, "z": -0.6918803156433733, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.956278', '2025-11-29 06:33:14.95859');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '136108', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": -37.17699902299444, "y": -23.41119552874273, "z": 23.5650206652053, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.861455', '2025-11-29 06:34:07.86762');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '999', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 18.92314933190146, "y": -29.76419472558542, "z": -2.28719448553553, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.060742', '2025-11-29 06:34:08.063315');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '136199', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 85.2651383069981, "y": 39.3716285862322, "z": -17.59997576596485, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.704821', '2025-11-29 06:44:22.703357');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '199', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -0.3876051315902385, "y": -0.007369266182918686, "z": 0.03494884583564621, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.787884', '2025-11-29 06:44:22.784446');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '999', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 18.93678760776638, "y": -29.75924493045383, "z": -2.291662289081993, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.842566', '2025-11-29 06:44:22.839047');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '-32', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 38.96775962186489, "y": -103.4142723041118, "z": -87.21899530505402, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.891092', '2025-11-29 06:44:22.887266');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '50326340', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 45.11469004787646, "y": 7.220222430768674, "z": 19.03374568739866, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:13.609989', '2025-11-30 14:38:12.158598');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '136472', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -45.99641503435005, "y": -8.920048115311722, "z": 24.1617896807349, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.030948', '2025-11-30 14:39:45.030948');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '899', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 29.87655864327941, "y": 0.3231703362893384, "z": -0.6951360032355365, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.209318', '2025-11-30 14:39:45.209318');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '-96', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 0.605336979354412, "y": -0.4063995766758459, "z": -0.04050947346363617, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.394079', '2025-11-30 14:39:45.394079');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '10', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.613027', '2025-11-30 14:39:45.613027');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:null:null:1d', '599', NULL, NULL, '1d', '{"positions": [{"x": -1.462299440771291, "y": 4.990476392583655, "z": 0.0119864772560872, "time": "2025-11-30T04:37:13.524549"}]}', '2025-12-07 04:37:37.916805', '2025-11-30 04:37:37.916805');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '136199', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 85.27179189629832, "y": 39.35958594041162, "z": -17.61309026222056, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.640443', '2025-11-29 06:08:32.643086');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '899', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 29.87960593463264, "y": 0.1368231313515241, "z": -0.6913679037851467, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.725279', '2025-11-29 06:08:32.727309');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '-168', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": -1.249876119089288, "y": -0.9674327409964449, "z": 0.01037912944050468, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.748265', '2025-11-29 06:08:32.750128');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '2000001', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 2.900310685688841, "y": 0.1630159683541775, "z": -0.5291501462543409, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:29.823807', '2025-11-29 06:24:57.741212');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '-98', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 19.81614759100508, "y": -59.84888873133306, "z": 2.195000874103405, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:29.977404', '2025-11-29 06:25:29.981154');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-10-30T00:00:00+00:00:2025-10-30T00:00:00+00:00:1d', '999', '2025-10-30 00:00:00', '2025-10-30 00:00:00', '1d', '{"positions": [{"x": 19.0566754807254, "y": -29.71555965565564, "z": -2.331095549406324, "time": "2025-10-30T00:00:00+00:00"}]}', '2025-12-06 06:25:30.011275', '2025-11-29 06:25:30.014387');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-01T00:00:00+00:00:2025-09-01T00:00:00+00:00:1d', '999', '2025-09-01 00:00:00', '2025-09-01 00:00:00', '1d', '{"positions": [{"x": 18.89584107425692, "y": -29.77407350372244, "z": -2.278208235667181, "time": "2025-09-01T00:00:00+00:00"}]}', '2025-12-06 06:25:30.042617', '2025-11-29 06:25:30.045056');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '199', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": -0.2564998900611588, "y": 0.2167917887941727, "z": 0.04124284519703268, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.216153', '2025-11-29 06:29:51.218513');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '-31', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": -31.69751443341407, "y": -133.7666123291561, "z": 96.78588588486116, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.314544', '2025-11-29 06:29:51.317089');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '499', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": -1.174207096763541, "y": -1.044003001477954, "z": 0.006916051172376749, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.639499', '2025-11-29 06:30:40.633582');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '299', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": -0.02319801300169901, "y": 0.7190722265479652, "z": 0.01121731280299471, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.741311', '2025-11-29 06:30:40.736651');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '599', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": -0.8503257109469325, "y": 5.099968181000674, "z": -0.002160277146718534, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.290464', '2025-11-29 06:32:22.287438');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '10', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.401937', '2025-11-29 06:32:22.397584');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '301', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 0.9843012223034774, "y": -0.2223961329025803, "z": 0.0001173852245369209, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.948068', '2025-11-29 06:33:14.950038');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '-32', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 38.95319208045523, "y": -103.3819015919167, "z": -87.1797587954024, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:15.039472', '2025-11-29 06:33:15.041403');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '-61', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": -0.8579064973634648, "y": 5.087196713304266, "z": -0.0202963249738127, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.884064', '2025-11-29 06:34:07.889603');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '699', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 9.538794800777268, "y": -0.3656699829945592, "z": -0.373330232503322, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.070824', '2025-11-29 06:34:08.072875');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '136108', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -37.17014073765833, "y": -23.41998385778222, "z": 23.56437874720832, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.722682', '2025-11-29 06:44:22.721761');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '301', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 0.9974746134866282, "y": -0.1194358614971651, "z": 0.000209579046608678, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.797524', '2025-11-29 06:44:22.794303');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '699', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 9.538260895814483, "y": -0.3378526764329682, "z": -0.3737922084052724, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.850429', '2025-11-29 06:44:22.84679');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '199', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 0.3482281737646162, "y": -0.1676293526604613, "z": -0.04563837488339036, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.712661', '2025-11-30 14:38:16.712661');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '601', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 9.52943389130084, "y": -0.0602095310502224, "z": -0.3779599325828323, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.743166', '2025-11-30 14:38:16.743166');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '601', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 9.528989488829229, "y": -0.07730806819554278, "z": -0.3773927341770497, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.888242', '2025-11-30 14:38:19.888242');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '10', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.963181', '2025-11-30 14:38:19.963181');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '-98', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 19.81921937759448, "y": -59.85612175628471, "z": 2.195285597079744, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.284759', '2025-11-30 14:39:45.284759');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '799', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 10.09198766664577, "y": 16.68646103290874, "z": -0.06888590685335698, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.648288', '2025-11-30 14:39:45.648288');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '-96', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 0.4716609395711898, "y": -0.115337196842895, "z": -0.0287962196304038, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.386307', '2025-11-29 09:29:37.386307');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '2000001', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 2.899425029180251, "y": 0.1726314239299511, "z": -0.5286826298159829, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:07:52.430612', '2025-11-29 06:07:18.1874');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '599', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": -0.7975173576645753, "y": 5.105917808967328, "z": -0.003366546293589304, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.678289', '2025-11-29 06:08:32.68035');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '199', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": -0.04991668189882763, "y": 0.3058971226904206, "z": 0.02957694093950516, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.704864', '2025-11-29 06:08:32.707018');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '10', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.775552', '2025-11-29 06:08:32.77732');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '-31', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": -31.68913103049212, "y": -133.711586702727, "z": 96.74612090159243, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.796597', '2025-11-29 06:08:32.798686');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '2000001', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 2.898506027079243, "y": 0.1822448880517064, "z": -0.5282090329311093, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.308201', '2025-11-29 06:26:10.596638');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '-98', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 19.64101948660462, "y": -59.43650719521557, "z": 2.178767309705862, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.579857', '2025-11-29 06:26:44.583297');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '-61', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": -0.8016506928779524, "y": 5.090718457984374, "z": -0.03481388927337217, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.371999', '2025-11-29 06:27:23.375865');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '699', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 9.539412081131095, "y": -0.4046142456164429, "z": -0.3726762302904518, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.504501', '2025-11-29 06:27:23.507492');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '199', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": -0.2049473203998287, "y": 0.2538474467331446, "z": 0.03954272160242821, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.831855', '2025-11-29 06:28:09.835894');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '-31', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": -31.69511918614798, "y": -133.7508907040264, "z": 96.77452449078797, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.985021', '2025-11-29 06:28:09.987908');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '599', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": -0.8277035189196126, "y": 5.102583694349472, "z": -0.002677272198442678, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.517803', '2025-11-29 06:28:58.523025');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '10', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.633522', '2025-11-29 06:28:58.636631');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '301', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 0.9723489394234733, "y": -0.2740067471796597, "z": -0.0000425670042909544, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.224861', '2025-11-29 06:29:51.22701');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '-32', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 38.9459082588879, "y": -103.3657162451454, "z": -87.16014041723854, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.327396', '2025-11-29 06:29:51.330474');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '136108', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": -37.18111292151929, "y": -23.40592200003397, "z": 23.56540513961591, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.598595', '2025-11-29 06:30:40.595303');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '999', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": 18.91494749858419, "y": -29.76716102980302, "z": -2.284481258688303, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.704995', '2025-11-29 06:30:40.699625');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '199', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": -0.3002560238850419, "y": 0.1731092587908668, "z": 0.04168631664637198, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.327268', '2025-11-29 06:32:22.323093');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '-31', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": -31.69990967122091, "y": -133.7823339680714, "z": 96.79724725514517, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.430218', '2025-11-29 06:32:22.425789');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '136108', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": -37.17837041179678, "y": -23.4094377300517, "z": 23.56514887970697, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.895705', '2025-11-29 06:33:14.897756');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '999', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 18.92042173762177, "y": -29.76517478683956, "z": -2.286286679034808, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.991364', '2025-11-29 06:33:14.993449');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '136199', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": 85.26751523162993, "y": 39.36732820675166, "z": -17.60465964851807, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.835741', '2025-11-29 06:34:07.842503');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '-168', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": -1.144315918108822, "y": -1.071433728651388, "z": 0.005607066166001354, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.049559', '2025-11-29 06:34:08.05251');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '-61', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -0.9014161689653458, "y": 5.094052643738495, "z": -0.01057970184590417, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.739222', '2025-11-29 06:44:22.73833');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '899', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 29.87898764842011, "y": 0.1810460652213247, "z": -0.692264415899089, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.807223', '2025-11-29 06:44:22.804424');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '10', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.858184', '2025-11-29 06:44:22.854499');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '-168', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": -0.1353141821132807, "y": -1.460121239312921, "z": -0.02728099328550752, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.393483', '2025-11-29 09:29:37.393483');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:null:null:1d', '499', NULL, NULL, '1d', '{"positions": [{"x": -0.1180756001355313, "y": -1.460115670210371, "z": -0.02770240640414878, "time": "2025-11-30T04:37:16.452438"}]}', '2025-12-07 04:37:37.943396', '2025-11-30 04:37:37.943396');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '136472', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": -45.99117905826179, "y": -8.981267921669652, "z": 24.15260690958596, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.605142', '2025-11-29 14:45:36.605142');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '50326340', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 1.658429755410229, "y": -1.951567732082771, "z": 1.180352043722802, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.809945', '2025-12-01 08:06:36.809945');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '399', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 0.9327034963393752, "y": -0.386190172220432, "z": 0.0000208813249847639, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.622567', '2025-11-29 06:08:32.627526');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '-61', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": -0.7711142618593368, "y": 5.094597456727537, "z": -0.03846276995809054, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.663641', '2025-11-29 06:08:32.66628');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '-96', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 0.4642236260388361, "y": -0.1085752304616756, "z": -0.02828447070756721, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.742314', '2025-11-29 06:08:32.744174');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '699', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 9.539689456833441, "y": -0.4268661295224494, "z": -0.3722989333287332, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.763818', '2025-11-29 06:08:32.7658');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '399', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 0.9503767237680754, "y": -0.3382161076553375, "z": 0.00001770725601869719, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.354959', '2025-11-29 06:26:44.36465');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '-96', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 0.4474012266147911, "y": -0.0937781372338133, "z": -0.02711064137846865, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.592665', '2025-11-29 06:26:44.596599');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '136472', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": -46.00680165014957, "y": -8.795805729679868, "z": 24.18030016503465, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.407767', '2025-11-29 06:27:23.414481');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '799', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 10.28523292662678, "y": 16.57976879161427, "z": -0.07178790213300902, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.521835', '2025-11-29 06:27:23.524768');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '-61', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": -0.8094348867440749, "y": 5.089908611089661, "z": -0.03344729341917717, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.767088', '2025-11-29 06:28:09.771144');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '699', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 9.539334081065494, "y": -0.3990506354256176, "z": -0.3727703473202032, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.942148', '2025-11-29 06:28:09.945608');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '899', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 29.87943639109563, "y": 0.1494584043022461, "z": -0.6916247126339824, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.577745', '2025-11-29 06:28:58.581073');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-07T00:00:00+00:00:2025-09-07T00:00:00+00:00:1d', '899', '2025-09-07 00:00:00', '2025-09-07 00:00:00', '1d', '{"positions": [{"x": 29.87939258244997, "y": 0.1526169507803222, "z": -0.691688617773014, "time": "2025-09-07T00:00:00+00:00"}]}', '2025-12-06 06:29:51.2348', '2025-11-29 06:29:51.236953');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '199', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": -0.2793956365938404, "y": 0.1956642742945823, "z": 0.04161625179222321, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.64757', '2025-11-29 06:30:40.641879');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-08T00:00:00+00:00:2025-09-08T00:00:00+00:00:1d', '-31', '2025-09-08 00:00:00', '2025-09-08 00:00:00', '1d', '{"positions": [{"x": -31.69871205353184, "y": -133.7744731469038, "z": 96.79156657297686, "time": "2025-09-08T00:00:00+00:00"}]}', '2025-12-06 06:30:40.754481', '2025-11-29 06:30:40.748579');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '136108', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": -37.17974171128743, "y": -23.40767988713796, "z": 23.56527703784362, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.261655', '2025-11-29 06:32:22.258647');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-09T00:00:00+00:00:2025-09-09T00:00:00+00:00:1d', '999', '2025-09-09 00:00:00', '2025-09-09 00:00:00', '1d', '{"positions": [{"x": 18.91768547505692, "y": -29.76616406736095, "z": -2.285379050327736, "time": "2025-09-09T00:00:00+00:00"}]}', '2025-12-06 06:32:22.383697', '2025-11-29 06:32:22.379355');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '136199', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": 85.26799053129831, "y": 39.36646805566939, "z": -17.6055964071805, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.884859', '2025-11-29 06:33:14.888049');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-10T00:00:00+00:00:2025-09-10T00:00:00+00:00:1d', '-168', '2025-09-10 00:00:00', '2025-09-10 00:00:00', '1d', '{"positions": [{"x": -1.154360514235089, "y": -1.062372879084523, "z": 0.006042560092936763, "time": "2025-09-10T00:00:00+00:00"}]}', '2025-12-06 06:33:14.983141', '2025-11-29 06:33:14.985072');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '499', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": -1.144334090270179, "y": -1.071420298480491, "z": 0.005608942430392434, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:07.944206', '2025-11-29 06:34:07.953148');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-11T00:00:00+00:00:2025-09-11T00:00:00+00:00:1d', '299', '2025-09-11 00:00:00', '2025-09-11 00:00:00', '1d', '{"positions": [{"x": -0.08389845927395538, "y": 0.7142250722456993, "z": 0.01465314063566285, "time": "2025-09-11T00:00:00+00:00"}]}', '2025-12-06 06:34:08.100522', '2025-11-29 06:34:08.102752');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '599', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": -0.9030471259467567, "y": 5.093484298403228, "z": -0.0009537728994183333, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.755057', '2025-11-29 06:44:22.753256');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '-98', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 19.68096741947361, "y": -59.53057625448091, "z": 2.182470457949974, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.817025', '2025-11-29 06:44:22.813676');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-16T00:00:00+00:00:2025-09-16T00:00:00+00:00:1d', '799', '2025-09-16 00:00:00', '2025-09-16 00:00:00', '1d', '{"positions": [{"x": 10.24465942536803, "y": 16.6024125880995, "z": -0.07117796947783764, "time": "2025-09-16T00:00:00+00:00"}]}', '2025-12-06 06:44:22.866854', '2025-11-29 06:44:22.863215');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '50326340', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 45.12887482772495, "y": 7.222336206278388, "z": 19.03995317434039, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.4532', '2025-11-30 14:38:12.156829');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '-168', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -0.5443089159369932, "y": -1.401768052654098, "z": -0.01601542669333535, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.485951', '2025-11-30 14:39:45.485951');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '999', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 19.13827138935079, "y": -29.68558136296585, "z": -2.3579789451971, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.40037', '2025-11-29 09:29:37.40037');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '399', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 0.9447572934654603, "y": -0.3543095131958526, "z": 0.00001891021074998625, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.620001', '2025-11-29 06:08:32.624963');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '301', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 0.9446989368102927, "y": -0.3569554608852353, "z": -0.0002211181108092752, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.716687', '2025-11-29 06:08:32.718545');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '-96', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 0.4941798540598336, "y": -0.1372820325865049, "z": -0.03040705098893136, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.74018', '2025-11-29 06:08:32.742097');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '-32', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 38.93376847538668, "y": -103.3387406833608, "z": -87.12744293743621, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.808662', '2025-11-29 06:08:32.810254');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '136199', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 85.27131682667739, "y": 39.36044629319825, "z": -17.61215355118595, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.389882', '2025-11-29 06:26:44.400147');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '-168', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": -1.222177712107748, "y": -0.9967145373267364, "z": 0.009082809271844116, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.605589', '2025-11-29 06:26:44.608468');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '301', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 0.9567713292261154, "y": -0.3243908673502552, "z": -0.0001769846756231631, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.452371', '2025-11-29 06:27:23.455156');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '-32', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 38.93862440135464, "y": -103.3495309055064, "z": -87.14052195680243, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.548952', '2025-11-29 06:27:23.551444');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '136472', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": -46.00662524953349, "y": -8.79794802282218, "z": 24.17998241302609, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.801753', '2025-11-29 06:28:09.804975');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '799', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 10.2818540948361, "y": 16.58165948133219, "z": -0.07173702446593008, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.966152', '2025-11-29 06:28:09.968559');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '-61', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": -0.8172873441705286, "y": 5.089176076851116, "z": -0.03188093208010909, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.499685', '2025-11-29 06:28:58.505134');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '699', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 9.539252537549954, "y": -0.3934869676192941, "z": -0.3728642732356401, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.624227', '2025-11-29 06:28:58.627429');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '2000001', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 2.888734022511086, "y": 0.2686580438438269, "z": -0.5236735420463442, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.501525', '2025-11-29 06:34:25.689539');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '-98', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 19.6686761657472, "y": -59.50163300577656, "z": 2.18133107551052, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.729132', '2025-11-29 06:34:56.732848');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '899', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 29.87912528402003, "y": 0.1715692785875592, "z": -0.6920727689685413, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.892709', '2025-11-29 06:35:48.898017');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '90000030', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -19.5295624167546, "y": 27.41799436424227, "z": -9.893831144104649, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.484117', '2025-11-30 14:38:16.490027');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '136472', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -45.99586913602639, "y": -8.926473809077223, "z": 24.16082776711872, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.663882', '2025-11-30 14:38:16.663882');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '606', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 9.519753324917241, "y": -0.04502730160408008, "z": -0.3766004164307239, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:18.558495', '2025-11-30 14:38:18.567955');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '399', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 0.7547708067485719, "y": 0.6438565553926032, "z": -0.00004324305265293866, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:44.815768', '2025-11-30 14:39:44.815768');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '2000001', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 2.788189960328385, "y": 0.7325729211491026, "z": -0.4904657443180717, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:44.952258', '2025-11-30 14:39:44.952258');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '503', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -1.253208806529835, "y": 5.041052377211863, "z": 0.007009648055063164, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:44.979008', '2025-11-30 14:39:44.979008');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '136472', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -45.99659681038491, "y": -8.917906202392716, "z": 24.16211022084558, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.057455', '2025-11-30 14:39:45.057455');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '-168', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -0.5033845518929834, "y": -1.41279849491985, "z": -0.01724748406727714, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.20993', '2025-11-30 14:39:45.20993');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '-96', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 0.6020389602260114, "y": -0.4125189280000401, "z": -0.04040333106637915, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.405374', '2025-11-30 14:39:45.405374');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '-31', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -31.76577372101253, "y": -134.2146837848349, "z": 97.10967563640207, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.628193', '2025-11-30 14:39:45.628193');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '699', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 9.520849068476345, "y": 0.07406421244412645, "z": -0.3802745641424372, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.407496', '2025-11-29 09:29:37.407496');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '299', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -0.7182142988784098, "y": 0.02683738161367257, "z": 0.04180953454617518, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.844367', '2025-11-30 14:39:45.844367');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '499', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": -0.1268934264214341, "y": -1.460136098285481, "z": -0.02748660602884706, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.617769', '2025-11-29 14:45:36.617769');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '199', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": -0.1153548207707887, "y": 0.2930408204468929, "z": 0.03452827668793014, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.707423', '2025-11-29 06:08:32.70945');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '-98', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 19.63180016902971, "y": -59.41479751516513, "z": 2.1779126733457, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.731905', '2025-11-29 06:08:32.733632');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '-31', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": -31.69152629876382, "y": -133.7273082926097, "z": 96.7574823550892, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.799803', '2025-11-29 06:08:32.801404');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '136108', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": -37.18796763594328, "y": -23.39713190279442, "z": 23.56604480305887, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.421193', '2025-11-29 06:26:44.431935');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '999', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 18.90131573850043, "y": -29.77208355882824, "z": -2.280001362025712, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.614775', '2025-11-29 06:26:44.617571');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '499', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": -1.212781271790767, "y": -1.006335824326119, "z": 0.008651329003072925, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.424379', '2025-11-29 06:27:23.427416');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '299', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 0.0579186837153266, "y": 0.7175435829876694, "z": 0.006515871230835112, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.5309', '2025-11-29 06:27:23.533683');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '2000001', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 2.896567973471544, "y": 0.201465396219082, "z": -0.5272436095649022, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.669006', '2025-11-29 06:27:38.898565');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '-98', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 19.64716557944997, "y": -59.45098001626639, "z": 2.179337054030941, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.87987', '2025-11-29 06:28:09.88377');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '199', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": -0.2316474375736066, "y": 0.2362631635941949, "z": 0.04055462603101469, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.55695', '2025-11-29 06:28:58.560185');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '-31', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": -31.69631681093029, "y": -133.7587515148549, "z": 96.78020519079804, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.662366', '2025-11-29 06:28:58.665631');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '399', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 0.988478662100814, "y": -0.1895911316212206, "z": 0.000003626763324780932, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.543834', '2025-11-29 06:34:56.551914');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '-96', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 0.2052327210675544, "y": 0.04767655965958208, "z": -0.01119332180471845, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.738042', '2025-11-29 06:34:56.741611');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '301', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 0.9924889211806756, "y": -0.1705924819039374, "z": 0.0002190193459910988, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.877452', '2025-11-29 06:35:48.882455');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '-32', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 38.96047586766691, "y": -103.3980869451224, "z": -87.19937709133328, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:49.04492', '2025-11-29 06:35:49.048831');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '136108', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": -37.17288432023434, "y": -23.41646865916733, "z": 23.564635683506, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.641055', '2025-11-29 06:37:03.645619');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '301', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 0.9944649720297786, "y": -0.1534438525784974, "z": 0.0002290158161279, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.747109', '2025-11-29 06:37:03.753395');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '699', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 9.538483492525907, "y": -0.3489803216397274, "z": -0.3736075251642236, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.845187', '2025-11-29 06:37:03.852898');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '90000030', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -19.52906015535961, "y": 27.41817932927881, "z": -9.893721976181947, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.486633', '2025-11-30 14:38:16.492364');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '606', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 9.523346880508575, "y": -0.03809172493641089, "z": -0.3750213781795687, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.733229', '2025-11-30 14:38:16.739551');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '136472', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -45.9962331632816, "y": -8.922190020748165, "z": 24.16146909174237, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.444668', '2025-11-30 14:38:19.444668');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '-61', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -1.250696915284209, "y": 5.023392097260213, "z": -0.02824022137641725, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:44.972459', '2025-11-30 14:39:44.972459');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '899', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 29.87637383772787, "y": 0.3326446235020907, "z": -0.695327316995738, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.091783', '2025-11-30 14:39:45.091783');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '301', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 0.7901127202798944, "y": 0.6024094827758325, "z": -0.0001307691590605688, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.152963', '2025-11-30 14:39:45.152963');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '699', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 9.52979168351811, "y": -0.08738292940734564, "z": -0.3778177248359096, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.576179', '2025-11-30 14:39:45.576179');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '10', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.415815', '2025-11-29 09:29:37.415815');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '90000030', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -19.51595357013499, "y": 27.42291869761905, "z": -9.89085978793939, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.84287', '2025-12-01 08:06:36.84287');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '136199', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 85.27274194814105, "y": 39.35786515889639, "z": -17.61496366638952, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.640791', '2025-11-29 06:08:32.643557');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '599', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": -0.7824126485554581, "y": 5.107519901628513, "z": -0.00371109427040233, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.675926', '2025-11-29 06:08:32.678153');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '-168', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": -1.231503035512923, "y": -0.9870275284545686, "z": 0.00951549968957276, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.750267', '2025-11-29 06:08:32.751988');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '10', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.772326', '2025-11-29 06:08:32.774351');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '-61', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": -0.7939298417311976, "y": 5.091597767201406, "z": -0.03599173121208062, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.451463', '2025-11-29 06:26:44.457714');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '699', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 9.539486561445509, "y": -0.4101776535564841, "z": -0.3725819983168577, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.624273', '2025-11-29 06:26:44.627101');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '136199', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 85.27084172804393, "y": 39.36130662068834, "z": -17.61121683419045, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.340004', '2025-11-29 06:27:23.344267');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '-168', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": -1.212760595438966, "y": -1.006326677803573, "z": 0.008649615092872761, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.487381', '2025-11-29 06:27:23.490474');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '136108', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": -37.18522601725164, "y": -23.40064807390824, "z": 23.5657891067578, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.747064', '2025-11-29 06:28:09.752463');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '999', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 18.90677468182555, "y": -29.77012257412927, "z": -2.281815548786681, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.926913', '2025-11-29 06:28:09.930873');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '399', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 0.9655876104985865, "y": -0.2893782753640705, "z": 0.00001332752721127411, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.433882', '2025-11-29 06:28:58.445108');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '-96', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 0.3880472471892763, "y": -0.04770321872661297, "z": -0.02305310458083751, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.597289', '2025-11-29 06:28:58.600417');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '136199', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 85.26703990347946, "y": 39.36818833273922, "z": -17.60372288390622, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.571844', '2025-11-29 06:34:56.580811');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '-168', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": -1.134183799632133, "y": -1.080411955818164, "z": 0.005171350434394103, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.747086', '2025-11-29 06:34:56.750551');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '499', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": -1.123978321957238, "y": -1.089288502248016, "z": 0.004735328416655364, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.843905', '2025-11-29 06:35:48.848932');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '299', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": -0.1240587231241359, "y": 0.7081523747210245, "z": 0.01688696101176105, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:49.016953', '2025-11-29 06:35:49.021325');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '599', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": -0.8955210429456473, "y": 5.094443925274508, "z": -0.001126114821285548, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.949039', '2025-11-29 06:40:20.952008');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '-98', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 19.67789464053872, "y": -59.52334053211607, "z": 2.182185616318216, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.01191', '2025-11-29 06:40:21.014483');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '799', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 10.24804292630111, "y": 16.60052927786918, "z": -0.07122886221616949, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.072953', '2025-11-29 06:40:21.075459');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '90004920', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -1.364082056009073, "y": -0.1172722171033455, "z": 0.07947116727364972, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.507433', '2025-11-30 14:38:16.512938');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '136199', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 85.24180774816973, "y": 39.41373964071544, "z": -17.55406585179854, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.57418', '2025-11-30 14:38:16.57418');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '606', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 9.51456247910096, "y": 0.04107797030701694, "z": -0.3791574253179922, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:39:00.046194', '2025-11-30 14:39:00.05114');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '599', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -1.239471577744891, "y": 5.039109717463927, "z": 0.006799075162531602, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.028243', '2025-11-30 14:39:45.028243');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '601', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 9.529192582300778, "y": -0.07176066769467965, "z": -0.3775022200642854, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.042729', '2025-11-30 14:39:45.042729');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '799', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 10.08178083436193, "y": 16.69201548077548, "z": -0.06873288010362158, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.595344', '2025-11-30 14:39:45.595344');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '799', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 9.993167824439624, "y": 16.73989888324331, "z": -0.06740601872829662, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.424275', '2025-11-29 09:29:37.424275');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '-31', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -31.76218142902924, "y": -134.1911008613912, "z": 97.0926345501092, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.858006', '2025-11-30 14:39:45.858006');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:null:null:1d', '301', NULL, NULL, '1d', '{"positions": [{"x": 0.3741210500210676, "y": 0.9136481042786534, "z": 0.000009178255115210835, "time": "2025-11-30T04:37:20.930715"}]}', '2025-12-07 04:37:37.986502', '2025-11-30 04:37:37.986502');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '-61', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": -0.7862685860697213, "y": 5.092540415179919, "z": -0.03698894644959529, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.664434', '2025-11-29 06:08:32.667339');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '499', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": -1.24988858564056, "y": -0.9674514434061345, "z": 0.0103761447978069, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.695743', '2025-11-29 06:08:32.697673');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '699', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 9.53955758205143, "y": -0.415740817297011, "z": -0.3724876777381121, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.766859', '2025-11-29 06:08:32.768621');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '299', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 0.1383014494844127, "y": 0.7069192291062022, "z": 0.001731815479026323, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.788522', '2025-11-29 06:08:32.7904');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '599', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": -0.8050669105682502, "y": 5.105099933574205, "z": -0.003194272333526876, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.474509', '2025-11-29 06:26:44.480109');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '10', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.633894', '2025-11-29 06:26:44.636805');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '2000001', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 2.897553676153696, "y": 0.1918562493081191, "z": -0.5277293585210484, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.291431', '2025-11-29 06:26:53.371743');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '-98', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 19.64409254485328, "y": -59.4437436356386, "z": 2.17905218319515, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.470471', '2025-11-29 06:27:23.47311');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '301', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 0.9623305669412415, "y": -0.3077840201917076, "z": -0.0001396190400667492, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.848798', '2025-11-29 06:28:09.852911');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '-32', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 38.94105235797599, "y": -103.3549260178848, "z": -87.14706145275953, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.994489', '2025-11-29 06:28:09.996689');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '2000001', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 2.89554891640115, "y": 0.2110722172348709, "z": -0.5267517890997293, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.407135', '2025-11-29 06:28:28.226822');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '-98', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 19.65023859047827, "y": -59.45821633709398, "z": 2.17962192221155, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.587699', '2025-11-29 06:28:58.590712');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '136108', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": -37.17562754483076, "y": -23.41295328317935, "z": 23.56489239433814, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.600781', '2025-11-29 06:34:56.606936');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '999', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 18.92586891969256, "y": -29.76321703269186, "z": -2.288092637759452, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.755338', '2025-11-29 06:34:56.759133');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '2000001', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 2.887481436451416, "y": 0.2782454542570946, "z": -0.5231393109649752, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.724076', '2025-11-29 06:35:17.735285');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '-98', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 19.67174901372438, "y": -59.50886890775898, "z": 2.181615925099458, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.910358', '2025-11-29 06:35:48.9154');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '136199', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 85.26608916192477, "y": 39.3699085095303, "z": -17.60184933683443, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.618049', '2025-11-29 06:37:03.623757');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '199', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": -0.3730046125776627, "y": 0.04636180456309563, "z": 0.03800071507406263, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.731403', '2025-11-29 06:37:03.735799');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '999', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 18.93131501608816, "y": -29.76123807946229, "z": -2.2898647361031, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.830468', '2025-11-29 06:37:03.834206');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '-32', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 38.96290378934034, "y": -103.4034820641727, "z": -87.20591650504038, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.930836', '2025-11-29 06:37:03.936319');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '-61', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": -0.895697313334127, "y": 5.0947296024513, "z": -0.0007509259861238326, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.937505', '2025-11-29 06:40:20.939521');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '899', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 29.87903358271613, "y": 0.177887269469815, "z": -0.6922002042785563, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.000938', '2025-11-29 06:40:21.003625');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '10', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.063414', '2025-11-29 06:40:21.065916');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '2000001', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 2.773453130156256, "y": 0.7789663969506655, "z": -0.4862822060348017, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.528896', '2025-11-30 14:38:16.528896');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '-168', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -0.5307138077775754, "y": -1.405568009748751, "z": -0.01642737790268903, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.462822', '2025-11-30 14:39:45.462822');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '299', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": -0.5152656481194592, "y": -0.5074691170168149, "z": 0.02275890242065188, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.432601', '2025-11-29 09:29:37.432601');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '301', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 0.3839871696190298, "y": 0.9093224298801798, "z": -0.00002113069873588745, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.635616', '2025-11-29 14:45:36.635616');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '2000001', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 2.901163000137047, "y": 0.1533986326673427, "z": -0.5296115793825031, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.590254', '2025-11-29 06:07:18.167865');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '136108', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": -37.19207939787018, "y": -23.39185731609523, "z": 23.56642792488716, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.652159', '2025-11-29 06:08:32.6544');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '-98', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 19.6379464046149, "y": -59.42927069499878, "z": 2.17848243356552, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.733842', '2025-11-29 06:08:32.735443');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '999', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 18.89311473987391, "y": -29.7750635288281, "z": -2.27732367426119, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.756145', '2025-11-29 06:08:32.757912');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '136472', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": -46.00697795767384, "y": -8.793663430645193, "z": 24.18061786811123, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.499193', '2025-11-29 06:26:44.502684');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '799', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 10.28861136837936, "y": 16.57787742955537, "z": -0.0718387369343736, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.643368', '2025-11-29 06:26:44.646034');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '899', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 29.87952204673808, "y": 0.1431414169936348, "z": -0.6914959437542892, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.461267', '2025-11-29 06:27:23.464182');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '899', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 29.87947960105436, "y": 0.1463000361360246, "z": -0.6915604043298716, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.865097', '2025-11-29 06:28:09.868553');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '136199', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 85.26989144406932, "y": 39.36302719985952, "z": -17.60934338232953, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.463177', '2025-11-29 06:28:58.469044');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '-168', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": -1.193653156713063, "y": -1.025322478051611, "z": 0.007781929022651518, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.606031', '2025-11-29 06:28:58.609086');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '-61', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": -0.8664435074041655, "y": 5.087363934867451, "z": -0.01691380725733202, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.623009', '2025-11-29 06:34:56.630591');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '699', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 9.538693954353592, "y": -0.3601068935146928, "z": -0.3734227480704662, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.764714', '2025-11-29 06:34:56.768222');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '-61', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": -0.8752403204880249, "y": 5.087920991177842, "z": -0.01291887031852158, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.795668', '2025-11-29 06:35:48.800397');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '699', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 9.538590204670154, "y": -0.3545437148740839, "z": -0.3735151590120135, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.972836', '2025-11-29 06:35:48.9772');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '136108', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": -37.17151257371448, "y": -23.41822628066033, "z": 23.56450724354048, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.928379', '2025-11-29 06:40:20.930914');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '301', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 0.9961156949732016, "y": -0.1363892336513048, "z": 0.000225717555833669, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:20.990773', '2025-11-29 06:40:20.99319');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-09-15T00:00:00+00:00:2025-09-15T00:00:00+00:00:1d', '699', '2025-09-15 00:00:00', '2025-09-15 00:00:00', '1d', '{"positions": [{"x": 9.5383737445023, "y": -0.3434166690072894, "z": -0.3736998631173949, "time": "2025-09-15T00:00:00+00:00"}]}', '2025-12-06 06:40:21.0534', '2025-11-29 06:40:21.055791');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '2000001', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 2.776466391926248, "y": 0.7697057392147952, "z": -0.4871304834771125, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.53312', '2025-11-30 14:38:16.53312');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '-61', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -1.25802399149327, "y": 5.021549025745404, "z": -0.02782913882000475, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.622374', '2025-11-30 14:38:16.622374');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '136472', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -45.99605119717489, "y": -8.924331918677595, "z": 24.16114845386974, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:44.99831', '2025-11-30 14:39:44.99831');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '199', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 0.3207424625338012, "y": -0.2433262658826991, "z": -0.0493035255369477, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.083443', '2025-11-30 14:39:45.083443');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '-96', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 0.6105483654249939, "y": -0.3932376562100181, "z": -0.04062918418916456, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.152521', '2025-11-30 14:39:45.152521');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '999', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 19.06212800187807, "y": -29.71356941474582, "z": -2.332909274165154, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.544994', '2025-11-30 14:39:45.544994');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '299', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -0.7182653906579718, "y": -0.03409022722252671, "z": 0.04097543318765887, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.613756', '2025-11-30 14:39:45.613756');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '-32', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 39.07944045714071, "y": -103.6624481624629, "z": -87.51979764057727, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.869074', '2025-11-30 14:39:45.869074');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '-31', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": -31.79690533856351, "y": -134.4190699436334, "z": 97.25736282713056, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.441068', '2025-11-29 09:29:37.441068');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '899', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 29.8745983702116, "y": 0.4165887440965976, "z": -0.697015290750276, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.644054', '2025-11-29 14:45:36.644054');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '90004920', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -1.553352497347928, "y": 0.9115336364697616, "z": 0.01993753503289585, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.855945', '2025-12-01 08:06:36.855945');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '136472', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": -46.00715417218954, "y": -8.7915211257421, "z": 24.18093552225811, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.688025', '2025-11-29 06:08:32.689963');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '301', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 0.9315496814461515, "y": -0.3886153889586628, "z": -0.0002201831512739622, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.714364', '2025-11-29 06:08:32.716533');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '799', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 10.291989381669, "y": 16.57598539127412, "z": -0.07188961600460331, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.78365', '2025-11-29 06:08:32.785424');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '-32', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 38.92891253186268, "y": -103.3279504647935, "z": -87.1143638814357, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.805477', '2025-11-29 06:08:32.80744');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '499', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": -1.222196890039842, "y": -0.9967266079988837, "z": 0.009083591761661696, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.514563', '2025-11-29 06:26:44.518412');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '299', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": 0.07812318673587147, "y": 0.7157363306434457, "z": 0.005325240646266099, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.652012', '2025-11-29 06:26:44.655066');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '599', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": -0.8126137641673215, "y": 5.104271735595909, "z": -0.003021952413350857, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.389624', '2025-11-29 06:27:23.396459');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '10', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.513389', '2025-11-29 06:27:23.515596');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '599', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": -0.820159265595527, "y": 5.103432874380547, "z": -0.002849622030927424, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.785093', '2025-11-29 06:28:09.789184');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '10', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.954898', '2025-11-29 06:28:09.957982');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '136108', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": -37.18385507443794, "y": -23.40240609338663, "z": 23.5656611740715, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.482276', '2025-11-29 06:28:58.488293');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '999', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 18.90949384529225, "y": -29.76914437758723, "z": -2.282709112776727, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.615502', '2025-11-29 06:28:58.618629');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '599', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": -0.8729305248217962, "y": 5.097254830112631, "z": -0.001643208031851794, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.646292', '2025-11-29 06:34:56.652785');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '10', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.772728', '2025-11-29 06:34:56.77627');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '599', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": -0.8804623250943932, "y": 5.096329419324634, "z": -0.001470821071435262, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.812734', '2025-11-29 06:35:48.816932');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '10', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.987746', '2025-11-29 06:35:48.991475');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '399', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": 0.993838763029778, "y": -0.1558312804690941, "z": 0.000001160230340167483, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.589597', '2025-11-29 06:37:03.595223');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '499', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": -1.113670039401724, "y": -1.098096961807877, "z": 0.004297956809390573, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.715866', '2025-11-29 06:37:03.720192');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '-168', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": -1.113659091865532, "y": -1.098116773282114, "z": 0.004299289519098662, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.811203', '2025-11-29 06:37:03.817431');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-14T00:00:00+00:00:2025-09-14T00:00:00+00:00:1d', '-31', '2025-09-14 00:00:00', '2025-09-14 00:00:00', '1d', '{"positions": [{"x": -31.705897721316, "y": -133.8216381242884, "z": 96.8256505767956, "time": "2025-09-14T00:00:00+00:00"}]}', '2025-12-06 06:37:03.912393', '2025-11-29 06:37:03.91865');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '499', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -0.4342860606077513, "y": -1.428702894271491, "z": -0.01929007544718577, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.548243', '2025-11-30 14:38:16.548243');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '-61', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -1.265402094174575, "y": 5.019751657979215, "z": -0.02724732297426835, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.622127', '2025-11-30 14:38:16.622127');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '-31', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -31.76457629446645, "y": -134.2068228081331, "z": 97.10399528020311, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:20.004379', '2025-11-30 14:38:20.004379');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '301', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 0.7795087837890629, "y": 0.6164335076338584, "z": -0.00008035728578402428, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.146621', '2025-11-30 14:39:45.146621');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '699', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 9.529529264538112, "y": -0.08181647263634423, "z": -0.3779039490599292, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.564094', '2025-11-30 14:39:45.564094');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '2000001', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 2.683612962293612, "y": 1.016160003711448, "z": -0.4622225107203475, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.868907', '2025-12-01 08:06:36.868907');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '-32', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 39.14741764555063, "y": -103.8135115349566, "z": -87.70288529370417, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.449099', '2025-11-29 09:29:37.449099');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:null:null:1d', '10', NULL, NULL, '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-30T04:37:30.448304"}]}', '2025-12-07 04:37:38.062082', '2025-11-30 04:37:38.062082');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '136108', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": -37.18933831197973, "y": -23.39537375121201, "z": 23.56617256668023, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.652977', '2025-11-29 06:08:32.65529');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '136472', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": -46.00750632255448, "y": -8.787236498401763, "z": 24.18157068377619, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.685576', '2025-11-29 06:08:32.68783');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-02T00:00:00+00:00:2025-09-02T00:00:00+00:00:1d', '999', '2025-09-02 00:00:00', '2025-09-02 00:00:00', '1d', '{"positions": [{"x": 18.89857651413936, "y": -29.77307710210534, "z": -2.279098954378387, "time": "2025-09-02T00:00:00+00:00"}]}', '2025-12-06 06:08:32.758701', '2025-11-29 06:08:32.760357');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-08-31T00:00:00+00:00:2025-08-31T00:00:00+00:00:1d', '799', '2025-08-31 00:00:00', '2025-08-31 00:00:00', '1d', '{"positions": [{"x": 10.298744250925, "y": 16.57219927601412, "z": -0.07199138129655287, "time": "2025-08-31T00:00:00+00:00"}]}', '2025-12-06 06:08:32.780735', '2025-11-29 06:08:32.782688');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '199', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": -0.1466067117528723, "y": 0.2824490753463095, "z": 0.03652911626880765, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.532041', '2025-11-29 06:26:44.535987');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-09-03T00:00:00+00:00:2025-09-03T00:00:00+00:00:1d', '-31', '2025-09-03 00:00:00', '2025-09-03 00:00:00', '1d', '{"positions": [{"x": -31.69272392998387, "y": -133.7351690928833, "z": 96.76316307293153, "time": "2025-09-03T00:00:00+00:00"}]}', '2025-12-06 06:26:44.661387', '2025-11-29 06:26:44.66412');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '136108', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": -37.18659687106125, "y": -23.39889001036808, "z": 23.56591698308595, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.356703', '2025-11-29 06:27:23.361721');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-09-04T00:00:00+00:00:2025-09-04T00:00:00+00:00:1d', '999', '2025-09-04 00:00:00', '2025-09-04 00:00:00', '1d', '{"positions": [{"x": 18.90404994096043, "y": -29.77109938675752, "z": -2.280910548950427, "time": "2025-09-04T00:00:00+00:00"}]}', '2025-12-06 06:27:23.49695', '2025-11-29 06:27:23.499017');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '499', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": -1.203273963900708, "y": -1.015868963796625, "z": 0.008218412135308066, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.814706', '2025-11-29 06:28:09.818155');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-09-05T00:00:00+00:00:2025-09-05T00:00:00+00:00:1d', '299', '2025-09-05 00:00:00', '2025-09-05 00:00:00', '1d', '{"positions": [{"x": 0.03766824737885625, "y": 0.7187817829488731, "z": 0.007701334204687538, "time": "2025-09-05T00:00:00+00:00"}]}', '2025-12-06 06:28:09.975286', '2025-11-29 06:28:09.977729');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '136472', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": -46.00644875574783, "y": -8.800090310044673, "z": 24.17966461208397, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.534869', '2025-11-29 06:28:58.53873');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-06T00:00:00+00:00:2025-09-06T00:00:00+00:00:1d', '799', '2025-09-06 00:00:00', '2025-09-06 00:00:00', '1d', '{"positions": [{"x": 10.27847487399276, "y": 16.58354947968585, "z": -0.07168623911492494, "time": "2025-09-06T00:00:00+00:00"}]}', '2025-12-06 06:28:58.642608', '2025-11-29 06:28:58.645857');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '136472', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": -46.00538783276395, "y": -8.812943907327902, "z": 24.17775677880913, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.663102', '2025-11-29 06:34:56.667897');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-12T00:00:00+00:00:2025-09-12T00:00:00+00:00:1d', '799', '2025-09-12 00:00:00', '2025-09-12 00:00:00', '1d', '{"positions": [{"x": 10.25819073085821, "y": 16.59487540271316, "z": -0.07138119063369484, "time": "2025-09-12T00:00:00+00:00"}]}', '2025-12-06 06:34:56.780972', '2025-11-29 06:34:56.784357');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '136472', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": -46.00521068502684, "y": -8.815086152239587, "z": 24.17743863533088, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:48.825574', '2025-11-29 06:35:48.829991');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-09-13T00:00:00+00:00:2025-09-13T00:00:00+00:00:1d', '799', '2025-09-13 00:00:00', '2025-09-13 00:00:00', '1d', '{"positions": [{"x": 10.25480861844505, "y": 16.59676068939286, "z": -0.07133038094139207, "time": "2025-09-13T00:00:00+00:00"}]}', '2025-12-06 06:35:49.00247', '2025-11-29 06:35:49.00627');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '136199', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 85.24133093405399, "y": 39.41459844303357, "z": -17.55312876621266, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.571539', '2025-11-30 14:38:16.571539');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '599', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -1.27655096120407, "y": 5.031725872279321, "z": 0.007659328761532362, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.63718', '2025-11-30 14:38:16.63718');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '301', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 0.7333997883173383, "y": 0.6708481243088099, "z": 0.000111982017122468, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.764943', '2025-11-30 14:38:16.764943');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '899', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 29.8762477464217, "y": 0.3389600039255504, "z": -0.6954544592434854, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:18.562846', '2025-11-30 14:38:18.562846');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '10', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:19.059561', '2025-11-30 14:38:19.059561');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '606', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 9.522507670133757, "y": -0.05409604605926063, "z": -0.380469308372714, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:19.089804', '2025-11-30 14:38:19.100884');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '299', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -0.7171439813856607, "y": -0.05436687635276429, "z": 0.04063215881780609, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:19.448667', '2025-11-30 14:38:19.448667');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '499', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -0.5170581294281691, "y": -1.409234192622345, "z": -0.0168523640143943, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.74777', '2025-11-30 14:38:19.74777');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '-98', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 19.82229114279719, "y": -59.86335472114624, "z": 2.195570317442329, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.259497', '2025-11-30 14:39:45.259497');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '799', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 10.08858572278063, "y": 16.68831321456043, "z": -0.06883485311428968, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.64569', '2025-11-30 14:39:45.64569');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '10', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.576444', '2025-12-02 02:56:27.576444');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '-98', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 19.91008344781246, "y": -60.07007160396318, "z": 2.203707470140983, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.652387', '2025-11-29 14:45:36.652387');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '10', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.694687', '2025-11-29 14:45:36.694687');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '2000001', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 2.688915430700176, "y": 1.003805648974501, "z": -0.4635904715722511, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.777609', '2025-11-29 15:04:37.777609');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '136108', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": -37.06751266056072, "y": -23.55101601131818, "z": 23.55463061497423, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.827583', '2025-11-29 15:04:37.827583');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '199', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": -0.1359957138845599, "y": 0.2863896631639285, "z": 0.03587788047001192, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.872365', '2025-11-29 15:04:37.872365');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '399', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 0.4228021761292776, "y": 0.8916819232909798, "z": -0.00005428474024956687, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:42.768907', '2025-11-30 14:37:42.768907');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '-168', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": -0.1263065222080396, "y": -1.460137632169339, "z": -0.0274854255736161, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.911654', '2025-11-29 15:04:37.911654');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '136472', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -45.99165548158427, "y": -8.97573519195765, "z": 24.15343848144866, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.869831', '2025-11-30 14:37:50.869831');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '299', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": -0.5064064949916135, "y": -0.5164575118970915, "z": 0.02212424447761812, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.952746', '2025-11-29 15:04:37.952746');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '399', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 0.3848561664558011, "y": 0.9082403463363298, "z": -0.00005654089585144763, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.875869', '2025-11-29 09:17:05.875869');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '136472', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": -45.99121750318357, "y": -8.980821735717935, "z": 24.15267398393585, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.927384', '2025-11-29 09:17:05.927384');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '-31', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -31.79451070453939, "y": -134.4033478785862, "z": 97.24600241601333, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:51.093361', '2025-11-30 14:37:51.093361');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '136108', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -37.10281037984569, "y": -23.50605025525842, "z": 23.55801336537391, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.604668', '2025-11-30 14:38:16.604668');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '601', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 9.529362916036739, "y": -0.06605523480507948, "z": -0.3776960992284474, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.743732', '2025-11-30 14:38:16.743732');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '90000030', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -19.53056653137437, "y": 27.41762383831084, "z": -9.894049276312543, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:18.552353', '2025-11-30 14:38:18.56689');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '399', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 0.7661004228292623, "y": 0.6307426893470816, "z": -0.00004187496662925206, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:18.623682', '2025-11-30 14:38:18.623682');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '999', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 19.13013635694631, "y": -29.68857004810126, "z": -2.355298330141992, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.81517', '2025-11-30 14:38:57.81517');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '-31', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -31.79331338038015, "y": -134.3954868492563, "z": 97.24032220154211, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.902064', '2025-11-30 14:38:57.902064');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '-170', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 0.7582864591208465, "y": 0.6537889334629102, "z": -0.0004098179444373725, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.84872', '2025-11-30 14:39:45.84872');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '136199', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 85.22892434879817, "y": 39.43691891627778, "z": -17.52876245846099, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.89578', '2025-12-01 08:06:36.89578');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '503', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -1.473618862875464, "y": 4.984346778314593, "z": 0.01186748390405161, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.908968', '2025-12-01 08:06:36.908968');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '136108', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -37.06561694478192, "y": -23.55342795683967, "z": 23.55444805400598, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.921929', '2025-12-01 08:06:36.921929');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '-61', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -1.458415803772318, "y": 4.980630392669037, "z": -0.02239266919199966, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.934104', '2025-12-01 08:06:36.934104');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '599', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -1.468221941804259, "y": 4.989043695951146, "z": 0.0121249501596322, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.948104', '2025-12-01 08:06:36.948104');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '136472', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -45.99091752252586, "y": -8.984301977079054, "z": 24.1521507476978, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.96115', '2025-12-01 08:06:36.96115');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '499', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -0.1063822838370923, "y": -1.460010013404077, "z": -0.02798693272907963, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.97431', '2025-12-01 08:06:36.97431');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '136199', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 85.24037722501066, "y": 39.41631597601167, "z": -17.55125457719556, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:12.197009', '2025-11-30 14:38:12.197009');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '2000001', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 2.770406954355336, "y": 0.7882178059814233, "z": -0.4854281572199415, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.454706', '2025-11-30 14:38:16.454706');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '399', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 0.3585088696587465, "y": 0.9186604481372688, "z": -0.00005799926651020448, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.882987', '2025-12-01 08:06:36.882987');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '199', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 0.3599799522163776, "y": -0.08444641149079098, "z": -0.0399183385562208, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.596826', '2025-11-30 14:38:16.596826');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '301', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 0.6951896279591677, "y": 0.7087981337814161, "z": 0.0001640950732891098, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.600702', '2025-11-30 14:38:16.600702');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '136472', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -45.99550472859492, "y": -8.930757567205541, "z": 24.16018624698779, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.607532', '2025-11-30 14:38:16.607532');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '699', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 9.527601466400503, "y": -0.04284488690359271, "z": -0.3785070084959526, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.73638', '2025-11-30 14:38:16.73638');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '999', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 19.07845799157544, "y": -29.70757784225857, "z": -2.338281062333865, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.757764', '2025-11-30 14:38:16.757764');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '-98', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 19.83457798995619, "y": -59.89228597963773, "z": 2.196709172787035, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:18.589463', '2025-11-30 14:38:18.589463');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '-98', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 19.83150631019565, "y": -59.88505325515939, "z": 2.196424462863648, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:18.59163', '2025-11-30 14:38:18.59163');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '-32', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 39.09400713625408, "y": -103.6948189143279, "z": -87.5590313081021, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:18.883354', '2025-11-30 14:38:18.883354');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '299', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -0.7131996814212866, "y": -0.0947750772025485, "z": 0.03984942826720127, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:19.044489', '2025-11-30 14:38:19.044489');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '2000001', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 2.761071119750299, "y": 0.815915389972949, "z": -0.4828314516120653, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.159393', '2025-11-30 14:39:23.159393');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '136472', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -45.99495740459489, "y": -8.937183147475503, "z": 24.15922360023897, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.226946', '2025-11-30 14:39:23.226946');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '-96', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 0.4623528298340113, "y": -0.1068222676037159, "z": -0.02814216648997216, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.661024', '2025-11-29 14:45:36.661024');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '799', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 9.99117665934571, "y": 16.74096791263501, "z": -0.06737624909136201, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.704069', '2025-11-29 14:45:36.704069');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '-96', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 0.6147033001578155, "y": -0.3465698741407698, "z": -0.04022733206557159, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.283685', '2025-11-30 14:39:23.283685');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '136199', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 85.2295809159261, "y": 39.43573891105671, "z": -17.5300511612091, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.81842', '2025-11-29 15:04:37.81842');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '-61', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": -1.448884056716147, "y": 4.983956684715534, "z": -0.02148552338103793, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.836864', '2025-11-29 15:04:37.836864');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '301', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 0.3833155060828666, "y": 0.9096214565378793, "z": -0.00001902657704561337, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.88041', '2025-11-29 15:04:37.88041');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '999', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 19.13997063622866, "y": -29.68494984499801, "z": -2.358531500892667, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.919687', '2025-11-29 15:04:37.919687');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '-31', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": -31.79765365773763, "y": -134.4239830906602, "z": 97.26091295073026, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.960265', '2025-11-29 15:04:37.960265');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '136199', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 85.22970028645179, "y": 39.43552435983835, "z": -17.53028546960587, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.895394', '2025-11-29 09:17:05.895394');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '899', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 29.87461317060475, "y": 0.4159308274080563, "z": -0.6970021471075516, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.962458', '2025-11-29 09:17:05.962458');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '699', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 9.520715312588607, "y": 0.07615159008357243, "z": -0.3803054930700019, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:06.001567', '2025-11-29 09:17:06.001567');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '299', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -0.7030602521457181, "y": -0.1547857990310703, "z": 0.03843993197133849, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.343539', '2025-11-30 14:39:23.343539');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '499', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -0.5033694839581472, "y": -1.412790776946929, "z": -0.01726256709669952, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.01243', '2025-11-30 14:39:45.01243');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '10', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.489454', '2025-11-30 14:39:45.489454');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '136199', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 85.24085409300042, "y": 39.41545722146173, "z": -17.55219167467842, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.513967', '2025-11-30 14:38:16.513967');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '199', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 0.3579924910553783, "y": -0.112831842599839, "z": -0.04205577326967092, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.638258', '2025-11-30 14:38:16.638258');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '-168', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": -0.1269089144754397, "y": -1.460131962014712, "z": -0.02747057128899022, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.669723', '2025-11-29 14:45:36.669723');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '299', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": -0.5070019415654878, "y": -0.5158631570590021, "z": 0.02216676713783022, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.712114', '2025-11-29 14:45:36.712114');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '399', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 0.3808223002396846, "y": 0.9098918034296526, "z": -0.00005677517310048014, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.805033', '2025-11-29 15:04:37.805033');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '136472', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": -45.99117136877858, "y": -8.981357158819137, "z": 24.15259349446118, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.855261', '2025-11-29 15:04:37.855261');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '-98', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 19.91021141244261, "y": -60.07037290485143, "z": 2.203719330309907, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.895654', '2025-11-29 15:04:37.895654');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '10', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.936543', '2025-11-29 15:04:37.936543');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '136108', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": -37.06785731756568, "y": -23.55057746640768, "z": 23.55466379640866, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.903119', '2025-11-29 09:17:05.903119');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '-98', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 19.90944362412876, "y": -60.06856509796387, "z": 2.203648169227213, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.970034', '2025-11-29 09:17:05.970034');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '-31', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": -31.79735433029587, "y": -134.4220178317543, "z": 97.2594929015689, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:06.038654', '2025-11-29 09:17:06.038654');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '499', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -0.4896366928034622, "y": -1.416223466593025, "z": -0.01767125629170488, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.687075', '2025-11-30 14:38:16.687075');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '50326340', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 45.08632016337896, "y": 7.215994795270389, "z": 19.02133057381391, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:18.522793', '2025-11-30 14:38:16.714056');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '999', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 19.0757329557199, "y": -29.70857278217511, "z": -2.337372763031502, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:18.585792', '2025-11-30 14:38:18.585792');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '-96', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 0.6138808919558851, "y": -0.3788657537814701, "z": -0.04062386715951322, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:18.606103', '2025-11-30 14:38:18.606103');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '606', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 9.520474609766378, "y": -0.05074117810923679, "z": -0.3792397086313072, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:18.676182', '2025-11-30 14:38:18.693578');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '799', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 10.07497403403378, "y": 16.69571507073411, "z": -0.068631128159154, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:19.15577', '2025-11-30 14:38:19.15577');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '-32', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 39.09157936187502, "y": -103.6894237901443, "z": -87.55249238624913, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:19.163949', '2025-11-30 14:38:19.163949');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '299', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -0.715454879063384, "y": -0.07460048956596163, "z": 0.04025671988940829, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:19.443197', '2025-11-30 14:38:19.443197');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '136199', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 85.23274367951802, "y": 39.43005280048379, "z": -17.53626020955794, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.767798', '2025-11-30 14:38:59.767798');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '601', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 9.528822142870329, "y": -0.08270315482683166, "z": -0.3773692836710034, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.126021', '2025-11-30 14:39:45.126021');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '-98', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 19.82843460908795, "y": -59.87782047058514, "z": 2.196139750332716, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.140622', '2025-11-30 14:39:45.140622');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '-31', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -31.76337886380367, "y": -134.1989618336455, "z": 97.09831491810603, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.856517', '2025-11-30 14:39:45.856517');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '899', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 29.87449775214775, "y": 0.4210624501412188, "z": -0.6971050940918629, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.028397', '2025-12-01 08:06:37.028397');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '-98', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 19.91443422532843, "y": -60.08031577587137, "z": 2.204110713298701, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.039897', '2025-12-01 08:06:37.039897');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '-96', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 0.4378962169690455, "y": -0.08572870855253455, "z": -0.02644125622424129, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.052806', '2025-12-01 08:06:37.052806');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '399', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 0.7072155945608167, "y": 0.6943265151450111, "z": -0.00004770530055330323, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:12.177401', '2025-11-30 14:38:12.177401');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '-61', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -1.287858561424017, "y": 5.014664320658009, "z": -0.0244527062227592, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.46833', '2025-11-30 14:38:16.46833');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '199', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -0.1774485621188836, "y": 0.2688708922426482, "z": 0.03824823650893198, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:36.987513', '2025-12-01 08:06:36.987513');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '601', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 9.518874232166654, "y": 0.08527149866069206, "z": -0.3803732238838164, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.002124', '2025-12-01 08:06:37.002124');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '136108', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -37.10005758302336, "y": -23.50956085972053, "z": 23.55775067828318, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.557403', '2025-11-30 14:38:16.557403');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '499', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -0.4481844154370379, "y": -1.425771953748126, "z": -0.01888784132293558, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.580453', '2025-11-30 14:38:16.580453');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '899', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 29.87605769263418, "y": 0.3484345612874874, "z": -0.6956449684038069, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.617431', '2025-11-30 14:38:16.617431');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '301', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 0.7209673797741162, "y": 0.6838309345045336, "z": 0.0001420412913045703, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.688693', '2025-11-30 14:38:16.688693');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '999', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 19.13985723379096, "y": -29.6849920310497, "z": -2.358494585780607, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.678242', '2025-11-29 14:45:36.678242');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '-31', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": -31.7976037698518, "y": -134.4236555475004, "z": 97.26067627589579, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.720688', '2025-11-29 14:45:36.720688');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '599', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": -1.458135505861501, "y": 4.991479091953187, "z": 0.01188914495155772, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.84662', '2025-11-29 15:04:37.84662');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '899', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 29.87459541084812, "y": 0.416720328002212, "z": -0.6970179209004221, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.887687', '2025-11-29 15:04:37.887687');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '699', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 9.52062590586143, "y": 0.07754315705442186, "z": -0.3803260960705487, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.928138', '2025-11-29 15:04:37.928138');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '-32', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 39.14893497677064, "y": -103.8168834814021, "z": -87.70697199077554, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.968018', '2025-11-29 15:04:37.968018');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '-61', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": -1.447162107162813, "y": 4.984568995205216, "z": -0.02127858415967075, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.911051', '2025-11-29 09:17:05.911051');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '299', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": -0.50996884765016, "y": -0.5128809082309854, "z": 0.02237892849067392, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:06.031273', '2025-11-29 09:17:06.031273');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '199', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 0.3540392596657901, "y": -0.1405989247536601, "z": -0.0439623754529658, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.71401', '2025-11-30 14:38:16.71401');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '-168', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -0.448199505481282, "y": -1.425766252799843, "z": -0.01887190734756731, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.734521', '2025-11-30 14:38:16.734521');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '10', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.762132', '2025-11-30 14:38:16.762132');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '699', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 9.528169395887483, "y": -0.05398050260166506, "z": -0.3783350133571953, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:18.603914', '2025-11-30 14:38:18.603914');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '-168', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -0.4758768916817558, "y": -1.419532676433467, "z": -0.01806240343067898, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:18.625286', '2025-11-30 14:38:18.625286');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '136199', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 85.242761295578, "y": 39.41202196435071, "z": -17.55594000512709, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:18.674402', '2025-11-30 14:38:18.674402');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '-31', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -31.77056338596579, "y": -134.2461277134616, "z": 97.13239700224707, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:18.746832', '2025-11-30 14:38:18.746832');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '-31', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -31.7681685617399, "y": -134.2304057448124, "z": 97.12103633111191, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:19.746238', '2025-11-30 14:38:19.746238');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '-170', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 0.7466097750384438, "y": 0.6668052503177244, "z": -0.0004850689807611907, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:19.892671', '2025-11-30 14:38:19.892671');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '899', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 29.87643586590871, "y": 0.3294869059060558, "z": -0.6952633048001667, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.910836', '2025-11-30 14:38:19.910836');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '-168', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -0.5170720092245664, "y": -1.409245014037114, "z": -0.01683806865554553, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.93735', '2025-11-30 14:38:19.93735');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '-170', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 0.7809577464229908, "y": 0.6271590870993377, "z": -0.0002581801482940994, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.87939', '2025-11-30 14:39:45.87939');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '2000001', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 2.764215931105874, "y": 0.8066924176195838, "z": -0.4837027730357287, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:08.135944', '2025-11-30 14:38:08.135944');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '-61', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -1.303126323889993, "y": 5.011573189698504, "z": -0.0216565697970983, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:12.165633', '2025-11-30 14:38:12.165633');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '301', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 0.3608989125132257, "y": 0.9192159064415312, "z": 0.00004702596765745047, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.015365', '2025-12-01 08:06:37.015365');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '-168', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -0.1063685133693806, "y": -1.460028026963913, "z": -0.02798689780417693, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.064866', '2025-12-01 08:06:37.064866');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '299', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -0.4863765870461373, "y": -0.5356737648640852, "z": 0.0207045213369821, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.14495', '2025-12-01 08:06:37.14495');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '136472', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -45.99513994097619, "y": -8.935041294992677, "z": 24.15954453136082, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.525561', '2025-11-30 14:38:16.525561');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '899', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 29.87592881817734, "y": 0.3547496401668543, "z": -0.6957726048742963, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.579911', '2025-11-30 14:38:16.579911');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '-96', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 0.6152474143110445, "y": -0.3550830712873198, "z": -0.04037575611020697, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.657517', '2025-11-30 14:38:16.657517');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '10', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.701069', '2025-11-30 14:38:16.701069');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '899', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 29.8763110439966, "y": 0.3358021818149095, "z": -0.6953910900848649, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:18.568524', '2025-11-30 14:38:18.568524');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '299', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -0.7069996464995028, "y": -0.1348835405471286, "z": 0.03894066009206706, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:18.605771', '2025-11-30 14:38:18.605771');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '999', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 19.07300194087584, "y": -29.70957735638641, "z": -2.336469993956726, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:18.676916', '2025-11-30 14:38:18.676916');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '999', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 19.07027361738981, "y": -29.71058595016229, "z": -2.335578867679696, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:18.695877', '2025-11-30 14:38:18.695877');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '699', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 9.520640819987399, "y": 0.07731123014536835, "z": -0.380322663085329, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.68581', '2025-11-29 14:45:36.68581');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-29T14:00:00+00:00:2025-11-29T14:00:00+00:00:1h', '-32', '2025-11-29 14:00:00', '2025-11-29 14:00:00', '1h', '{"positions": [{"x": 39.14883382137336, "y": -103.8166586849795, "z": -87.70669954441354, "time": "2025-11-29T14:00:00+00:00"}]}', '2025-12-06 14:45:36.729872', '2025-11-29 14:45:36.729872');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '699', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 9.528448067836548, "y": -0.05954815127736729, "z": -0.3782488570081894, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:18.813615', '2025-11-30 14:38:18.813615');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '499', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": -0.1262904805051671, "y": -1.460136323834502, "z": -0.02750139604076945, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.863686', '2025-11-29 15:04:37.863686');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '-32', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 39.08915158531028, "y": -103.6840286654933, "z": -87.54595345530288, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:19.875893', '2025-11-30 14:38:19.875893');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '-96', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 0.4616716322874775, "y": -0.1062102166625356, "z": -0.0280944533514448, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.903713', '2025-11-29 15:04:37.903713');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '599', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": -1.456301036746414, "y": 4.991919588866325, "z": 0.01184625962726827, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.91937', '2025-11-29 09:17:05.91937');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '-168', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": -0.1299056795565278, "y": -1.460110400103138, "z": -0.02740431501341119, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.985838', '2025-11-29 09:17:05.985838');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '-170', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 0.7347102988157094, "y": 0.6796172568372536, "z": -0.0005598403556958128, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:19.887918', '2025-11-30 14:38:19.887918');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-29T15:00:00+00:00:2025-11-29T15:00:00+00:00:1h', '799', '2025-11-29 15:00:00', '2025-11-29 15:00:00', '1h', '{"positions": [{"x": 9.991034429243793, "y": 16.74104426274794, "z": -0.06737412280779737, "time": "2025-11-29T15:00:00+00:00"}]}', '2025-12-06 15:04:37.944699', '2025-11-29 15:04:37.944699');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '90004920', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -1.524504323432049, "y": 0.7229542484925284, "z": 0.03115651397226738, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.539557', '2025-11-30 14:38:57.547359');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '136199', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 85.23942340822734, "y": 39.41803341351086, "z": -17.54938036438394, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.182813', '2025-11-30 14:39:23.182813');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '199', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 0.3576440641551991, "y": -0.02637303473716882, "z": -0.03495819985004251, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.24267', '2025-11-30 14:39:23.24267');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '999', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 19.08388462386507, "y": -29.70559833143619, "z": -2.340074938416704, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.299947', '2025-11-30 14:39:23.299947');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '-32', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 39.09886267846225, "y": -103.7056091612631, "z": -87.57210912453097, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.361082', '2025-11-30 14:39:23.361082');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '2000001', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 2.782394105008508, "y": 0.7511571376944858, "z": -0.4888096970732382, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:18.601521', '2025-11-30 14:38:18.601521');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '606', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 9.525385922278291, "y": -0.05823126816758792, "z": -0.3813807847419829, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:19.10435', '2025-11-30 14:38:19.121291');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '2000001', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 2.687475371112978, "y": 1.007177298258654, "z": -0.4632184371764801, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.810407', '2025-11-30 02:30:05.980517');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '399', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 0.374757966699261, "y": 0.9123360803628093, "z": -0.00005712129846379271, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.843904', '2025-11-30 02:30:35.846535');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '136199', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 85.22940185706933, "y": 39.43606073510441, "z": -17.52969969792524, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.854858', '2025-11-30 02:30:35.857657');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '499', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": -0.1299078435933228, "y": -1.46013139910183, "z": -0.02741258878796321, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.935594', '2025-11-29 09:17:05.935594');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '136108', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": -37.06699566432902, "y": -23.55167382328573, "z": 23.55458083620591, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.866248', '2025-11-30 02:30:35.869287');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '-61', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": -1.451473488609419, "y": 4.983042575026188, "z": -0.02177117306427119, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.878443', '2025-11-30 02:30:35.88138');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '599', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": -1.460887029592331, "y": 4.990816974165709, "z": 0.01195346243588529, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.890556', '2025-11-30 02:30:35.893918');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '136472', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": -45.99110215594613, "y": -8.982160292550633, "z": 24.15247275451631, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.902923', '2025-11-30 02:30:35.90606');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '499', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": -0.1208630516871398, "y": -1.460127633789938, "z": -0.02763430394603713, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.914873', '2025-11-30 02:30:35.918305');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '199', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": -0.1475583672474831, "y": 0.2820795471110056, "z": 0.03658616755224475, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.927784', '2025-11-30 02:30:35.931126');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '301', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 0.3772503289123047, "y": 0.9122917143984296, "z": -0.0000002814080061928934, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.940378', '2025-11-30 02:30:35.944097');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '899', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 29.87456878482194, "y": 0.4179045831151495, "z": -0.6970416189184039, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.954235', '2025-11-30 02:30:35.957078');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '-98', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 19.91136309251586, "y": -60.07308460817089, "z": 2.203826071622773, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.965993', '2025-11-30 02:30:35.969862');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '-96', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 0.4554400163419474, "y": -0.1006788286435745, "z": -0.02765890242708865, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.980617', '2025-11-30 02:30:35.983924');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '-168', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": -0.120846867779408, "y": -1.460143480711082, "z": -0.02763533880885465, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:35.993144', '2025-11-30 02:30:35.996437');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '999', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 19.14099195321239, "y": -29.68456985864229, "z": -2.358864487874888, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:36.007908', '2025-11-30 02:30:36.011126');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '699', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 9.520491445609775, "y": 0.07963048489072236, "z": -0.3803569789424512, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:36.017424', '2025-11-30 02:30:36.020017');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '10', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:36.026735', '2025-11-30 02:30:36.02914');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '799', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 9.989754332098768, "y": 16.7417313582764, "z": -0.06735499508958341, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:36.034235', '2025-11-30 02:30:36.036088');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '299', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": -0.501016680955984, "y": -0.5217751041724933, "z": 0.02174019783004677, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:36.042478', '2025-11-30 02:30:36.044173');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '-31', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": -31.79810264832891, "y": -134.4269309792549, "z": 97.26304302377598, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:36.049244', '2025-11-30 02:30:36.05137');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1h', '-32', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1h', '{"positions": [{"x": 39.1498453752356, "y": -103.8189066491583, "z": -87.70942400733009, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 02:30:36.057755', '2025-11-30 02:30:36.060368');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '599', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -1.306164083120163, "y": 5.025624931314546, "z": 0.00834719931120593, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.218224', '2025-11-30 14:39:23.218224');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '-98', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 19.84686449566597, "y": -59.92121627669376, "z": 2.197847986429146, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.275368', '2025-11-30 14:39:23.275368');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '799', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 10.06135519458591, "y": 16.70310627810307, "z": -0.06842710989921529, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.334674', '2025-11-30 14:39:23.334674');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '136199', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 85.23894645943669, "y": 39.41889209646989, "z": -17.54844324905584, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:08.117259', '2025-11-30 14:38:08.117259');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '199', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 0.3531296855859592, "y": 0.002995803046989768, "z": -0.03214405301800834, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.518007', '2025-11-30 14:38:16.518007');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '999', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 19.08659989318711, "y": -29.70459771473775, "z": -2.340958622527558, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.646474', '2025-11-30 14:38:16.646474');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '-32', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 39.10129044629544, "y": -103.7110042840072, "z": -87.57864801910905, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:18.599651', '2025-11-30 14:38:18.599651');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '-168', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -0.4896524881179078, "y": -1.416227896632706, "z": -0.017655604172987, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:18.653867', '2025-11-30 14:38:18.653867');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '10', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:19.051506', '2025-11-30 14:38:19.051506');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '606', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 9.532139576757901, "y": -0.06961688859567003, "z": -0.3816970303813886, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.972621', '2025-11-30 14:38:19.977695');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:null:null:1d', '503', NULL, NULL, '1d', '{"positions": [{"x": -1.469465676837047, "y": 4.990413564686626, "z": 0.01188037289109192, "time": "2025-11-30T04:37:09.254095"}]}', '2025-12-07 04:37:37.868634', '2025-11-30 04:37:37.872104');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:null:null:1d', '-170', NULL, NULL, '1d', '{"positions": [{"x": 0.3730037326555832, "y": 0.924611245239468, "z": -0.002094353632027287, "time": "2025-11-30T04:37:36.399573"}]}', '2025-12-07 04:37:38.109738', '2025-11-30 04:37:38.112503');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '199', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": -0.1281897226270365, "y": 0.2890598674338037, "z": 0.03538013480605905, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.945848', '2025-11-29 09:17:05.945848');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '999', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 19.1392904730723, "y": -29.68520280580496, "z": -2.3583102123978, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.993634', '2025-11-29 09:17:05.993634');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '999', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 19.14371938842969, "y": -29.68355714810235, "z": -2.359760579687143, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.07999', '2025-12-01 08:06:37.07999');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '50326340', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 45.42673033710701, "y": 7.26671901330297, "z": 19.1702996947966, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.496773', '2025-11-30 14:38:55.131696');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '90004920', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -1.5060935863303, "y": 0.6092702295162147, "z": 0.03786633903397355, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.729666', '2025-11-30 14:38:59.734775');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '399', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 0.6821404068694231, "y": 0.7183198096634745, "z": -0.00004896052252901392, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.170602', '2025-11-30 14:39:23.170602');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '499', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -0.4203491183562518, "y": -1.431506898785257, "z": -0.01969059564744446, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.235026', '2025-11-30 14:39:23.235026');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '-168', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -0.4203614212197261, "y": -1.431495068039612, "z": -0.01967567007834503, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.292204', '2025-11-30 14:39:23.292204');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '-31', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -31.77295819367994, "y": -134.2618496907035, "z": 97.14375764981646, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.352077', '2025-11-30 14:39:23.352077');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '-170', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 0.7919456449192028, "y": 0.613553555636886, "z": -0.0001819489864591872, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.879678', '2025-11-30 14:39:45.879678');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '699', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 9.520130844201095, "y": 0.08519659285617283, "z": -0.3804392254440885, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.0925', '2025-12-01 08:06:37.0925');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '10', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.10689', '2025-12-01 08:06:37.10689');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '606', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 9.528036246524623, "y": 0.08504966272675014, "z": -0.3811502292394193, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.118629', '2025-12-01 08:06:37.118629');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '799', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 9.986340417510853, "y": 16.74356314461811, "z": -0.06730407182768969, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.131051', '2025-12-01 08:06:37.131051');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '-31', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": -31.79929995320624, "y": -134.4347920168699, "z": 97.26872321448046, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.157156', '2025-12-01 08:06:37.157156');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '-32', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 39.15227310351443, "y": -103.8243017627421, "z": -87.71596271195199, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.171504', '2025-12-01 08:06:37.171504');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-12-01T00:00:00+00:00:2025-12-01T00:00:00+00:00:1d', '-170', '2025-12-01 00:00:00', '2025-12-01 00:00:00', '1d', '{"positions": [{"x": 0.359846734859225, "y": 0.9297060410427296, "z": -0.002127383933175062, "time": "2025-12-01T00:00:00+00:00"}]}', '2025-12-08 08:06:37.182015', '2025-12-01 08:06:37.182015');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '999', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 19.14644541892126, "y": -29.68255191308625, "z": -2.360666713565239, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.559022', '2025-12-02 02:56:27.559022');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('30978:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '30978', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -0.06344679756021225, "y": 2.669085373848303, "z": -0.3583376100692056, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:47:52.91029', '2025-11-30 12:47:52.924082');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '399', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 0.7194334996660785, "y": 0.6820140043864107, "z": -0.00004680922759807299, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.492755', '2025-11-30 14:38:16.492755');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '599', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -1.298764530387155, "y": 5.027165520663642, "z": 0.008175241102360453, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.49919', '2025-11-30 14:38:16.49919');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '-61', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -1.280317162710361, "y": 5.016305471246684, "z": -0.02556335750165939, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.526761', '2025-11-30 14:38:16.526761');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '499', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -0.4620430517367423, "y": -1.422714667768983, "z": -0.01848393338782107, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.624795', '2025-11-30 14:38:16.624795');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '-98', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 19.84379290122548, "y": -59.91398379254188, "z": 2.197563286924417, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.634876', '2025-11-30 14:38:16.634876');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '899', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 29.87612113133732, "y": 0.3452765490689772, "z": -0.6955811274571451, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.645365', '2025-11-30 14:38:16.645365');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '-168', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -0.4620588582470088, "y": -1.422712302672657, "z": -0.01846785036304098, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:18.559166', '2025-11-30 14:38:18.559166');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '10', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:18.582945', '2025-11-30 14:38:18.582945');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '799', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 10.06476053198768, "y": 16.70125947049434, "z": -0.0684782397616006, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:18.586033', '2025-11-30 14:38:18.586033');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:null:null:1d', '-61', NULL, NULL, '1d', '{"positions": [{"x": -1.452805729057709, "y": 4.982575353898483, "z": -0.02190647867580486, "time": "2025-11-30T04:37:12.107340"}]}', '2025-12-07 04:37:37.904593', '2025-11-30 04:37:37.904593');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:null:null:1d', '601', NULL, NULL, '1d', '{"positions": [{"x": 9.519581301589666, "y": 0.07991092518615261, "z": -0.3798606521605724, "time": "2025-11-30T04:37:19.430837"}]}', '2025-12-07 04:37:37.971221', '2025-11-30 04:37:37.975211');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '301', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 0.3873387671307457, "y": 0.907820492945588, "z": -0.0000316989370823021, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.954711', '2025-11-29 09:17:05.954711');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '50326340', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -3.634135690248293, "y": 1.18101928511878, "z": -0.9938820913126287, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.347566', '2025-12-02 02:56:27.347566');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '2000001', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 2.679718210969829, "y": 1.025130458564156, "z": -0.4612210132397281, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.405284', '2025-12-02 02:56:27.405284');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '136108', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -37.06423813367578, "y": -23.55518204424386, "z": 23.55431521534454, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.448351', '2025-12-02 02:56:27.448351');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '-168', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -0.09188039446227411, "y": -1.459774487049748, "z": -0.0283356574253939, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.550446', '2025-12-02 02:56:27.550446');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '606', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 9.526957725207463, "y": 0.09348989892082343, "z": -0.3826434328452625, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.584434', '2025-12-02 02:56:27.584434');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '-61', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": -1.243420110344812, "y": 5.025278770959465, "z": -0.02848058582964481, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.08808', '2025-11-30 14:38:19.08808');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '-31', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -31.7693659759163, "y": -134.2382667280589, "z": 97.1267166696257, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:19.089442', '2025-11-30 14:38:19.089442');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '50326340', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 45.38418244108609, "y": 7.260379368638758, "z": 19.15168001017395, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.691253', '2025-11-30 14:38:57.979149');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '606', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 9.527795261843817, "y": 0.07663448990119556, "z": -0.3795388416239677, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.931077', '2025-11-30 12:56:34.934763');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '-61', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -1.272832528336685, "y": 5.01800267371496, "z": -0.02649316507674309, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.575139', '2025-11-30 14:38:16.575139');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '899', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 29.87618438762176, "y": 0.3421182242801641, "z": -0.6955176710670257, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.715515', '2025-11-30 14:38:16.715515');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:null:null:1d', '199', NULL, NULL, '1d', '{"positions": [{"x": -0.153424243644378, "y": 0.279726948979746, "z": 0.03693192249054218, "time": "2025-11-30T04:37:17.959521"}]}', '2025-12-07 04:37:37.956858', '2025-11-30 04:37:37.956858');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '90000030', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -19.51544762866175, "y": 27.42309829928302, "z": -9.890748787905228, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.37792', '2025-12-02 02:56:27.37792');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '10', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:18.625573', '2025-11-30 14:38:18.625573');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '-98', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 19.82536288662487, "y": -59.87058762591384, "z": 2.19585503519279, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:19.920717', '2025-11-30 14:38:19.920717');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '-96', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 0.4657258068612113, "y": -0.1098748525195465, "z": -0.02837872231925975, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:05.978003', '2025-11-29 09:17:05.978003');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '799', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 9.991887802006454, "y": 16.74058614361291, "z": -0.06738688178484327, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:06.02336', '2025-11-29 09:17:06.02336');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '399', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 0.3421509026290232, "y": 0.9247017669826088, "z": -0.00005878209532824985, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.417632', '2025-12-02 02:56:27.417632');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '136472', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -45.99073279327236, "y": -8.986443653670133, "z": 24.15182869196148, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.477308', '2025-12-02 02:56:27.477308');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '499', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -0.09189148503838086, "y": -1.459754750962601, "z": -0.02833692301743335, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.48676', '2025-12-02 02:56:27.48676');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '899', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 29.87442631067977, "y": 0.4242198937873992, "z": -0.6971688642576479, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.522205', '2025-12-02 02:56:27.522205');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '-32', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 39.15470083042281, "y": -103.8296968756504, "z": -87.72250140756958, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.61976', '2025-12-02 02:56:27.61976');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '399', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 0.6947835148809676, "y": 0.7064296891254919, "z": -0.00004842248211818377, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:08.150589', '2025-11-30 14:38:08.150589');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '499', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -0.4063747294369247, "y": -1.434183385921105, "z": -0.02008936176715493, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.492992', '2025-11-30 14:38:16.492992');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '599', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -1.291363105025274, "y": 5.028695913869142, "z": 0.008003268137966766, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.546322', '2025-11-30 14:38:16.546322');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '599', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -1.283958687693648, "y": 5.03021585696931, "z": 0.007831288215803143, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.594044', '2025-11-30 14:38:16.594044');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '-168', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -0.4063850318692125, "y": -1.434168915803235, "z": -0.02007527012644474, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.630013', '2025-11-30 14:38:16.630013');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '2000001', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 2.687475371112978, "y": 1.007177298258654, "z": -0.4632184371764801, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.590595', '2025-11-30 12:56:34.590595');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '-61', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -1.451473488609419, "y": 4.983042575026188, "z": -0.02177117306427119, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.692262', '2025-11-30 12:56:34.692262');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '601', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 9.519339190094907, "y": 0.08009923389439517, "z": -0.3805196340998815, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.77118', '2025-11-30 12:56:34.77118');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '-168', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -0.120846867779408, "y": -1.460143480711082, "z": -0.02763533880885465, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.883154', '2025-11-30 12:56:34.883154');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '299', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -0.501016680955984, "y": -0.5217751041724933, "z": 0.02174019783004677, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.968229', '2025-11-30 12:56:34.968229');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '50326340', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 45.44091275664289, "y": 7.268832172376196, "z": 19.17650616433026, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:40.918574', '2025-11-30 14:37:38.535759');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '136199', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 85.23322097700391, "y": 39.4291944284538, "z": -17.53719740195804, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.881298', '2025-11-30 14:37:50.881298');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '606', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 9.515500611829138, "y": 0.03819564771343584, "z": -0.3805183728318601, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.119604', '2025-11-30 14:37:51.121708');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '606', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 9.517531333929869, "y": 0.03487487938436246, "z": -0.3817621590374783, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.127765', '2025-11-30 14:37:51.130031');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '2000001', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 2.731292279819555, "y": 0.8984713923231362, "z": -0.4747319726188406, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.594295', '2025-11-30 14:37:55.594295');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '-98', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 19.84072128546458, "y": -59.9067512483221, "z": 2.197278584816347, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.676065', '2025-11-30 14:38:16.676065');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '-168', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -0.4342999728697941, "y": -1.428694011360584, "z": -0.01927453056085839, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.682113', '2025-11-30 14:38:16.682113');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '-98', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 19.83764964837694, "y": -59.89951864402343, "z": 2.196993880104211, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.745912', '2025-11-30 14:38:16.745912');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '-31', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -31.77415559134214, "y": -134.2697106825341, "z": 97.14943796476571, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:18.579273', '2025-11-30 14:38:18.579273');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '799', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 10.06816544026612, "y": 16.69941200732556, "z": -0.06852925088433164, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:18.620938', '2025-11-30 14:38:18.620938');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-29T09:00:00+00:00:2025-11-29T09:00:00+00:00:1h', '10', '2025-11-29 09:00:00', '2025-11-29 09:00:00', '1h', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T09:00:00+00:00"}]}', '2025-12-06 09:17:06.015396', '2025-11-29 09:17:06.015396');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '-31', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -31.77176079188734, "y": -134.2539887010117, "z": 97.13807732897705, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:18.626843', '2025-11-30 14:38:18.626843');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '799', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 10.0715699585314, "y": 16.69756386721853, "z": -0.06858023485730638, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:18.810677', '2025-11-30 14:38:18.810677');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '90004920', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -1.558865190846869, "y": 0.949112282912185, "z": 0.01768999023000961, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.393884', '2025-12-02 02:56:27.393884');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '199', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -0.2058037383178722, "y": 0.2533331081899257, "z": 0.03957917231038729, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.495466', '2025-12-02 02:56:27.495466');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '-61', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -1.295460126459985, "y": 5.013084608675479, "z": -0.02315381088748521, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.209527', '2025-11-30 14:39:23.209527');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '899', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 29.87599363357575, "y": 0.3515921536885869, "z": -0.6957089265489543, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.267224', '2025-11-30 14:39:23.267224');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '10', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.316575', '2025-11-30 14:39:23.316575');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '136108', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -37.09455089973576, "y": -23.51658151921071, "z": 23.55722462749685, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:08.157124', '2025-11-30 14:38:08.157124');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '399', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 0.374757966699261, "y": 0.9123360803628093, "z": -0.00005712129846379271, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.622596', '2025-11-30 12:56:34.622596');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '90000030', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -19.51797596817005, "y": 27.4221983058919, "z": -9.891303109844431, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:40.953978', '2025-11-30 14:37:40.958726');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '136199', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 85.23178900496008, "y": 39.43176947266499, "z": -17.534385807078, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:48.60032', '2025-11-30 14:37:48.60032');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '50326340', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 45.32745042098446, "y": 7.251926117272752, "z": 19.12685311906256, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.831424', '2025-11-30 14:37:47.129478');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '606', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 9.521148692379327, "y": 0.05573540791663044, "z": -0.3763578725798229, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:51.049177', '2025-11-30 14:37:51.053002');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '136199', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 85.23990033008589, "y": 39.41717470669258, "z": -17.55031747376401, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:08.162711', '2025-11-30 14:38:08.162711');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '599', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -1.313560524475984, "y": 5.024073311753396, "z": 0.008519131993825644, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:12.186943', '2025-11-30 14:38:12.186943');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '136472', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -45.99477477316437, "y": -8.93932499233941, "z": 24.15890262024578, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.454239', '2025-11-30 14:38:16.454239');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '136108', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -37.09868104840605, "y": -23.5113160932932, "z": 23.55761925016266, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.499439', '2025-11-30 14:38:16.499439');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '301', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 0.6684676184309274, "y": 0.7323236707000645, "z": 0.0001334611496761288, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.561009', '2025-11-30 14:38:16.561009');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '199', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 0.3598969464195614, "y": -0.0555765738087485, "z": -0.03755141468080346, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.566826', '2025-11-30 14:38:16.566826');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '-98', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 19.84993606879281, "y": -59.92844870079168, "z": 2.19813268333096, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.596117', '2025-11-30 14:38:16.596117');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '-96', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 0.6136439832072582, "y": -0.3377662310180432, "z": -0.04004519246750897, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.611897', '2025-11-30 14:38:16.611897');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '301', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 0.7082177678626774, "y": 0.6964893457703861, "z": 0.0001597764227294872, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.630281', '2025-11-30 14:38:16.630281');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '699', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 9.527019501085618, "y": -0.03170959381344803, "z": -0.3786782071311084, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.677793', '2025-11-30 14:38:16.677793');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '-96', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 0.6152860082090704, "y": -0.3633045355310903, "z": -0.04049100550738605, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.701387', '2025-11-30 14:38:16.701387');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '999', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 19.08117359876619, "y": -29.70658939252579, "z": -2.33918383585793, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.710357', '2025-11-30 14:38:16.710357');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '799', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 10.05794963290555, "y": 16.70495238011713, "z": -0.06837589882930444, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.757083', '2025-11-30 14:38:16.757083');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '299', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -0.698565642163283, "y": -0.1745658229883267, "z": 0.03790884731537113, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:18.546414', '2025-11-30 14:38:18.546414');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '699', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 9.527887215467198, "y": -0.0484127109476196, "z": -0.3784210846727153, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:18.547112', '2025-11-30 14:38:18.547112');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '299', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -0.7103804377738023, "y": -0.1148747117063597, "z": 0.03941062101886859, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:18.671401', '2025-11-30 14:38:18.671401');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '-32', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 39.09643490844915, "y": -103.7002140380359, "z": -87.56557022086238, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:18.676419', '2025-11-30 14:38:18.676419');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '136108', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -37.09592770676184, "y": -23.51482642304868, "z": 23.55735622477014, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.201011', '2025-11-30 14:39:23.201011');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '301', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 0.681925520130067, "y": 0.7207436330336516, "z": 0.0001549942178804988, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.259241', '2025-11-30 14:39:23.259241');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '699', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 9.527312207793793, "y": -0.03727716778487328, "z": -0.3785927205304596, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.308077', '2025-11-30 14:39:23.308077');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '503', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -1.475376635782942, "y": 4.980121069103992, "z": 0.01202633974158392, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.440418', '2025-12-02 02:56:27.440418');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-02T00:00:00+00:00:2025-11-02T00:00:00+00:00:1d', '-170', '2025-11-02 00:00:00', '2025-11-02 00:00:00', '1d', '{"positions": [{"x": 0.7697369148547141, "y": 0.6405722205881116, "z": -0.0003341619672788889, "time": "2025-11-02T00:00:00+00:00"}]}', '2025-12-07 14:38:20.024418', '2025-11-30 14:38:20.024418');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '2000001', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 2.724314971996853, "y": 0.9167019112253775, "z": -0.4728694493893108, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.272595', '2025-11-30 16:40:15.272595');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '136108', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -37.08077783390541, "y": -23.53412996121338, "z": 23.55590555310632, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.385019', '2025-11-30 16:40:15.385019');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '136472', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -45.99294322944896, "y": -8.960743022237374, "z": 24.15569013220421, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.464959', '2025-11-30 16:40:15.464959');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '301', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 0.5285836047822671, "y": 0.831754643722901, "z": -0.0002718630162598258, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.558672', '2025-11-30 16:40:15.558672');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '-96', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 0.5717444108564447, "y": -0.2338584753322552, "z": -0.03619950314643836, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.622342', '2025-11-30 16:40:15.622342');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '699', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 9.523919435127034, "y": 0.0239586194664627, "z": -0.3795227947522005, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.676685', '2025-11-30 16:40:15.676685');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '299', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -0.6241362790695217, "y": -0.3622935833194268, "z": 0.03103520188398069, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.751429', '2025-11-30 16:40:15.751429');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '136199', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 85.22844681439206, "y": 39.4377770738075, "z": -17.52782521311856, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.429766', '2025-12-02 02:56:27.429766');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '2000001', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 2.689713496426954, "y": 1.001931775366626, "z": -0.4637968181462881, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.74021', '2025-11-29 09:07:51.508287');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '301', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 0.386669342718383, "y": 0.9081217791662314, "z": -0.0000295796596440789, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.926409', '2025-11-29 09:08:22.92914');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '299', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": -0.5093768460753537, "y": -0.5134787519759657, "z": 0.0223365566740769, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:23.010513', '2025-11-29 09:08:23.012086');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '136199', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 85.22940185706933, "y": 39.43606073510441, "z": -17.52969969792524, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.633963', '2025-11-30 12:56:34.633963');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '50326340', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 45.41254781142108, "y": 7.264605826349896, "z": 19.16409317927594, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:42.718293', '2025-11-30 14:37:40.930521');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '399', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 0.4696857322659519, "y": 0.8685483740675168, "z": -0.00005179874412093635, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:48.621442', '2025-11-30 14:37:48.621442');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '136199', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 85.23226635548325, "y": 39.43091114854892, "z": -17.53532301126295, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.856096', '2025-11-30 14:37:50.856096');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '599', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -1.424167572929343, "y": 4.999527805274392, "z": 0.01109572043719099, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.888694', '2025-11-30 14:37:50.888694');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '136472', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -45.99220794631497, "y": -8.969310021956403, "z": 24.15440376809996, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.938741', '2025-11-30 14:37:50.938741');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '499', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -0.2074627320825936, "y": -1.457962607281606, "z": -0.02546535784091332, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.954514', '2025-11-30 14:37:50.954514');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '899', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 29.87492138074911, "y": 0.4021167822126853, "z": -0.696724508331604, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.976067', '2025-11-30 14:37:50.976067');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '-98', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 19.89600712076827, "y": -60.03692787263848, "z": 2.202402823412746, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.989258', '2025-11-30 14:37:50.989258');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '-96', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 0.5362019073805531, "y": -0.184156448801296, "z": -0.033465744130298, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.035297', '2025-11-30 14:37:51.035297');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '-98', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 19.88372197061141, "y": -60.00800140911884, "z": 2.201264177134536, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.047231', '2025-11-30 14:37:51.047231');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '10', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.062132', '2025-11-30 14:37:51.062132');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '799', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 10.0068178153523, "y": 16.73256213256514, "z": -0.06761046305778232, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.088506', '2025-11-30 14:37:51.088506');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '299', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -0.580257013825793, "y": -0.4302233988483938, "z": 0.02757012725740267, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.129206', '2025-11-30 14:37:51.129206');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '799', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 10.02046197776583, "y": 16.7252144075036, "z": -0.0678147359588153, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.141542', '2025-11-30 14:37:51.141542');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '-31', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -31.79091871804837, "y": -134.3797647971755, "z": 97.22896175478286, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.143629', '2025-11-30 14:37:51.143629');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '90000030', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -19.51848122592799, "y": 27.42201771144644, "z": -9.89141377076388, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.52012', '2025-11-30 14:38:57.526565');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '2000001', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 2.713604462914913, "y": 0.943965061658203, "z": -0.4700332246315518, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.743399', '2025-11-30 14:38:59.743399');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '199', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 0.08309148703618138, "y": 0.2956665924058065, "z": 0.01654145624581529, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.871898', '2025-11-30 14:38:59.871898');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '999', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 19.12195878554571, "y": -29.69159151883777, "z": -2.352600659060612, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.992183', '2025-11-30 14:38:59.992183');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '-32', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 39.13285123519465, "y": -103.7811408394551, "z": -87.66365282276604, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:39:00.103707', '2025-11-30 14:39:00.103707');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '-61', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -1.465410425098376, "y": 4.978255160926095, "z": -0.02281909349612544, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.460328', '2025-12-02 02:56:27.460328');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '399', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 0.3841843609212387, "y": 0.90851680653224, "z": -0.00005658010670824833, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.780561', '2025-11-29 09:08:22.783413');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '899', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 29.8746102100218, "y": 0.4160624102478437, "z": -0.6970047749745725, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.93758', '2025-11-29 09:08:22.939996');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '-31', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": -31.79740421822396, "y": -134.4223453748965, "z": 97.25972957645492, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:23.017801', '2025-11-29 09:08:23.019293');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '503', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -1.467964742627345, "y": 4.991955570225142, "z": 0.01189453902124053, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.651414', '2025-11-30 12:56:34.651414');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '499', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -0.1208630516871398, "y": -1.460127633789938, "z": -0.02763430394603713, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.746194', '2025-11-30 12:56:34.746194');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '-98', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 19.91136309251586, "y": -60.07308460817089, "z": 2.203826071622773, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.828423', '2025-11-30 12:56:34.828423');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '10', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.922845', '2025-11-30 12:56:34.922845');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '-170', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 0.3761352111950655, "y": 0.923367177853507, "z": -0.002086281774892555, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:35.025326', '2025-11-30 12:56:35.025326');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '90004920', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -1.530449132919058, "y": 0.7607609442518215, "z": 0.02891577201454551, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:42.728354', '2025-11-30 14:37:42.734201');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '50326340', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 45.36999959617872, "y": 7.258266097817725, "z": 19.14547335654449, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:47.114629', '2025-11-30 14:37:44.904191');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '136472', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -45.99202388696852, "y": -8.971451752929894, "z": 24.15408205480039, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.904584', '2025-11-30 14:37:50.904584');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '-61', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -1.398398487281628, "y": 5.003751364993351, "z": -0.006929550755564899, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.928564', '2025-11-30 14:37:50.928564');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '136472', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -45.99275955168812, "y": -8.96288478351486, "z": 24.15536861453374, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.9637', '2025-11-30 14:37:50.9637');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '199', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 0.05000067685467555, "y": 0.30281881168171, "z": 0.02016102373037233, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.969851', '2025-11-30 14:37:50.969851');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '-96', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 0.5252561068853574, "y": -0.1709906450456553, "z": -0.032653273436607, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.003069', '2025-11-30 14:37:51.003069');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '899', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 29.87512876367503, "y": 0.3926430147193583, "z": -0.6965347836956494, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.025826', '2025-11-30 14:37:51.025826');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '-96', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 0.564014547168898, "y": -0.2218744177589281, "z": -0.03558880939363059, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.060516', '2025-11-30 14:37:51.060516');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '999', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 19.12468351562099, "y": -29.69057957551287, "z": -2.353489738652533, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.063013', '2025-11-30 14:37:51.063013');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '299', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -0.5681277904256524, "y": -0.4463955515550024, "z": 0.02664809328748715, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.100745', '2025-11-30 14:37:51.100745');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '10', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.10772', '2025-11-30 14:37:51.10772');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '299', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -0.6138802093830288, "y": -0.3797361881788587, "z": 0.03020379452651512, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.157386', '2025-11-30 14:37:51.157386');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '-32', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 39.13527897437372, "y": -103.7865359564104, "z": -87.67019159046085, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.15914', '2025-11-30 14:37:51.15914');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '606', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 9.518388792009464, "y": 0.05091105159652047, "z": -0.3763484282764603, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.855458', '2025-11-30 14:38:57.860118');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '599', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -1.475554284359788, "y": 4.987260085880706, "z": 0.01229641168812271, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.468823', '2025-12-02 02:56:27.468823');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '-96', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 0.4188992018848113, "y": -0.0704949819076734, "z": -0.02513587356897383, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.539025', '2025-12-02 02:56:27.539025');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '-31', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -31.80049725316054, "y": -134.4426530564201, "z": 97.27440339924588, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.610998', '2025-12-02 02:56:27.610998');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '136199', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 85.22968039147784, "y": 39.43556011847775, "z": -17.53024641823191, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.800961', '2025-11-29 09:08:22.803835');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '-98', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 19.90957158893657, "y": -60.06886639937147, "z": 2.203660029419189, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.947893', '2025-11-29 09:08:22.950496');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '-32', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 39.14842919975948, "y": -103.8157594992788, "z": -87.70560975880923, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:23.024772', '2025-11-29 09:08:23.026403');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '136108', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -37.06699566432902, "y": -23.55167382328573, "z": 23.55458083620591, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.673202', '2025-11-30 12:56:34.673202');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '199', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -0.1475583672474831, "y": 0.2820795471110056, "z": 0.03658616755224475, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.757644', '2025-11-30 12:56:34.757644');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '-96', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 0.4554400163419474, "y": -0.1006788286435745, "z": -0.02765890242708865, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.859256', '2025-11-30 12:56:34.859256');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '799', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 9.989754332098768, "y": 16.7417313582764, "z": -0.06735499508958341, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.949764', '2025-11-30 12:56:34.949764');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '90000030', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -19.51898634708924, "y": 27.42183691831556, "z": -9.891524363857807, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:42.750538', '2025-11-30 14:37:42.754849');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '90004920', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -1.512329843747602, "y": 0.6472081288086099, "z": 0.03563202171220246, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:44.935968', '2025-11-30 14:37:44.938972');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '399', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 0.5002295949753528, "y": 0.8517798554414678, "z": -0.0000506123823826951, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.865814', '2025-11-30 14:37:50.865814');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '503', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -1.421521634281945, "y": 4.995855483978561, "z": 0.01065043991808574, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.876264', '2025-11-30 14:37:50.876264');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '499', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -0.1930699324940242, "y": -1.458663327981637, "z": -0.02583297890391096, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.919887', '2025-11-30 14:37:50.919887');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '499', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -0.2361894079165761, "y": -1.456156524703454, "z": -0.02472308080672584, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.9702', '2025-11-30 14:37:50.9702');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '-168', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -0.1930474932042235, "y": -1.4586639004895, "z": -0.02583618196460349, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.018867', '2025-11-30 14:37:51.018867');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '699', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 9.521555048348024, "y": 0.06293093371341328, "z": -0.3801090698672618, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:51.020431', '2025-11-30 14:37:51.020431');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '-168', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -0.2361687979606413, "y": -1.456147221940566, "z": -0.0247247520587346, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.068089', '2025-11-30 14:37:51.068089');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '-31', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -31.79211605153006, "y": -134.387625822109, "z": 97.2346419811311, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.112414', '2025-11-30 14:37:51.112414');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '-31', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -31.7885240374322, "y": -134.3640427540344, "z": 97.21760128428863, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.165339', '2025-11-30 14:37:51.165339');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '50326340', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 45.3132671486982, "y": 7.249812734372524, "z": 19.12064628096043, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:53.798094', '2025-11-30 14:37:51.14925');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '90000030', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -19.52251837535163, "y": 27.42056580183122, "z": -9.892296616073333, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:53.832347', '2025-11-30 14:37:53.835125');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '90000030', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -19.51999617985502, "y": 27.42147473589365, "z": -9.891745346556437, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.712305', '2025-11-30 14:38:59.718622');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '136472', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -45.99239191017745, "y": -8.96716828338371, "z": 24.15472543248606, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.845955', '2025-11-30 14:38:59.845955');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '-96', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 0.5462810274361946, "y": -0.1970247860092713, "z": -0.03422412567375142, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.951897', '2025-11-30 14:38:59.951897');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '299', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -0.5919317042293849, "y": -0.4137142435446852, "z": 0.02847056464249096, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:39:00.076866', '2025-11-30 14:39:00.076866');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '399', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 0.5301580365577784, "y": 0.8339597077491055, "z": -0.00004987450689001476, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.302244', '2025-11-30 16:40:15.302244');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '499', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -0.2648290396141638, "y": -1.453813801493154, "z": -0.02397169218205751, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.489119', '2025-11-30 16:40:15.489119');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '-168', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -0.2648118703483788, "y": -1.453798997269536, "z": -0.0239713005973685, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.640554', '2025-11-30 16:40:15.640554');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '-31', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -31.78612933900325, "y": -134.3483207199252, "z": 97.2062407900927, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.769836', '2025-11-30 16:40:15.769836');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '136108', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": -37.06779987512868, "y": -23.55065055742598, "z": 23.55465826641466, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.820117', '2025-11-29 09:08:22.822596');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '-96', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 0.4650555868154942, "y": -0.1092653592537162, "z": -0.02833167764613886, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.958097', '2025-11-29 09:08:22.960089');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '599', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -1.460887029592331, "y": 4.990816974165709, "z": 0.01195346243588529, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.709049', '2025-11-30 12:56:34.709049');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '301', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 0.3772503289123047, "y": 0.9122917143984296, "z": -0.0000002814080061928934, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.791935', '2025-11-30 12:56:34.791935');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '999', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 19.14099195321239, "y": -29.68456985864229, "z": -2.358864487874888, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.907295', '2025-11-30 12:56:34.907295');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '-31', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -31.79810264832891, "y": -134.4269309792549, "z": 97.26304302377598, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.990209', '2025-11-30 12:56:34.990209');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '50326340', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 45.39836517945719, "y": 7.262492611473646, "z": 19.15788661774318, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:44.883251', '2025-11-30 14:37:42.730405');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '90000030', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -19.52100546693753, "y": 27.42111175849729, "z": -9.89196605790812, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:48.607457', '2025-11-30 14:37:48.610799');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '90004920', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -1.480075921947704, "y": 0.4571113848333946, "z": 0.0467748556509875, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.883437', '2025-11-30 14:37:50.886918');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '136108', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -37.07526606114687, "y": -23.54114805612314, "z": 23.55537634373731, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.894382', '2025-11-30 14:37:50.894382');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '136108', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -37.07940002734468, "y": -23.53588455359577, "z": 23.55577333541603, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.92282', '2025-11-30 14:37:50.92282');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '199', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 0.01640191016857523, "y": 0.3068958473678807, "z": 0.02357586929860155, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.933616', '2025-11-30 14:37:50.933616');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '301', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 0.4702525194611294, "y": 0.8659323214056425, "z": -0.0002589520521421286, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.995249', '2025-11-30 14:37:50.995249');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '301', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 0.5141868476550505, "y": 0.8405205516833065, "z": -0.0002843115152992565, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.019266', '2025-11-30 14:37:51.019266');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '999', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 19.12741231250974, "y": -29.68957017380515, "z": -2.354390487963447, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.031994', '2025-11-30 14:37:51.031994');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '-168', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -0.2074404260498339, "y": -1.457959778670128, "z": -0.02546828145482976, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.048899', '2025-11-30 14:37:51.048899');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '699', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 9.522589321662418, "y": 0.0462289249011336, "z": -0.3798588654907771, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.075444', '2025-11-30 14:37:51.075444');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '699', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 9.523592151094132, "y": 0.02952606170121896, "z": -0.3796069576666521, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.101102', '2025-11-30 14:37:51.101102');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '-32', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 39.137706711825, "y": -103.7919310729883, "z": -87.67673034913433, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.125929', '2025-11-30 14:37:51.125929');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:null:null:1d', '2000001', NULL, NULL, '1d', '{"positions": [{"x": 2.686734716275109, "y": 1.008906613592301, "z": -0.4630272434745797, "time": "2025-11-30T04:37:04.287387"}]}', '2025-12-07 04:37:37.801856', '2025-11-30 04:37:37.801856');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '399', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 0.4850321589754071, "y": 0.8602969936159423, "z": -0.00005115068898539234, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.753615', '2025-11-30 14:38:59.753615');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '136108', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -37.07664414102048, "y": -23.5393936010608, "z": 23.55550873073735, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.796244', '2025-11-30 14:38:59.796244');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '-61', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -1.404697622572961, "y": 5.001016020231993, "z": -0.01022229748746762, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.812023', '2025-11-30 14:38:59.812023');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '599', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -1.40945730213088, "y": 5.002938315396277, "z": 0.01075246799609951, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.827095', '2025-11-30 14:38:59.827095');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '499', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -0.2218363167119905, "y": -1.457126865065986, "z": -0.02509537840218871, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.859557', '2025-11-30 14:38:59.859557');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '301', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 0.485041022649549, "y": 0.8576062849549466, "z": -0.0002777817212584986, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.901564', '2025-11-30 14:38:59.901564');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '899', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 29.87505958733841, "y": 0.3958007371207722, "z": -0.6965979127867471, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.915343', '2025-11-30 14:38:59.915343');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '-98', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 19.88986458740691, "y": -60.02246476029504, "z": 2.201833505560346, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.933589', '2025-11-30 14:38:59.933589');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '-168', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -0.2218146256261786, "y": -1.45712071679399, "z": -0.02509778708495439, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.97351', '2025-11-30 14:38:59.97351');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '699', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 9.522927110313777, "y": 0.04066128302145718, "z": -0.3797750290214891, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:39:00.015669', '2025-11-30 14:39:00.015669');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '10', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:39:00.032476', '2025-11-30 14:39:00.032476');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '799', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 10.01364074497131, "y": 16.72888961345656, "z": -0.06771263422932533, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:39:00.062742', '2025-11-30 14:39:00.062742');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '-31', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -31.78972137999567, "y": -134.3719037744788, "z": 97.2232815225007, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:39:00.089423', '2025-11-30 14:39:00.089423');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '50326340', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 45.28490028263507, "y": 7.245585884493158, "z": 19.10823246620344, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:06.702599', '2025-11-30 14:39:05.19485');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '136472', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": -45.99110215594613, "y": -8.982160292550633, "z": 24.15247275451631, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.723146', '2025-11-30 12:56:34.723146');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '90004920', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -1.51846564812124, "y": 0.6851030797404132, "z": 0.03339533647504735, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:42.766996', '2025-11-30 14:37:44.886308');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '136108', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -37.07802212973417, "y": -23.5376391002138, "z": 23.55564106129502, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.913668', '2025-11-30 14:37:50.913668');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '599', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -1.416813735387104, "y": 5.001238344310823, "z": 0.01092410870219711, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.924074', '2025-11-30 14:37:50.924074');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '599', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -1.402097788191185, "y": 5.004627066591173, "z": 0.0105807839472982, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.941845', '2025-11-30 14:37:50.941845');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '136472', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -45.99257577861584, "y": -8.965026537232259, "z": 24.15504704796255, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.955555', '2025-11-30 14:37:50.955555');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '199', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 0.1153385210082521, "y": 0.2855113102756712, "z": 0.01275386193828016, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.985686', '2025-11-30 14:37:50.985686');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '899', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 29.87499046250308, "y": 0.3989587903505766, "z": -0.696661038483411, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.009596', '2025-11-30 14:37:51.009596');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '301', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 0.4996790103000436, "y": 0.8491359900618913, "z": -0.0002863311556945867, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.013017', '2025-11-30 14:37:51.013017');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '-98', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 19.89293586448431, "y": -60.02969634631916, "z": 2.20211816581029, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.022019', '2025-11-30 14:37:51.022019');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '699', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 9.522248016869248, "y": 0.05179647499764396, "z": -0.379942512101001, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.047397', '2025-11-30 14:37:51.047397');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '10', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.088286', '2025-11-30 14:37:51.088286');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '799', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 10.01022946992441, "y": 16.73072620683788, "z": -0.06766160805620568, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.115472', '2025-11-30 14:37:51.115472');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '90000030', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -19.52352629999628, "y": 27.42020083714972, "z": -9.892516648883785, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:06.728109', '2025-11-30 14:39:06.733585');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '90004920', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -1.444881498462249, "y": 0.266117242657873, "z": 0.05782407691487768, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:14.663311', '2025-11-30 14:39:14.668202');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '90000030', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -19.52554051596812, "y": 27.41946852386389, "z": -9.892955900041608, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.441972', '2025-11-30 14:39:20.448617');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '90004920', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -1.355167931399841, "y": -0.1556070778091879, "z": 0.08159185357109826, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:29.521734', '2025-11-30 14:39:29.526754');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '136199', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 85.24323802886337, "y": 39.41116309026974, "z": -17.55687707287094, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:44.96447', '2025-11-30 14:39:44.96447');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '-61', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": -1.447448855142979, "y": 4.984466781751049, "z": -0.02131400369738141, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.84019', '2025-11-29 09:08:22.843072');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '-168', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": -0.1293076557356094, "y": -1.460112952834215, "z": -0.02741679236136503, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.967978', '2025-11-29 09:08:22.9704');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '601', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 9.518580981019888, "y": 0.09043315442627213, "z": -0.380235578569484, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.504541', '2025-12-02 02:56:27.504541');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '699', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 9.519767308803582, "y": 0.09076264555627483, "z": -0.3805213650298412, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.567986', '2025-12-02 02:56:27.567986');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '899', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 29.87456878482194, "y": 0.4179045831151495, "z": -0.6970416189184039, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.809427', '2025-11-30 12:56:34.809427');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '699', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 9.520491445609775, "y": 0.07963048489072236, "z": -0.3803569789424512, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:34.914809', '2025-11-30 12:56:34.914809');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-30T00:00:00+00:00:2025-11-30T00:00:00+00:00:1d', '-32', '2025-11-30 00:00:00', '2025-11-30 00:00:00', '1d', '{"positions": [{"x": 39.1498453752356, "y": -103.8189066491583, "z": -87.70942400733009, "time": "2025-11-30T00:00:00+00:00"}]}', '2025-12-07 12:56:35.005297', '2025-11-30 12:56:35.005297');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '299', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": -0.4713570100706399, "y": -0.549154485487079, "z": 0.01965269059793039, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.601577', '2025-12-02 02:56:27.601577');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '90000030', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -19.51949133171181, "y": 27.42165592647132, "z": -9.891634889123242, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:44.917409', '2025-11-30 14:37:44.920886');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '90000030', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -19.52050089157789, "y": 27.42129334657047, "z": -9.891855736153012, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:48.593656', '2025-11-30 14:37:48.601393');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '2000001', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 2.720777385740113, "y": 0.9258007606533296, "z": -0.4719296919192213, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.857567', '2025-11-30 14:37:50.857567');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '399', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 0.5152731579527589, "y": 0.8429997761217524, "z": -0.0000501875153324075, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.876813', '2025-11-30 14:37:50.876813');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '499', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -0.2505207358986107, "y": -1.455052021293521, "z": -0.02434850530672322, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.978053', '2025-11-30 14:37:50.978053');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '-98', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 19.8867932894705, "y": -60.01523311456464, "z": 2.201548842666936, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.039954', '2025-11-30 14:37:51.039954');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '-168', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -0.2505016459929139, "y": -1.45503980875514, "z": -0.0243492352238324, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.074131', '2025-11-30 14:37:51.074131');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '799', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 10.01705152707827, "y": 16.72705235899237, "z": -0.06776367488476455, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.132971', '2025-11-30 14:37:51.132971');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '-31', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -31.78732669041639, "y": -134.3561817358496, "z": 97.21192104015107, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.173401', '2025-11-30 14:37:51.173401');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '50326340', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 45.29908376928251, "y": 7.247699323445008, "z": 19.11443939668202, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.553979', '2025-11-30 14:37:51.164228');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '301', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 0.344294061929872, "y": 0.9258242564338938, "z": 0.00008803264971339806, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.513645', '2025-12-02 02:56:27.513645');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '503', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": -1.304564264896491, "y": 5.031382888387734, "z": 0.008252453516916758, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:12.174549', '2025-11-30 14:38:12.174549');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '599', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": -1.456606785126546, "y": 4.991846219279893, "z": 0.01185340746481023, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.855942', '2025-11-29 09:08:22.858445');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '999', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 19.13940379113227, "y": -29.68516067370448, "z": -2.358347062545148, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.97748', '2025-11-29 09:08:22.979729');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '50326340', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 45.35581664460788, "y": 7.256152798990681, "z": 19.13926665683148, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:48.575414', '2025-11-30 14:37:44.906177');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '-61', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -1.430988307801712, "y": 4.990503860901064, "z": -0.01859797717741123, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:48.621085', '2025-11-30 14:37:48.621085');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '2000001', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 2.702601056945195, "y": 0.971126284560654, "z": -0.4671462629291652, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.564467', '2025-11-30 14:38:57.564467');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '10', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.843913', '2025-11-30 14:38:57.843913');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '601', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 9.52414174168671, "y": 0.0406274169056107, "z": -0.379855502014991, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.887906', '2025-11-30 14:38:59.887906');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '90004920', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -1.459339610124723, "y": 0.3426069683092258, "z": 0.05341811792477733, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:06.742426', '2025-11-30 14:39:06.746873');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '50326340', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 45.21398123772572, "y": 7.235018269462964, "z": 19.07719711993328, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.4245', '2025-11-30 14:39:14.632714');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '503', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -1.342631867090617, "y": 5.024902553666383, "z": 0.009486448332830001, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.487429', '2025-11-30 14:39:20.487429');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '50326340', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 45.18561286612579, "y": 7.230791027299179, "z": 19.0647826571249, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.096841', '2025-11-30 14:39:20.747054');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '-170', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 0.6454783015033889, "y": 0.7632641880486296, "z": -0.001063786731050119, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:23.166146', '2025-11-30 14:39:23.166146');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '136108', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -37.07388789005471, "y": -23.54290246537957, "z": 23.5552439002897, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.855605', '2025-11-30 14:37:50.855605');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '90000030', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -19.52201420877783, "y": 27.4207479861169, "z": -9.892186497873412, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.86753', '2025-11-30 14:37:50.871526');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '199', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -0.05095553929571318, "y": 0.3057880571237405, "z": 0.02966332616954951, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.906159', '2025-11-30 14:37:50.906159');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '899', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 29.8747817900636, "y": 0.4084316111299547, "z": -0.6968520626477959, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.94851', '2025-11-30 14:37:50.94851');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '601', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 9.523703601179488, "y": 0.04660996167484008, "z": -0.3801618083435357, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.983206', '2025-11-30 14:37:50.983206');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '-96', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 0.5555385938357499, "y": -0.209596978783959, "z": -0.03493103965176798, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.052729', '2025-11-30 14:37:51.052729');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '-170', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 0.4557848594624886, "y": 0.8874773110722534, "z": -0.001853170570565018, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.138323', '2025-11-30 14:37:51.138323');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '299', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -0.6031424539406429, "y": -0.3968808340630078, "z": 0.02934868747670905, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.148325', '2025-11-30 14:37:51.148325');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '601', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 9.524126520861271, "y": 0.01180998257251081, "z": -0.3787591225837319, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.694612', '2025-11-30 14:37:55.694612');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '-170', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 0.5758781438715921, "y": 0.816083148813899, "z": -0.001394510656927728, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.847411', '2025-11-30 14:37:55.847411');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '90004920', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -1.414327612600759, "y": 0.1128662846233766, "z": 0.06656844370380074, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:05.283473', '2025-11-30 14:38:05.286399');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '90004920', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -1.327482198347096, "y": -0.2704846690194565, "z": 0.08789586552393833, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:44.938863', '2025-11-30 14:39:44.942156');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '606', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 9.53712177168984, "y": -0.08495515627587777, "z": -0.3797993026907895, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.625645', '2025-11-30 14:39:45.631638');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '399', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": 0.7432142793014049, "y": 0.6567754554578937, "z": -0.00004454742317439193, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.555829', '2025-11-30 14:38:16.555829');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-05T00:00:00+00:00:2025-11-05T00:00:00+00:00:1d', '503', '2025-11-05 00:00:00', '2025-11-05 00:00:00', '1d', '{"positions": [{"x": -1.269460381867294, "y": 5.030876332277813, "z": 0.007729377745535746, "time": "2025-11-05T00:00:00+00:00"}]}', '2025-12-07 14:38:16.591044', '2025-11-30 14:38:16.591044');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '136472', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": -45.99120981453179, "y": -8.980910972935506, "z": 24.15266056923574, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.875315', '2025-11-29 09:08:22.877826');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '699', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 9.520700424499585, "y": 0.07638351886303993, "z": -0.3803089277709502, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.985934', '2025-11-29 09:08:22.987596');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '503', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -1.43215979401428, "y": 4.998540768526858, "z": 0.01163004394868428, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:44.936854', '2025-11-30 14:37:44.936854');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '90004920', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -1.499753499381447, "y": 0.5712903686479494, "z": 0.04009804471087079, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:48.615321', '2025-11-30 14:37:48.620308');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '-170', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": 0.4867198770616289, "y": 0.871205359680405, "z": -0.001747771705388003, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:39:00.118208', '2025-11-30 14:39:00.118208');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '50326340', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 45.27071668865945, "y": 7.243472417520624, "z": 19.10202548950027, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:08.758614', '2025-11-30 14:39:06.713505');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '90004920', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -1.422178294114423, "y": 0.1512051611148031, "z": 0.06439171612462329, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.466689', '2025-11-30 14:39:20.470998');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '606', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 9.529020411765025, "y": -0.02744286956300729, "z": -0.3755650879180835, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.75411', '2025-11-30 14:39:20.758173');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '-98', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 19.91750533773655, "y": -60.08754688368212, "z": 2.204395352321644, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.530626', '2025-12-02 02:56:27.530626');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '799', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 9.98292598776316, "y": 16.74539427880871, "z": -0.06725313160042867, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.593164', '2025-12-02 02:56:27.593164');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '599', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -1.394735965185506, "y": 5.006305948632727, "z": 0.010409092229994, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.950166', '2025-11-30 14:37:50.950166');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '601', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 9.524268725029764, "y": 0.01729933470531698, "z": -0.3788367494638588, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.040179', '2025-11-30 14:37:51.040179');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '606', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 9.516152532301714, "y": 0.04705948466899863, "z": -0.3768929784429918, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:51.07575', '2025-11-30 14:37:51.080177');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '999', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 19.11924320572031, "y": -29.69259682998896, "z": -2.351717401195851, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.081466', '2025-11-30 14:37:51.081466');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '-170', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 0.4713230833617558, "y": 0.8794758060978942, "z": -0.001801298315072743, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.174458', '2025-11-30 14:37:51.174458');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '-32', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 39.13042349422671, "y": -103.775745722137, "z": -87.65711404604427, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.180616', '2025-11-30 14:37:51.180616');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '90000030', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -19.52654680751566, "y": 27.41910117551233, "z": -9.893175118348541, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:05.264668', '2025-11-30 14:38:05.271192');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '-170', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 0.6849555556330725, "y": 0.7287458899518637, "z": -0.0008526615040159501, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.369614', '2025-11-30 14:39:23.369614');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '90000030', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -19.53106838460336, "y": 27.41743827738885, "z": -9.89415824059996, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:35.086098', '2025-11-30 14:39:35.089951');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-12-02T00:00:00+00:00:2025-12-02T00:00:00+00:00:1d', '-170', '2025-12-02 00:00:00', '2025-12-02 00:00:00', '1d', '{"positions": [{"x": 0.3434499766418141, "y": 0.9357603878522471, "z": -0.002166561819015677, "time": "2025-12-02T00:00:00+00:00"}]}', '2025-12-09 02:56:27.628557', '2025-12-02 02:56:27.628557');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '503', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -1.291846452779878, "y": 5.035841604244465, "z": 0.008269165603794404, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.480731', '2025-11-30 14:38:16.480731');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '601', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 9.527286765353978, "y": -0.03066547318557743, "z": -0.379272116382263, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:16.539135', '2025-11-30 14:38:16.539135');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '601', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 9.524403555063541, "y": 0.02294518876889308, "z": -0.3790008931225243, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.534746', '2025-11-30 16:40:15.534746');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '601', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 9.529084098653955, "y": -0.04827454720151603, "z": -0.3785862391941719, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.612166', '2025-11-30 14:38:16.612166');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '499', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": -0.129305002132836, "y": -1.460132815045806, "z": -0.02742740118453293, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.89181', '2025-11-29 09:08:22.894579');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '10', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.993425', '2025-11-29 09:08:22.995423');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '399', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 0.4541952578466596, "y": 0.876531320058942, "z": -0.00005254753244269918, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:44.936208', '2025-11-30 14:37:44.936208');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '2000001', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 2.709969173189701, "y": 0.9530302820549754, "z": -0.4690765307601552, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:48.598854', '2025-11-30 14:37:48.598854');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '90004920', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -1.493306163551765, "y": 0.533269695840552, "z": 0.0423268817719061, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:48.627149', '2025-11-30 14:37:48.631214');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '503', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -1.39328880584109, "y": 5.013313921467444, "z": 0.01069765471002117, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.908418', '2025-11-30 14:37:50.908418');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '899', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 29.87526572929165, "y": 0.3863283018782552, "z": -0.6964074683772483, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.578913', '2025-11-30 16:40:15.578913');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '-170', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 0.6977105025611996, "y": 0.7167891145427182, "z": -0.0007805372187568476, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:18.868383', '2025-11-30 14:38:18.868383');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '601', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 9.522344277000519, "y": 0.05834437285651362, "z": -0.3806071025110585, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.715215', '2025-11-30 14:38:57.715215');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '10', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.694554', '2025-11-30 16:40:15.694554');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '699', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 9.523261372948996, "y": 0.0350936373865583, "z": -0.3796910462246152, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:51.093743', '2025-11-30 14:37:51.093743');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '606', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 9.5238213692041, "y": 0.0257055433927676, "z": -0.3831685529015291, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.164796', '2025-11-30 14:37:51.16785');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '90004920', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -1.473286071290313, "y": 0.4189769450533619, "z": 0.04899341225705157, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.579833', '2025-11-30 14:37:55.583094');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '503', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -1.369191513369035, "y": 5.006947849945344, "z": 0.0094373420813815, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.642281', '2025-11-30 14:37:55.642281');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '-170', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": 0.4401098190838136, "y": 0.8952074074947831, "z": -0.001903346838806535, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.926782', '2025-11-30 14:38:57.926782');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '2000001', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 2.738138953128643, "y": 0.8801978835021378, "z": -0.4765717885323642, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:08.783595', '2025-11-30 14:39:08.783595');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '503', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -1.364999999246882, "y": 5.013749795642938, "z": 0.009417161578971203, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:14.6623', '2025-11-30 14:39:14.6623');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '503', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -1.321435852164525, "y": 5.019133898239305, "z": 0.008893928117671354, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.520459', '2025-11-30 14:39:20.520459');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '601', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 9.525119996841301, "y": -0.01431500987576596, "z": -0.3792376026428944, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.589367', '2025-11-30 14:39:20.589367');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '606', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 9.533050024705688, "y": -0.01258260815856501, "z": -0.3781178069908417, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.718441', '2025-11-30 14:39:20.722678');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '90004920', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -1.406330932648269, "y": 0.07451579859112169, "z": 0.06873829857575912, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.144505', '2025-11-30 14:39:23.148478');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '2000001', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 2.779446722487429, "y": 0.760435947800324, "z": -0.487972982737863, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:35.065666', '2025-11-30 14:39:35.065666');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '-61', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -1.229016712468862, "y": 5.029177003377225, "z": -0.02844120230526732, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.015162', '2025-11-30 14:39:45.015162');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '136199', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 85.234175492098, "y": 39.42747761247371, "z": -17.53907176905182, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.328482', '2025-11-30 16:40:15.328482');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '199', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 0.1760453381910405, "y": 0.2567180573626401, "z": 0.004832812247135329, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.50959', '2025-11-30 16:40:15.50959');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '136472', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": -45.99532238230933, "y": -8.932899434899005, "z": 24.15986541361072, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:16.565109', '2025-11-30 14:38:16.565109');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '601', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 9.52935147001537, "y": -0.05426366882424592, "z": -0.3782678361418859, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.665959', '2025-11-30 14:38:16.665959');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-26T00:00:00+00:00:2025-11-26T00:00:00+00:00:1d', '503', '2025-11-26 00:00:00', '2025-11-26 00:00:00', '1d', '{"positions": [{"x": -1.425350270313618, "y": 4.994207910172162, "z": 0.01121908937485147, "time": "2025-11-26T00:00:00+00:00"}]}', '2025-12-07 14:38:57.617585', '2025-11-30 14:38:57.617585');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-23T00:00:00+00:00:2025-11-23T00:00:00+00:00:1d', '503', '2025-11-23 00:00:00', '2025-11-23 00:00:00', '1d', '{"positions": [{"x": -1.41662132994797, "y": 5.003112494093941, "z": 0.01065549993369801, "time": "2025-11-23T00:00:00+00:00"}]}', '2025-12-07 14:38:59.781854', '2025-11-30 14:38:59.781854');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '199', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": -0.1294959366599915, "y": 0.2886262809568472, "z": 0.0354645063016039, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:22.907641', '2025-11-29 09:08:22.910565');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-29T10:00:00:2025-11-29T10:00:00:1d', '799', '2025-11-29 10:00:00', '2025-11-29 10:00:00', '1d', '{"positions": [{"x": 9.991745574513462, "y": 16.74066249986763, "z": -0.06738475515964829, "time": "2025-11-29T10:00:00"}]}', '2025-12-06 09:08:23.00244', '2025-11-29 09:08:23.004543');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '-61', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -1.41766507433102, "y": 4.995674574739867, "z": -0.01515757624334511, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.871409', '2025-11-30 14:37:50.871409');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '136199', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 85.23369824788233, "y": 39.42833603245084, "z": -17.53813458845789, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.892809', '2025-11-30 14:37:50.892809');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '199', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 0.1464216804627782, "y": 0.2724735587466777, "z": 0.008837455252109664, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.993024', '2025-11-30 14:37:50.993024');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '299', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -0.5425450964677115, "y": -0.4776792586923725, "z": 0.02474218748642042, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:51.080098', '2025-11-30 14:37:51.080098');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '999', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 19.11653358147217, "y": -29.69359208459163, "z": -2.350828904314857, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.088063', '2025-11-30 14:37:51.088063');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '-168', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -0.2790981703884557, "y": -1.452425310878611, "z": -0.02359101676143428, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.10895', '2025-11-30 14:37:51.10895');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '-32', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 39.12799575141083, "y": -103.7703506044633, "z": -87.65057526028947, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:53.823629', '2025-11-30 14:37:53.823629');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '606', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 9.530304581888961, "y": 0.01229906228639648, "z": -0.3824098727944052, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.790574', '2025-11-30 14:37:55.792615');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '90000030', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -19.52403005812498, "y": 27.42001805679143, "z": -9.892626563485972, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:08.788931', '2025-11-30 14:39:08.794769');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '999', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 19.11382129154279, "y": -29.69458266661828, "z": -2.349928771498209, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.658181', '2025-11-30 16:40:15.658181');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '-32', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 39.12556800669115, "y": -103.764955486434, "z": -87.64403646549522, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.789559', '2025-11-30 16:40:15.789559');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '90000030', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -19.52453368015363, "y": 27.41983507777983, "z": -9.892736410214777, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:14.644085', '2025-11-30 14:39:14.650039');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '503', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -1.317953092763885, "y": 5.016034724080789, "z": 0.008487108089350189, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.526515', '2025-11-30 14:39:20.526515');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '601', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 9.524603623934071, "y": -0.009106092850349263, "z": -0.3791084795442762, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.586005', '2025-11-30 14:39:20.586005');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '601', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 9.525773871626708, "y": -0.01962165600277134, "z": -0.3793231535320358, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.622281', '2025-11-30 14:39:20.622281');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '606', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 9.532457980168848, "y": 0.004269358012292659, "z": -0.3812384660446629, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.65241', '2025-11-30 14:39:20.655646');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '-170', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 0.5901597012223107, "y": 0.8060058285090989, "z": -0.001330754590080459, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.724159', '2025-11-30 14:39:20.724159');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '503', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -1.313111119079036, "y": 5.023883027271488, "z": 0.008180246379868122, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.192069', '2025-11-30 14:39:23.192069');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '2000001', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 2.717207208299524, "y": 0.9348885159912989, "z": -0.4709842810200907, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:48.633063', '2025-11-30 14:37:48.633063');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:null:null:1d', '399', NULL, NULL, '1d', '{"positions": [{"x": 0.3716397709916897, "y": 0.9135750240825097, "z": -0.00005729589435300106, "time": "2025-11-30T04:37:06.337396"}]}', '2025-12-07 04:37:37.836249', '2025-11-30 04:37:37.836249');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '90004920', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -1.452176178199202, "y": 0.304375838803135, "z": 0.05562361162341203, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:08.804683', '2025-11-30 14:39:08.81002');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '599', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": -1.387371070782575, "y": 5.007974325130299, "z": 0.01023738287935172, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.433984', '2025-11-30 16:40:15.433984');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '799', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 10.02387199069722, "y": 16.72337579811799, "z": -0.06786570153534668, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.733322', '2025-11-30 16:40:15.733322');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '399', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 0.5448795002942614, "y": 0.8246627327663761, "z": -0.00004966664264463072, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.915191', '2025-11-30 14:37:50.915191');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '136199', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 85.23465270960021, "y": 39.42661916852716, "z": -17.54000894373411, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.928243', '2025-11-30 14:37:50.928243');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '136108', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -37.08215554946525, "y": -23.53237532306739, "z": 23.55603771437193, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.956125', '2025-11-30 14:37:50.956125');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '-61', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -1.378139736147734, "y": 5.005968752686201, "z": 0.007438904375627904, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.971431', '2025-11-30 14:37:50.971431');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '599', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -1.380002431912445, "y": 5.009632586127569, "z": 0.010065682941693, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.985009', '2025-11-30 14:37:50.985009');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '136472', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -45.99312681194851, "y": -8.958601253399733, "z": 24.15601160097864, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.999381', '2025-11-30 14:37:50.999381');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '499', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -0.2791130668568854, "y": -1.452442323343522, "z": -0.0235926817343714, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.013225', '2025-11-30 14:37:51.013225');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '199', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 0.2039455911753512, "y": 0.2384473952807514, "z": 0.0007806940544314889, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.026461', '2025-11-30 14:37:51.026461');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '899', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 29.8751976045219, "y": 0.3894856564167609, "z": -0.6964712991999211, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.032905', '2025-11-30 14:37:51.032905');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '301', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 0.5428863687786563, "y": 0.8228288233183914, "z": -0.0002495436834880838, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.054111', '2025-11-30 14:37:51.054111');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '899', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 29.87533315885626, "y": 0.3831705714979188, "z": -0.696343651890125, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.069088', '2025-11-30 14:37:51.069088');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '-98', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 19.87757926988833, "y": -59.99353781901088, "z": 2.200694838171879, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.081892', '2025-11-30 14:37:51.081892');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '-96', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 0.5787599156018625, "y": -0.2455504436779811, "z": -0.03676496924833183, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.094183', '2025-11-30 14:37:51.094183');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '606', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": 9.51480273124439, "y": 0.04390182158348852, "z": -0.3778838100972986, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:51.102223', '2025-11-30 14:37:51.105959');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '10', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.114083', '2025-11-30 14:37:51.114083');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '999', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 19.11109998532688, "y": -29.69557795749171, "z": -2.349020974669759, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.121038', '2025-11-30 14:37:51.121038');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '699', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 9.52424333230577, "y": 0.01839142859087809, "z": -0.3794386281778517, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.133582', '2025-11-30 14:37:51.133582');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '10', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.149173', '2025-11-30 14:37:51.149173');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '799', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 10.02728154093738, "y": 16.72153651376569, "z": -0.06791673368358792, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:51.180058', '2025-11-30 14:37:51.180058');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '299', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -0.6339023413162125, "y": -0.3445665466058903, "z": 0.03184224354855599, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:53.832875', '2025-11-30 14:37:53.832875');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '-31', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -31.78493198324333, "y": -134.340459706256, "z": 97.20056053411834, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:55.578922', '2025-11-30 14:37:55.578922');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '-32', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 39.1231402600164, "y": -103.7595603680434, "z": -87.63749766165503, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:55.593489', '2025-11-30 14:37:55.593489');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-24T00:00:00+00:00:2025-11-24T00:00:00+00:00:1d', '-61', '2025-11-24 00:00:00', '2025-11-24 00:00:00', '1d', '{"positions": [{"x": -1.411129029783052, "y": 4.998323281808888, "z": -0.01291620678543548, "time": "2025-11-24T00:00:00+00:00"}]}', '2025-12-07 14:37:50.911231', '2025-11-30 14:37:50.911231');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '601', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 9.521527533073785, "y": 0.06400620628813719, "z": -0.3807041845197119, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.921012', '2025-11-30 14:37:50.921012');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '601', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 9.52309036375567, "y": 0.05253371599303575, "z": -0.3804213282932281, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.946277', '2025-11-30 14:37:50.946277');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '-170', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 0.424302616794732, "y": 0.9026637085849555, "z": -0.001951784957966506, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:51.119933', '2025-11-30 14:37:51.119933');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '2000001', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 2.691305410937906, "y": 0.9981824579226323, "z": -0.4642087840663924, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.194538', '2025-11-29 09:29:37.194538');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '599', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": -1.455689535935649, "y": 4.992066276004009, "z": 0.01183196374513975, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.114812', '2025-11-29 07:04:49.114812');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '10', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.605005', '2025-11-29 09:33:48.605005');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '-98', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 19.9091876944065, "y": -60.0679624948371, "z": 2.203624448829427, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.167684', '2025-11-29 07:04:49.167684');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '399', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 0.5594329088642037, "y": 0.8151120578397519, "z": -0.00004955231356624731, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.606588', '2025-11-30 14:37:55.606588');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '999', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 19.13906388883634, "y": -29.68528703154565, "z": -2.358236543509062, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.19394', '2025-11-29 07:04:49.19394');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '136199', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 85.23560706428864, "y": 39.42490220876687, "z": -17.54188327534155, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.634089', '2025-11-30 14:37:55.634089');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '799', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 9.992172255409104, "y": 16.74043342745887, "z": -0.06739113499501306, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.219317', '2025-11-29 07:04:49.219317');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '499', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -0.2933715743389867, "y": -1.450938056098131, "z": -0.02321151428120386, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.676533', '2025-11-30 14:37:55.676533');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '-32', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 39.14812573352302, "y": -103.8150851099927, "z": -87.70479241944186, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.243647', '2025-11-29 07:04:49.243647');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '199', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 0.2537087412421609, "y": 0.1953140206244628, "z": -0.007308517340090589, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.698325', '2025-11-30 14:37:55.698325');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '-168', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -0.2933592455128781, "y": -1.450919274520366, "z": -0.02320845614408759, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.741869', '2025-11-30 14:37:55.741869');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '999', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 19.10564316138497, "y": -29.69759387668083, "z": -2.347222747632194, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.762253', '2025-11-30 14:37:55.762253');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '-31', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -31.78373462318179, "y": -134.3325986948317, "z": 97.1948802722326, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.806839', '2025-11-30 14:37:55.806839');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '-32', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 39.11828476062387, "y": -103.7487701301328, "z": -87.62442002681168, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.837699', '2025-11-30 14:37:55.837699');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '50326340', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 45.24234917836473, "y": 7.239245399524945, "z": 19.0896113973197, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:13.256402', '2025-11-30 14:39:08.772902');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '599', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -1.350499847838176, "y": 5.016155402303933, "z": 0.00937849728240825, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.494523', '2025-11-30 14:39:20.494523');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '899', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 29.87553472392026, "y": 0.3736965872542014, "z": -0.6961538361174195, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.556793', '2025-11-30 14:39:20.556793');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '-98', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 19.86529361505614, "y": -59.96460992117733, "z": 2.19955612878337, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.594429', '2025-11-30 14:39:20.594429');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '601', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 9.526517165003405, "y": -0.02506491397332182, "z": -0.3793400240072505, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.621103', '2025-11-30 14:39:20.621103');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '10', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.636291', '2025-11-30 14:39:20.636291');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '799', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 10.04091602828758, "y": 16.71417252882209, "z": -0.06812081005880277, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.691213', '2025-11-30 14:39:20.691213');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '-170', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 0.6042646395668508, "y": 0.795682089833207, "z": -0.00126574689525655, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.745841', '2025-11-30 14:39:20.745841');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '90000030', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -19.52302240574715, "y": 27.42038341883602, "z": -9.892406666411594, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.582302', '2025-11-30 14:37:55.586091');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '399', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 0.5738137207892515, "y": 0.8053110068557234, "z": -0.00004951535168192831, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.624764', '2025-11-30 14:37:55.624764');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '-61', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -1.368409733371093, "y": 5.004429420323785, "z": 0.001138115573039317, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.651299', '2025-11-30 14:37:55.651299');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '-61', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -1.359534714898262, "y": 5.004319929833888, "z": -0.003476215114963798, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.660055', '2025-11-30 14:37:55.660055');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '199', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 0.2298955889845707, "y": 0.2178944338250328, "z": -0.003279062723315422, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.685055', '2025-11-30 14:37:55.685055');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '499', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -0.3076033277682061, "y": -1.449301480051983, "z": -0.02282823015071586, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.688792', '2025-11-30 14:37:55.688792');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '301', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 0.557109597971929, "y": 0.8137299312495498, "z": -0.0002183099356290012, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.704196', '2025-11-30 14:37:55.704196');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '899', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 29.87540029400838, "y": 0.3800124603898609, "z": -0.6962801876609463, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.713745', '2025-11-30 14:37:55.713745');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '899', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 29.87546749912285, "y": 0.3768543437587473, "z": -0.6962170398377757, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.726283', '2025-11-30 14:37:55.726283');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '999', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 19.10837124224095, "y": -29.6965829686068, "z": -2.348116303571256, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.751343', '2025-11-30 14:37:55.751343');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '-168', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -0.3075937966818962, "y": -1.449281413100945, "z": -0.02282369420435279, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.753441', '2025-11-30 14:37:55.753441');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '136199', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 85.22974007626321, "y": 39.43545284243591, "z": -17.53036357232317, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.087397', '2025-11-29 07:04:49.087397');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '699', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 9.524563982394064, "y": 0.01282448814841469, "z": -0.3793544703245792, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.759993', '2025-11-30 14:37:55.759993');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '199', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": -0.1255711795028115, "y": 0.2899131973294495, "z": 0.03520969965690823, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.139991', '2025-11-29 07:04:49.139991');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '10', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.768641', '2025-11-30 14:37:55.768641');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '10', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.781286', '2025-11-30 14:37:55.781286');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '-32', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 39.12071251134064, "y": -103.7541652492809, "z": -87.63095884876253, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.827236', '2025-11-30 14:37:55.827236');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '-31', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -31.78253725885787, "y": -134.3247376856393, "z": 97.18920000443993, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.829607', '2025-11-30 14:37:55.829607');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '50326340', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 45.19979710583284, "y": 7.232904662397899, "z": 19.07098991172067, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:05.245362', '2025-11-30 14:38:03.343656');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '136199', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 85.23608420140208, "y": 39.42404369298067, "z": -17.5428204322564, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:14.641651', '2025-11-30 14:39:14.641651');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '399', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 0.6020399296372148, "y": 0.7849716119349482, "z": -0.00004958860457584941, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:14.658758', '2025-11-30 14:39:14.658758');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '136472', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -45.99367698829723, "y": -8.952175901462939, "z": 24.15697571396973, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.485529', '2025-11-30 14:39:20.485529');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '199', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 0.2752398379279164, "y": 0.1709746553569497, "z": -0.01127240875593036, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.515117', '2025-11-30 14:39:20.515117');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '-96', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 0.5957908318895393, "y": -0.2788846775093787, "z": -0.03820575960957271, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.583815', '2025-11-30 14:39:20.583815');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '999', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 19.1029231432284, "y": -29.69860142782332, "z": -2.346338369990811, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.608765', '2025-11-30 14:39:20.608765');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '299', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -0.6601829681083476, "y": -0.2898176459919987, "z": 0.03411079486848507, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.680308', '2025-11-30 14:39:20.680308');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '-32', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 39.11585700783215, "y": -103.7433750105832, "z": -87.61788119579676, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.710684', '2025-11-30 14:39:20.710684');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '503', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": -1.423019786822389, "y": 4.992480095412201, "z": 0.01084316845664216, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:48.622686', '2025-11-30 14:37:48.622686');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '-170', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 0.5019706751706267, "y": 0.862668517527057, "z": -0.001692635018735657, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:53.832631', '2025-11-30 14:37:53.832631');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '90004920', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -1.466375112253412, "y": 0.3808081068016945, "z": 0.0512079402875493, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.597391', '2025-11-30 14:37:55.599903');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '136199', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 85.23512990034358, "y": 39.42576070062062, "z": -17.54094611249913, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.62093', '2025-11-30 14:37:55.62093');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '599', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -1.372631076670907, "y": 5.011279465133757, "z": 0.009893930346540689, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.659761', '2025-11-30 14:37:55.659761');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '601', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 9.524042316424763, "y": 0.006463611959172453, "z": -0.3787655301559318, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.707377', '2025-11-30 14:37:55.707377');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '399', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 0.3908932353881945, "y": 0.9057303217102626, "z": -0.00005618562911478604, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.27309', '2025-11-29 09:29:37.27309');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '136472', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": -45.99128669356773, "y": -8.980018600148176, "z": 24.15279471241494, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.337709', '2025-11-29 09:29:37.337709');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '-98', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 19.87450788791805, "y": -59.98630593430002, "z": 2.20041016475117, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.724096', '2025-11-30 14:37:55.724096');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '799', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 10.03069072518602, "y": 16.7196965408613, "z": -0.06796777958712427, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.78809', '2025-11-30 14:37:55.78809');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '503', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": -1.316650310146096, "y": 5.017630919151765, "z": 0.008228433256282485, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:08.142274', '2025-11-30 14:38:08.142274');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '503', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": -1.278780875187705, "y": 5.035145546182862, "z": 0.008094391727211018, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.538789', '2025-11-30 14:38:16.538789');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '50326340', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 45.25653298726468, "y": 7.241358922530608, "z": 19.09581846654755, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:14.611219', '2025-11-30 14:39:08.772775');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '136108', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -37.08766550247658, "y": -23.52535631272637, "z": 23.55656579530124, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.466411', '2025-11-30 14:39:20.466411');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '503', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -1.329936052116752, "y": 5.023535079649458, "z": 0.009278275220488562, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.492853', '2025-11-30 14:39:20.492853');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '301', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 0.5993952380557941, "y": 0.7852176911700031, "z": -0.00008604612205788743, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.565687', '2025-11-30 14:39:20.565687');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '699', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 9.525507421196156, "y": -0.003875257041347746, "z": -0.3791019136577699, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.649822', '2025-11-30 14:39:20.649822');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '-170', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 0.6319280290952958, "y": 0.7743080194585951, "z": -0.001132205452388905, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:23.129746', '2025-11-30 14:39:23.129746');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '136108', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -37.07113127398033, "y": -23.54641114634978, "z": 23.5549788440341, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:48.599887', '2025-11-30 14:37:48.599887');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '503', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": -1.406561171742641, "y": 5.010235596049718, "z": 0.01073041507354166, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.898752', '2025-11-30 14:37:50.898752');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '503', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": -1.373402911582648, "y": 5.006904353653258, "z": 0.01005693360610077, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.942639', '2025-11-30 14:37:50.942639');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-22T00:00:00+00:00:2025-11-22T00:00:00+00:00:1d', '601', '2025-11-22 00:00:00', '2025-11-22 00:00:00', '1d', '{"positions": [{"x": 9.524390110079882, "y": 0.03464976817892477, "z": -0.3795368165620451, "time": "2025-11-22T00:00:00+00:00"}]}', '2025-12-07 14:37:50.999791', '2025-11-30 14:37:50.999791');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '601', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 9.524463711691219, "y": 0.02873899639764147, "z": -0.3792415518735004, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:51.005447', '2025-11-30 14:37:51.005447');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '-170', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": 0.5170709559601114, "y": 0.8538679051193396, "z": -0.001635934678675552, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:55.563119', '2025-11-30 14:37:55.563119');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '2000001', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 2.734731956725958, "y": 0.8893399539042881, "z": -0.4756547228341877, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.609334', '2025-11-30 14:37:55.609334');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '136472', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -45.99331029923152, "y": -8.956459476997175, "z": 24.15633302086158, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.667788', '2025-11-30 14:37:55.667788');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '136472', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -45.99349369133683, "y": -8.954317693021595, "z": 24.15665439185731, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.678376', '2025-11-30 14:37:55.678376');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '-96', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 0.5850895107721029, "y": -0.2569514901809968, "z": -0.03728686501807828, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.732999', '2025-11-30 14:37:55.732999');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '136199', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 85.22987933917035, "y": 39.43520253022876, "z": -17.53063693151232, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.292343', '2025-11-29 09:29:37.292343');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '499', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": -0.1353324521505338, "y": -1.460107948506443, "z": -0.02727907649092571, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.345425', '2025-11-29 09:29:37.345425');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '-96', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 0.5907587876676911, "y": -0.2680626250292831, "z": -0.03776668072858638, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.744504', '2025-11-30 14:37:55.744504');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '606', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 9.527276647786964, "y": 0.01952215481328167, "z": -0.3830784676781361, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.777974', '2025-11-30 14:37:55.78019');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '299', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -0.6431704516904453, "y": -0.3265688446488872, "z": 0.03262427199690519, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.79747', '2025-11-30 14:37:55.79747');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '299', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -0.6519330501848043, "y": -0.3083144731036939, "z": 0.03338065874022818, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.81324', '2025-11-30 14:37:55.81324');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-10T00:00:00+00:00:2025-11-10T00:00:00+00:00:1d', '-170', '2025-11-10 00:00:00', '2025-11-10 00:00:00', '1d', '{"positions": [{"x": 0.6719959812131076, "y": 0.7404796775151962, "z": -0.0009239534397086273, "time": "2025-11-10T00:00:00+00:00"}]}', '2025-12-07 14:38:18.61832', '2025-11-30 14:38:18.61832');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '90000030', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -19.52503716609765, "y": 27.41965190013225, "z": -9.892846189067402, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:14.644347', '2025-11-30 14:39:14.650094');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '136199', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 85.23656131165644, "y": 39.42318515327742, "z": -17.54375758323922, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:17.581128', '2025-11-30 14:39:17.581128');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '136108', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -37.08628815054484, "y": -23.52711113399294, "z": 23.55643385967842, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.425572', '2025-11-30 14:39:20.425572');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '-61', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -1.351017691572477, "y": 5.004746443166129, "z": -0.007266995347811123, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.455497', '2025-11-30 14:39:20.455497');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '301', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 0.5853586627594294, "y": 0.7949445816775019, "z": -0.0001347466847844484, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.542599', '2025-11-30 14:39:20.542599');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '699', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 9.52519594564637, "y": 0.001691215612419266, "z": -0.3791861420197879, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.622906', '2025-11-30 14:39:20.622906');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '-170', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 0.6181887881211212, "y": 0.7851150813082349, "z": -0.001199544527179526, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:23.129455', '2025-11-30 14:39:23.129455');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '-170', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 0.6588356006984594, "y": 0.7519869362727419, "z": -0.0009943490297249953, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:23.165229', '2025-11-30 14:39:23.165229');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '601', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 9.528012754406763, "y": -0.03642139723418426, "z": -0.3791153864918521, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.250494', '2025-11-30 14:39:23.250494');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '50326340', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 45.10050515978544, "y": 7.218108627108736, "z": 19.02753815389976, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:29.48067', '2025-11-30 14:39:27.436087');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '136108', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": -37.06837429235041, "y": -23.54991964364614, "z": 23.55471356194365, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.305294', '2025-11-29 09:29:37.305294');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '2000001', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 2.690191661205008, "y": 1.000807199731037, "z": -0.4639205097513772, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.048897', '2025-11-29 07:04:49.048897');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '199', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": -0.1163439937078501, "y": 0.2927531406511263, "z": 0.03459547429767884, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.35366', '2025-11-29 09:29:37.35366');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '136472', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": -45.99123287998835, "y": -8.98064326124199, "z": 24.15270081308129, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.123175', '2025-11-29 07:04:49.123175');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '299', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": -0.5291121367495197, "y": -0.4927667467510257, "z": 0.02375982976468011, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.630599', '2025-11-29 09:33:48.630599');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '-96', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 0.46705973765227, "y": -0.1110923013979525, "z": -0.02847241499811247, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.176539', '2025-11-29 07:04:49.176539');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-08T00:00:00+00:00:2025-11-08T00:00:00+00:00:1d', '601', '2025-11-08 00:00:00', '2025-11-08 00:00:00', '1d', '{"positions": [{"x": 9.528628938583076, "y": -0.04230677292809939, "z": -0.3788793374299405, "time": "2025-11-08T00:00:00+00:00"}]}', '2025-12-07 14:38:16.584243', '2025-11-30 14:38:16.584243');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '-96', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 0.6148278567502422, "y": -0.3712327088211781, "z": -0.04057356507360461, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:16.764256', '2025-11-30 14:38:16.764256');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '-170', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 0.5320162459031722, "y": 0.8448062263779776, "z": -0.001577719568056966, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.805777', '2025-11-30 16:40:15.805777');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '90004920', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -1.437452343653298, "y": 0.2278339217827604, "z": 0.06001915940321781, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:14.663752', '2025-11-30 14:39:14.668763');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '10', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:51.034504', '2025-11-30 14:37:51.034504');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '-170', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 0.5468021154382081, "y": 0.8354863032059103, "z": -0.001518044707386342, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:55.605917', '2025-11-30 14:37:55.605917');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '503', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -1.37053757536322, "y": 5.004453647705624, "z": 0.009663527903961354, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.633501', '2025-11-30 14:37:55.633501');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '601', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 9.524071390186851, "y": 0.001227808826103267, "z": -0.3788421686393352, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.527944', '2025-11-30 14:39:20.527944');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('601:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '601', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 9.524252493243074, "y": -0.003943902091040729, "z": -0.3789661400370575, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.551252', '2025-11-30 14:39:20.551252');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '606', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 9.533414115170904, "y": -0.004182499435606822, "z": -0.3797303928434295, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.677435', '2025-11-30 14:39:20.681329');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '606', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 9.526141457492898, "y": -0.03332539830005476, "z": -0.3750011212808145, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.752639', '2025-11-30 14:39:20.756782');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '50326340', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 1.441564630239064, "y": -2.171056997855466, "z": 1.14415467241933, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:44.814015', '2025-11-30 14:39:35.072752');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '499', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -0.5307015469175713, "y": -1.405554347642044, "z": -0.01644068687218836, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.063959', '2025-11-30 14:39:45.063959');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '-98', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 19.87143648481391, "y": -59.97907398977893, "z": 2.20012548871023, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.735256', '2025-11-30 14:37:55.735256');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '399', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 0.3861991680147107, "y": 0.9076859661668156, "z": -0.00005646229780698756, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.074622', '2025-11-29 07:04:49.074622');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '799', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 10.03409951177028, "y": 16.71785588394152, "z": -0.06801885653307556, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.800345', '2025-11-30 14:37:55.800345');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '136108', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": -37.0679722019631, "y": -23.55043128413127, "z": 23.55467485610261, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.096725', '2025-11-29 07:04:49.096725');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '-61', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": -1.446588905411299, "y": 4.984773616451051, "z": -0.02120662036520949, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.105446', '2025-11-29 07:04:49.105446');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '499', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": -0.1311134628812838, "y": -1.460127853227868, "z": -0.02738295059214414, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.13191', '2025-11-29 07:04:49.13191');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '301', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 0.3886762755886178, "y": 0.9072165895450842, "z": -0.00003594443049047247, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.148638', '2025-11-29 07:04:49.148638');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '399', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 0.5880175012886592, "y": 0.795263013262445, "z": -0.00004953544406798339, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:08.803756', '2025-11-30 14:39:08.803756');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '899', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 29.87461909256598, "y": 0.4156676627129695, "z": -0.6969968924760647, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.158674', '2025-11-29 07:04:49.158674');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '-168', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": -0.131101777878212, "y": -1.46010872239344, "z": -0.02737954906591195, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.185051', '2025-11-29 07:04:49.185051');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '699', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 9.520745073049984, "y": 0.07568773131788183, "z": -0.3802986225852781, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.202604', '2025-11-29 07:04:49.202604');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '2000001', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 2.741513247605629, "y": 0.8710452965785971, "z": -0.4774831621090704, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:14.633846', '2025-11-30 14:39:14.633846');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '10', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.210782', '2025-11-29 07:04:49.210782');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '299', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": -0.5111507756003645, "y": -0.5116831353275273, "z": 0.02246358103560512, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.227251', '2025-11-29 07:04:49.227251');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-29T07:00:00+00:00:2025-11-29T07:00:00+00:00:1h', '-31', '2025-11-29 07:00:00', '2025-11-29 07:00:00', '1h', '{"positions": [{"x": -31.79725455441438, "y": -134.4213627454804, "z": 97.25901955176592, "time": "2025-11-29T07:00:00+00:00"}]}', '2025-12-06 07:04:49.235624', '2025-11-29 07:04:49.235624');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '50326340', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 45.22816526187784, "y": 7.237131848503361, "z": 19.08340428179053, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:17.559993', '2025-11-30 14:39:14.624208');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '599', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -1.357879634935806, "y": 5.014541089797126, "z": 0.009550344354872963, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.470651', '2025-11-30 14:39:20.470651');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '499', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -0.3218071019207859, "y": -1.447533086370613, "z": -0.02244286967693102, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.499313', '2025-11-30 14:39:20.499313');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '136472', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -45.99386019013955, "y": -8.950034102310408, "z": 24.15729698720223, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.508499', '2025-11-30 14:39:20.508499');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '199', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 0.2943843065000165, "y": 0.1451506551492998, "z": -0.01513872776331563, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.538861', '2025-11-30 14:39:20.538861');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '-98', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 19.86836506053745, "y": -59.97184198541561, "z": 2.199840810053105, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.570067', '2025-11-30 14:39:20.570067');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '-168', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -0.3218005281219667, "y": -1.44751225019871, "z": -0.02243680854158548, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.595955', '2025-11-30 14:39:20.595955');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '-96', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 0.6002065188210186, "y": -0.2894182784211266, "z": -0.03860531465259866, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.607487', '2025-11-30 14:39:20.607487');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '999', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 19.10021128315908, "y": -29.69959919220711, "z": -2.345453026455381, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.636571', '2025-11-30 14:39:20.636571');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '799', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": 10.03750800427505, "y": 16.71601452941081, "z": -0.06806989852850126, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.665803', '2025-11-30 14:39:20.665803');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-16T00:00:00+00:00:2025-11-16T00:00:00+00:00:1d', '-31', '2025-11-16 00:00:00', '2025-11-16 00:00:00', '1d', '{"positions": [{"x": -31.78133989030473, "y": -134.3168766786634, "z": 97.18351973074428, "time": "2025-11-16T00:00:00+00:00"}]}', '2025-12-07 14:39:20.696125', '2025-11-30 14:39:20.696125');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '299', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -0.667913434686602, "y": -0.2710927847975172, "z": 0.03481409158094013, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.704481', '2025-11-30 14:39:20.704481');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('50326340:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '50326340', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 45.07213505858291, "y": 7.213880935223565, "z": 19.01512294711126, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:35.057092', '2025-11-30 14:39:29.493306');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-19T00:00:00+00:00:2025-11-19T00:00:00+00:00:1d', '2000001', '2025-11-19 00:00:00', '2025-11-19 00:00:00', '1d', '{"positions": [{"x": 2.727819944193909, "y": 0.9075920832687739, "z": -0.473803545557715, "time": "2025-11-19T00:00:00+00:00"}]}', '2025-12-07 14:37:50.900693', '2025-11-30 14:37:50.900693');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '-96', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 0.5005520467587186, "y": -0.1437624755281461, "z": -0.03085375277609581, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.97843', '2025-11-30 14:37:50.97843');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '136108', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": -37.08353317406772, "y": -23.53062063915383, "z": 23.55616981921878, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.641825', '2025-11-30 14:37:55.641825');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '-61', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": -1.444585814265547, "y": 4.985491835588997, "z": -0.02094281251043496, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.317766', '2025-11-29 09:29:37.317766');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '301', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 0.3933435232091688, "y": 0.905089207079351, "z": -0.00005085414525208205, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.361795', '2025-11-29 09:29:37.361795');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '136108', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": -37.0849107077504, "y": -23.52886590946543, "z": 23.55630186765252, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.651649', '2025-11-30 14:37:55.651649');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '301', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 0.5712645324757509, "y": 0.8044415614340719, "z": -0.0001794892886624849, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.716702', '2025-11-30 14:37:55.716702');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-17T00:00:00+00:00:2025-11-17T00:00:00+00:00:1d', '699', '2025-11-17 00:00:00', '2025-11-17 00:00:00', '1d', '{"positions": [{"x": 9.524881492704433, "y": 0.007257766193642917, "z": -0.3792703138177058, "time": "2025-11-17T00:00:00+00:00"}]}', '2025-12-07 14:37:55.771856', '2025-11-30 14:37:55.771856');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-18T00:00:00+00:00:2025-11-18T00:00:00+00:00:1d', '-170', '2025-11-18 00:00:00', '2025-11-18 00:00:00', '1d', '{"positions": [{"x": 0.5614241898696047, "y": 0.8259109757915999, "z": -0.001456959100292621, "time": "2025-11-18T00:00:00+00:00"}]}', '2025-12-07 14:37:55.835216', '2025-11-30 14:37:55.835216');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '2000001', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 2.7448548190963, "y": 0.8618823085656127, "z": -0.4783888360270492, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.425964', '2025-11-30 14:39:20.425964');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '503', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -1.355678484861816, "y": 5.02111373262053, "z": 0.009492968994399586, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.451132', '2025-11-30 14:39:20.451132');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '599', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -1.261726610051459, "y": 5.034712204794313, "z": 0.007315310892817391, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:44.986016', '2025-11-30 14:39:44.986016');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '599', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -1.24689190357496, "y": 5.037654573731395, "z": 0.006971178227952344, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.01942', '2025-11-30 14:39:45.01942');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('503:2025-11-04T00:00:00+00:00:2025-11-04T00:00:00+00:00:1d', '503', '2025-11-04 00:00:00', '2025-11-04 00:00:00', '1d', '{"positions": [{"x": -1.265288551267669, "y": 5.027215864108777, "z": 0.007313543159625882, "time": "2025-11-04T00:00:00+00:00"}]}', '2025-12-07 14:38:16.59137', '2025-11-30 14:38:16.59137');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-07T00:00:00+00:00:2025-11-07T00:00:00+00:00:1d', '-170', '2025-11-07 00:00:00', '2025-11-07 00:00:00', '1d', '{"positions": [{"x": 0.710257061421177, "y": 0.7046129581139392, "z": -0.0007076462929604885, "time": "2025-11-07T00:00:00+00:00"}]}', '2025-12-07 14:38:19.085845', '2025-11-30 14:38:19.085845');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-170:2025-11-06T00:00:00+00:00:2025-11-06T00:00:00+00:00:1d', '-170', '2025-11-06 00:00:00', '2025-11-06 00:00:00', '1d', '{"positions": [{"x": 0.722591537432658, "y": 0.6922210931923303, "z": -0.0006340571365610276, "time": "2025-11-06T00:00:00+00:00"}]}', '2025-12-07 14:38:19.445118', '2025-11-30 14:38:19.445118');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '599', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": -1.453549218516478, "y": 4.992579178721021, "z": 0.01178192785358634, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.328366', '2025-11-29 09:29:37.328366');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-29T00:00:00+00:00:2025-11-29T00:00:00+00:00:1d', '899', '2025-11-29 00:00:00', '2025-11-29 00:00:00', '1d', '{"positions": [{"x": 29.87463982765171, "y": 0.4147465999395865, "z": -0.6969785096833805, "time": "2025-11-29T00:00:00+00:00"}]}', '2025-12-06 09:29:37.369233', '2025-11-29 09:29:37.369233');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '90000030', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -19.52604372977257, "y": 27.41928494898737, "z": -9.89306554313571, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.450358', '2025-11-30 14:39:20.454283');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '-61', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -1.342723372808524, "y": 5.005485531368858, "z": -0.01050737373540252, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.480258', '2025-11-30 14:39:20.480258');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '899', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 29.87560155548648, "y": 0.370539167527365, "z": -0.6960902541913547, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.58018', '2025-11-30 14:39:20.58018');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '10', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.663932', '2025-11-30 14:39:20.663932');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '399', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": 0.7880656073400608, "y": 0.6039448856452807, "z": -0.00003910732384477678, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:44.966158', '2025-11-30 14:39:44.966158');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '301', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 0.4552925571376032, "y": 0.8741102850480045, "z": -0.000230564281706676, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:50.958722', '2025-11-30 14:37:50.958722');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '399', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 0.6295240612482146, "y": 0.763673179505989, "z": -0.00004968306610405237, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.458629', '2025-11-30 14:39:20.458629');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '499', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -0.3359816807119272, "y": -1.445633376918838, "z": -0.02205547319481602, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.524481', '2025-11-30 14:39:20.524481');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '2000001', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 2.695103055638463, "y": 0.989175598405148, "z": -0.4651935429156057, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.398373', '2025-11-29 09:33:48.398373');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '-168', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -0.3359781491752415, "y": -1.445612307075662, "z": -0.02204787795083824, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.623336', '2025-11-30 14:39:20.623336');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '-31', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": -31.78014251754959, "y": -134.3090156738878, "z": 97.1778394511492, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.718056', '2025-11-30 14:39:20.718056');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '90000030', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": -19.52704974919996, "y": 27.41891720344532, "z": -9.893284625679392, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.13008', '2025-11-30 14:39:23.133498');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '90004920', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -1.33686812853381, "y": -0.2322179485400831, "z": 0.08580452290944654, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:44.842092', '2025-11-30 14:39:44.847311');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '499', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -0.5442986639871635, "y": -1.401751884238201, "z": -0.01602757542823676, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:45.072256', '2025-11-30 14:39:45.072256');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '606', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": 9.535078722596262, "y": -0.07689145793025459, "z": -0.3809961474833681, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:45.621622', '2025-11-30 14:39:45.625814');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '2000001', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 2.748163646900057, "y": 0.8527090348633699, "z": -0.4792888028160014, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.432601', '2025-11-30 14:39:20.432601');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '399', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 0.6158768064345177, "y": 0.7744404304876714, "z": -0.00004964770005675633, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.457916', '2025-11-30 14:39:20.457916');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '136199', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 85.23703839502986, "y": 39.42232658967216, "z": -17.5446947282861, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.472579', '2025-11-30 14:39:20.472579');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '136199', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 85.23751545150544, "y": 39.42146800217857, "z": -17.54563186739369, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.475995', '2025-11-30 14:39:20.475995');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '136108', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -37.08904276356566, "y": -23.52360144565622, "z": 23.55669767452519, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.502782', '2025-11-30 14:39:20.502782');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '136108', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -37.09041993382711, "y": -23.52184653277432, "z": 23.55682949735394, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.506335', '2025-11-30 14:39:20.506335');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '-61', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -1.334589760803948, "y": 5.006438889241545, "z": -0.01333048016747623, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.516679', '2025-11-30 14:39:20.516679');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '-61', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -1.326581981392968, "y": 5.0075526532969, "z": -0.01581401343776002, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.520716', '2025-11-30 14:39:20.520716');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '599', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -1.343118157260388, "y": 5.017759776520473, "z": 0.009206639486372655, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.53168', '2025-11-30 14:39:20.53168');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '599', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -1.335733559279971, "y": 5.019353797687748, "z": 0.009034771589924473, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.532936', '2025-11-30 14:39:20.532936');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '136472', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -45.99404329688505, "y": -8.94789229555368, "z": 24.15761821155765, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.544173', '2025-11-30 14:39:20.544173');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '499', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -0.3501258572646687, "y": -1.443602864090272, "z": -0.02166608103482083, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.558844', '2025-11-30 14:39:20.558844');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '199', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 0.3110759574818532, "y": 0.118115225912216, "z": -0.01887907644109309, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.573252', '2025-11-30 14:39:20.573252');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '301', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 0.6133727795347587, "y": 0.7752380210426283, "z": -0.00003560785111980877, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.600747', '2025-11-30 14:39:20.600747');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '899', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 29.87566764703258, "y": 0.367381696410568, "z": -0.696026356441615, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.615193', '2025-11-30 14:39:20.615193');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '-98', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 19.862222148343, "y": -59.95737779703175, "z": 2.199271444904027, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.628843', '2025-11-30 14:39:20.628843');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '-96', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 0.604024762934938, "y": -0.2996638467746031, "z": -0.03896644281107165, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.643496', '2025-11-30 14:39:20.643496');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '-168', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -0.3501253762489304, "y": -1.443582102017813, "z": -0.02165698144757297, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.658736', '2025-11-30 14:39:20.658736');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '999', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 19.09750028253156, "y": -29.70058930776463, "z": -2.344557420751488, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.672397', '2025-11-30 14:39:20.672397');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '699', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 9.525815929891985, "y": -0.009441722791786955, "z": -0.379017592701525, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.68781', '2025-11-30 14:39:20.68781');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '10', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.703356', '2025-11-30 14:39:20.703356');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-15T00:00:00+00:00:2025-11-15T00:00:00+00:00:1d', '-32', '2025-11-15 00:00:00', '2025-11-15 00:00:00', '1d', '{"positions": [{"x": 39.11342925293751, "y": -103.7379798906157, "z": -87.61134235571254, "time": "2025-11-15T00:00:00+00:00"}]}', '2025-12-07 14:39:20.731558', '2025-11-30 14:39:20.731558');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '799', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 10.04432356401051, "y": 16.71232985881079, "z": -0.06817179163525978, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.732223', '2025-11-30 14:39:20.732223');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '299', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -0.6751180833619835, "y": -0.252154507343073, "z": 0.03548998070244165, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.746178', '2025-11-30 14:39:20.746178');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '-31', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": -31.77894514061412, "y": -134.3011546712973, "z": 97.17215916565763, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.764388', '2025-11-30 14:39:20.764388');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-14T00:00:00+00:00:2025-11-14T00:00:00+00:00:1d', '-32', '2025-11-14 00:00:00', '2025-11-14 00:00:00', '1d', '{"positions": [{"x": 39.11100149591752, "y": -103.7325847702141, "z": -87.60480350655435, "time": "2025-11-14T00:00:00+00:00"}]}', '2025-12-07 14:39:20.780488', '2025-11-30 14:39:20.780488');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '136199', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 85.23083422469026, "y": 39.43348604915285, "z": -17.53251138105464, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:44.921248', '2025-11-30 14:37:44.921248');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90004920:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '90004920', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -1.429885600531726, "y": 0.1895288359920471, "z": 0.06220849596029792, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.460513', '2025-11-30 14:39:20.464917');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '136199', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 85.23799248107063, "y": 39.42060939080817, "z": -17.54656900055923, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.504379', '2025-11-30 14:39:20.504379');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '136108', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -37.09317400190643, "y": -23.51833656955355, "z": 23.5570929738375, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.539109', '2025-11-30 14:39:20.539109');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '136472', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -45.99422630855003, "y": -8.94575048118376, "z": 24.15793938703829, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.545583', '2025-11-30 14:39:20.545583');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '199', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 0.3370071452690548, "y": 0.06146394699030638, "z": -0.02588714766847615, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.608548', '2025-11-30 14:39:20.608548');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '301', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 0.6548542982020591, "y": 0.7435458958752135, "z": 0.0001012528163910818, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.635954', '2025-11-30 14:39:20.635954');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '-96', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 0.6072627293254937, "y": -0.3096215794290372, "z": -0.03929013706139536, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.644806', '2025-11-30 14:39:20.644806');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '999', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 19.09205457818165, "y": -29.70258057326473, "z": -2.342744093564619, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.708831', '2025-11-30 14:39:20.708831');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '606', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 9.531477516840672, "y": -0.02046009850043962, "z": -0.3766546646901228, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.717499', '2025-11-30 14:39:20.721618');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '699', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 9.52120362598483, "y": 0.06849770155472548, "z": -0.3801919336127172, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.591664', '2025-11-29 09:33:48.591664');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '699', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 9.526723416440829, "y": -0.02614224763784721, "z": -0.3787634339655991, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.721246', '2025-11-30 14:39:20.721246');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '299', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -0.68179095778648, "y": -0.2330176164571614, "z": 0.03613791518485708, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.745458', '2025-11-30 14:39:20.745458');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '-32', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 39.10614597543602, "y": -103.721794528052, "z": -87.59172578100046, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:23.152728', '2025-11-30 14:39:23.152728');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-09T00:00:00+00:00:2025-11-09T00:00:00+00:00:1d', '606', '2025-11-09 00:00:00', '2025-11-09 00:00:00', '1d', '{"positions": [{"x": 9.521098866790114, "y": -0.04189747552434245, "z": -0.3755916012425939, "time": "2025-11-09T00:00:00+00:00"}]}', '2025-12-07 14:39:23.324741', '2025-11-30 14:39:23.32718');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '90000030', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": -19.53006454209233, "y": 27.41780920059049, "z": -9.893940244147823, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:29.502427', '2025-11-30 14:39:29.506599');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('90000030:2025-10-31T00:00:00+00:00:2025-10-31T00:00:00+00:00:1d', '90000030', '2025-10-31 00:00:00', '2025-10-31 00:00:00', '1d', '{"positions": [{"x": -19.53157010178307, "y": 27.41725251780838, "z": -9.894267137011294, "time": "2025-10-31T00:00:00+00:00"}]}', '2025-12-07 14:39:44.845963', '2025-11-30 14:39:44.862741');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '136108', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -37.09179701327165, "y": -23.52009157407458, "z": 23.55696126379053, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.534416', '2025-11-30 14:39:20.534416');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '499', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -0.3642384339762564, "y": -1.441442070638164, "z": -0.02127473351731837, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.559552', '2025-11-30 14:39:20.559552');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '301', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 0.6411180405718808, "y": 0.7544253209689463, "z": 0.00006063461813243437, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.637041', '2025-11-30 14:39:20.637041');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '-168', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -0.3642409348161932, "y": -1.441422150017437, "z": -0.02126419728658868, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.660106', '2025-11-30 14:39:20.660106');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '699', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 9.526424053709631, "y": -0.02057514450765794, "z": -0.3788484042261382, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.723653', '2025-11-30 14:39:20.723653');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '-31', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": -31.77774775951498, "y": -134.2932936708774, "z": 97.16647887427196, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.763841', '2025-11-30 14:39:20.763841');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-28T00:00:00+00:00:2025-11-28T00:00:00+00:00:1d', '799', '2025-11-28 00:00:00', '2025-11-28 00:00:00', '1d', '{"positions": [{"x": 9.996580917893352, "y": 16.73806573292644, "z": -0.06745700931614317, "time": "2025-11-28T00:00:00+00:00"}]}', '2025-12-06 09:33:48.618447', '2025-11-29 09:33:48.618447');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-01T00:00:00+00:00:2025-11-01T00:00:00+00:00:1d', '136108', '2025-11-01 00:00:00', '2025-11-01 00:00:00', '1d', '{"positions": [{"x": -37.10693889405539, "y": -23.50078400556595, "z": 23.55840697313269, "time": "2025-11-01T00:00:00+00:00"}]}', '2025-12-07 14:39:44.991696', '2025-11-30 14:39:44.991696');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('606:2025-11-03T00:00:00+00:00:2025-11-03T00:00:00+00:00:1d', '606', '2025-11-03 00:00:00', '2025-11-03 00:00:00', '1d', '{"positions": [{"x": 9.528746980757093, "y": -0.06337369055838875, "z": -0.3818210830246433, "time": "2025-11-03T00:00:00+00:00"}]}', '2025-12-07 14:39:45.551847', '2025-11-30 14:39:45.555332');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '499', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": -0.1642318451044373, "y": -1.459658071049636, "z": -0.02656098522531437, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:50.888229', '2025-11-30 14:37:50.888229');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '399', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 0.656234117135902, "y": 0.7414456507445472, "z": -0.00004955639570870912, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.496016', '2025-11-30 14:39:20.496016');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '-61', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -1.318678040360194, "y": 5.008793453153966, "z": -0.01800815159321302, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.549548', '2025-11-30 14:39:20.549548');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '199', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 0.3252836296136583, "y": 0.09013468690323648, "z": -0.02246883243241574, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.57449', '2025-11-30 14:39:20.57449');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '499', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -0.3923640442072017, "y": -1.436731783661837, "z": -0.02048633361065322, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.592766', '2025-11-30 14:39:20.592766');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '899', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 29.87579827058692, "y": 0.3610656019712639, "z": -0.6958990654032414, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.651637', '2025-11-30 14:39:20.651637');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '999', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 19.09478196721406, "y": -29.70158056798825, "z": -2.343651402801779, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.67307', '2025-11-30 14:39:20.67307');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '-168', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -0.3923720056199827, "y": -1.436715049190479, "z": -0.0204732694806915, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.692175', '2025-11-30 14:39:20.692175');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '10', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.738418', '2025-11-30 14:39:20.738418');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '-32', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 39.10857373675474, "y": -103.7271896493637, "z": -87.59826464831818, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.780253', '2025-11-30 14:39:20.780253');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '-31', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -31.77535298487163, "y": -134.2775716765038, "z": 97.155118273825, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:23.136657', '2025-11-30 14:39:23.136657');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-25T00:00:00+00:00:2025-11-25T00:00:00+00:00:1d', '2000001', '2025-11-25 00:00:00', '2025-11-25 00:00:00', '1d', '{"positions": [{"x": 2.706301363090271, "y": 0.9620840615660703, "z": -0.4681142074792976, "time": "2025-11-25T00:00:00+00:00"}]}', '2025-12-07 14:37:44.921459', '2025-11-30 14:37:44.921459');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-27T00:00:00+00:00:2025-11-27T00:00:00+00:00:1d', '799', '2025-11-27 00:00:00', '2025-11-27 00:00:00', '1d', '{"positions": [{"x": 9.999993516569933, "y": 16.73623191035391, "z": -0.06750809444543461, "time": "2025-11-27T00:00:00+00:00"}]}', '2025-12-07 14:37:51.064304', '2025-11-30 14:37:51.064304');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '2000001', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 2.754682990435536, "y": 0.8343320918238676, "z": -0.4810715854597131, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.480967', '2025-11-30 14:39:20.480967');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '599', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -1.328345494091506, "y": 5.020937989871813, "z": 0.008862924013265022, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.56505', '2025-11-30 14:39:20.56505');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '136472', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -45.9945920466827, "y": -8.941466829579426, "z": 24.15858159138146, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.579853', '2025-11-30 14:39:20.579853');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '301', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 0.627284560634165, "y": 0.7649818210304061, "z": 0.00001414170496639633, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.603364', '2025-11-30 14:39:20.603364');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '-98', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 19.85607915113766, "y": -59.94291336889702, "z": 2.198702069325725, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.664277', '2025-11-30 14:39:20.664277');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '-96', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 0.6120587987552885, "y": -0.3286731651173562, "z": -0.03982873612325444, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.677688', '2025-11-30 14:39:20.677688');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '699', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 9.52612151317758, "y": -0.01500831086406346, "z": -0.3789331150373985, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.687263', '2025-11-30 14:39:20.687263');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '799', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 10.05113743095935, "y": 16.70864248134707, "z": -0.0682737640133375, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.773136', '2025-11-30 14:39:20.773136');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '299', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -0.6935196432771117, "y": -0.1942080613263227, "z": 0.03734784057509209, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:23.118127', '2025-11-30 14:39:23.118127');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-21T00:00:00+00:00:2025-11-21T00:00:00+00:00:1d', '-61', '2025-11-21 00:00:00', '2025-11-21 00:00:00', '1d', '{"positions": [{"x": -1.39228258885029, "y": 5.00651525734454, "z": -0.002745777939337636, "time": "2025-11-21T00:00:00+00:00"}]}', '2025-12-07 14:37:50.936308', '2025-11-30 14:37:50.936308');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '399', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 0.6429777608030948, "y": 0.7526736406066177, "z": -0.00004966330227191239, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.490453', '2025-11-30 14:39:20.490453');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '499', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -0.3783182225806387, "y": -1.439151529506737, "z": -0.02088147094750805, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.592976', '2025-11-30 14:39:20.592976');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '899', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 29.87573307768948, "y": 0.3642238240347369, "z": -0.695962525062837, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.618467', '2025-11-30 14:39:20.618467');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '-168', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -0.3783235614184007, "y": -1.439132962800123, "z": -0.02086960200035046, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.692634', '2025-11-30 14:39:20.692634');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '10', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.700241', '2025-11-30 14:39:20.700241');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '-31', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -31.77655037426456, "y": -134.2854326726161, "z": 97.16079857699398, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:23.13815', '2025-11-30 14:39:23.13815');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '-98', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 19.85915066037607, "y": -59.95014561294794, "z": 2.198986758417524, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.630327', '2025-11-30 14:39:20.630327');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-13T00:00:00+00:00:2025-11-13T00:00:00+00:00:1d', '799', '2025-11-13 00:00:00', '2025-11-13 00:00:00', '1d', '{"positions": [{"x": 10.04773073217005, "y": 16.71048650291236, "z": -0.06822277109108882, "time": "2025-11-13T00:00:00+00:00"}]}', '2025-12-07 14:39:20.73197', '2025-11-30 14:39:20.73197');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-20T00:00:00+00:00:2025-11-20T00:00:00+00:00:1d', '-98', '2025-11-20 00:00:00', '2025-11-20 00:00:00', '1d', '{"positions": [{"x": 19.8806506307693, "y": -60.0007696439416, "z": 2.200979508967909, "time": "2025-11-20T00:00:00+00:00"}]}', '2025-12-07 16:40:15.598568', '2025-11-30 16:40:15.598568');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '2000001', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 2.751439710674829, "y": 0.8435255908387213, "z": -0.4801830550724725, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.475093', '2025-11-30 14:39:20.475093');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '136199', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 85.23846948371644, "y": 39.41975075556995, "z": -17.54750612778052, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.510163', '2025-11-30 14:39:20.510163');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '-61', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -1.310863025554578, "y": 5.010138913898426, "z": -0.0199474193715972, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.55335', '2025-11-30 14:39:20.55335');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '599', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": -1.320954605925105, "y": 5.022510887371489, "z": 0.008691033497792428, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.565477', '2025-11-30 14:39:20.565477');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '136472', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -45.99440922514645, "y": -8.943608659193766, "z": 24.15826051364585, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.580353', '2025-11-30 14:39:20.580353');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '199', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 0.3462729430224017, "y": 0.03234321022410231, "z": -0.02911681701853953, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.605776', '2025-11-30 14:39:20.605776');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '899', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 29.87586355336077, "y": 0.3579074297841545, "z": -0.6958358888320268, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.650083', '2025-11-30 14:39:20.650083');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '-98', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 19.85300762061366, "y": -59.9356810648527, "z": 2.198417377629934, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.664121', '2025-11-30 14:39:20.664121');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '-96', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": 0.6099360140785901, "y": -0.3192914426884879, "z": -0.03957729669326079, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:20.67888', '2025-11-30 14:39:20.67888');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '999', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 19.08932433493653, "y": -29.70358895805277, "z": -2.341845750151573, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.707279', '2025-11-30 14:39:20.707279');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '10', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.735314', '2025-11-30 14:39:20.735314');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '799', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 10.05454374303817, "y": 16.70679776940774, "z": -0.06832481938112808, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:20.773342', '2025-11-30 14:39:20.773342');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-12T00:00:00+00:00:2025-11-12T00:00:00+00:00:1d', '299', '2025-11-12 00:00:00', '2025-11-12 00:00:00', '1d', '{"positions": [{"x": -0.6879265174986382, "y": -0.2136970884383709, "z": 0.03675736959308684, "time": "2025-11-12T00:00:00+00:00"}]}', '2025-12-07 14:39:23.121202', '2025-11-30 14:39:23.121202');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-11T00:00:00+00:00:2025-11-11T00:00:00+00:00:1d', '-32', '2025-11-11 00:00:00', '2025-11-11 00:00:00', '1d', '{"positions": [{"x": 39.10371821195184, "y": -103.7163994062688, "z": -87.58518690459822, "time": "2025-11-11T00:00:00+00:00"}]}', '2025-12-07 14:39:23.151842', '2025-11-30 14:39:23.151842');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '2000001', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 2.690032329171563, "y": 1.00118207921261, "z": -0.4638792889127214, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.563685', '2025-11-29 08:01:05.563685');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '399', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 0.3855277689415577, "y": 0.9079633995043255, "z": -0.0000565016253365109, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.595232', '2025-11-29 08:01:05.595232');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '136199', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 85.22972018138023, "y": 39.43548860115774, "z": -17.53032452096962, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.605113', '2025-11-29 08:01:05.605113');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '136108', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": -37.06791475984382, "y": -23.55050437530944, "z": 23.55466932630465, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.614651', '2025-11-29 08:01:05.614651');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '-61', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": -1.446875457172421, "y": 4.984671273425826, "z": -0.02124279010329963, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.622262', '2025-11-29 08:01:05.622262');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '599', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": -1.455995287047328, "y": 4.991992940948645, "z": 0.01183911171465089, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.630905', '2025-11-29 08:01:05.630905');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '136472', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": -45.99122519166909, "y": -8.98073249848676, "z": 24.15268739855103, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.639761', '2025-11-29 08:01:05.639761');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '499', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": -0.1305106638749494, "y": -1.460129745154133, "z": -0.02739777192280622, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.648385', '2025-11-29 08:01:05.648385');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '199', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": -0.1268814642021615, "y": 0.2894888439275528, "z": 0.03529519906100977, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.656158', '2025-11-29 08:01:05.656158');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '301', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 0.3880077446352695, "y": 0.90751876225497, "z": -0.00003382059879389057, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.664484', '2025-11-29 08:01:05.664484');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '899', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 29.87461613145184, "y": 0.4157992448854846, "z": -0.6969995196174873, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.672944', '2025-11-29 08:01:05.672944');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '-98', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 19.9093156592854, "y": -60.06826379645241, "z": 2.203636309030625, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.681586', '2025-11-29 08:01:05.681586');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '-32', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 39.14822688893766, "y": -103.8153099064224, "z": -87.70506486591329, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.758211', '2025-11-29 08:01:05.758211');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '-96', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 0.466393854562337, "y": -0.1104838333450535, "z": -0.02842563462272431, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.690257', '2025-11-29 08:01:05.690257');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '-168', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": -0.1305036148487314, "y": -1.460108995326788, "z": -0.0273919535870717, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.699418', '2025-11-29 08:01:05.699418');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '999', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 19.13917717228554, "y": -29.68524492527456, "z": -2.358273372985113, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.70829', '2025-11-29 08:01:05.70829');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '699', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 9.520730195442365, "y": 0.07591966090409087, "z": -0.3803020580096138, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.716516', '2025-11-29 08:01:05.716516');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '10', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.725548', '2025-11-29 08:01:05.725548');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '799', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": 9.992030028974193, "y": 16.7405097861416, "z": -0.06738900840429604, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.733697', '2025-11-29 08:01:05.733697');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '299', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": -0.5105601577645349, "y": -0.5122823690831316, "z": 0.022421269963893, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.741903', '2025-11-29 08:01:05.741903');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-29T08:00:00+00:00:2025-11-29T08:00:00+00:00:1h', '-31', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1h', '{"positions": [{"x": -31.79730444235934, "y": -134.4216902886156, "z": 97.25925622667256, "time": "2025-11-29T08:00:00+00:00"}]}', '2025-12-06 08:01:05.750266', '2025-11-29 08:01:05.750266');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:null:null:1d', '136199', NULL, NULL, '1d', '{"positions": [{"x": 85.22930996183027, "y": 39.43622589535747, "z": -17.52951932506764, "time": "2025-11-30T04:37:07.825636"}]}', '2025-12-07 04:37:37.853202', '2025-11-30 04:37:37.853202');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:null:null:1d', '136108', NULL, NULL, '1d', '{"positions": [{"x": -37.06673028725171, "y": -23.55201147299623, "z": 23.55455528188131, "time": "2025-11-30T04:37:10.789160"}]}', '2025-12-07 04:37:37.886237', '2025-11-30 04:37:37.886237');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:null:null:1d', '136472', NULL, NULL, '1d', '{"positions": [{"x": -45.99106661531419, "y": -8.982572638731629, "z": 24.15241076128694, "time": "2025-11-30T04:37:14.876211"}]}', '2025-12-07 04:37:37.930347', '2025-11-30 04:37:37.930347');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:null:null:1d', '-98', NULL, NULL, '1d', '{"positions": [{"x": 19.91195469680444, "y": -60.07447757711567, "z": 2.203880903317851, "time": "2025-11-30T04:37:23.524205"}]}', '2025-12-07 04:37:38.011129', '2025-11-30 04:37:38.011129');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:null:null:1d', '-96', NULL, NULL, '1d', '{"positions": [{"x": 0.4521668008636535, "y": -0.09782120690996551, "z": -0.02743078218692399, "time": "2025-11-30T04:37:24.824481"}]}', '2025-12-07 04:37:38.022237', '2025-11-30 04:37:38.022237');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:null:null:1d', '699', NULL, NULL, '1d', '{"positions": [{"x": 9.520422188994333, "y": 0.080703067255525, "z": -0.3803728391956001, "time": "2025-11-30T04:37:29.017381"}]}', '2025-12-07 04:37:38.052481', '2025-11-30 04:37:38.052481');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:null:null:1d', '-32', NULL, NULL, '1d', '{"positions": [{"x": 39.15031335690531, "y": -103.8199466394333, "z": -87.71068444282714, "time": "2025-11-30T04:37:34.914505"}]}', '2025-12-07 04:37:38.100767', '2025-11-30 04:37:38.100767');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:null:null:1d', '899', NULL, NULL, '1d', '{"positions": [{"x": 29.87455511184469, "y": 0.4185128655807267, "z": -0.6970538127865115, "time": "2025-11-30T04:37:22.135889"}]}', '2025-12-07 04:37:37.999055', '2025-11-30 04:37:37.999055');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:null:null:1d', '-31', NULL, NULL, '1d', '{"positions": [{"x": -31.79833342683087, "y": -134.4284461783798, "z": 97.26413786963604, "time": "2025-11-30T04:37:33.427156"}]}', '2025-12-07 04:37:38.092128', '2025-11-30 04:37:38.092128');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:null:null:1d', '-168', NULL, NULL, '1d', '{"positions": [{"x": -0.1180526689505358, "y": -1.460108155659446, "z": -0.02770456978129467, "time": "2025-11-30T04:37:26.247872"}]}', '2025-12-07 04:37:38.03192', '2025-11-30 04:37:38.03192');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:null:null:1d', '999', NULL, NULL, '1d', '{"positions": [{"x": 19.14151714783424, "y": -29.68437451098797, "z": -2.359036184475611, "time": "2025-11-30T04:37:27.611455"}]}', '2025-12-07 04:37:38.042145', '2025-11-30 04:37:38.042145');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:null:null:1d', '799', NULL, NULL, '1d', '{"positions": [{"x": 9.989096464994397, "y": 16.74208442017572, "z": -0.06734517344304483, "time": "2025-11-30T04:37:30.448316"}]}', '2025-12-07 04:37:38.070545', '2025-11-30 04:37:38.070545');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '2000001', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 2.690032329171563, "y": 1.00118207921261, "z": -0.4638792889127214, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.464034', '2025-11-29 08:38:50.378184');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '399', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 0.3855277689415577, "y": 0.9079633995043255, "z": -0.0000565016253365109, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.50328', '2025-11-29 08:38:50.511382');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '136199', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 85.22972018138023, "y": 39.43548860115774, "z": -17.53032452096962, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.519162', '2025-11-29 08:38:50.521309');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '136108', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": -37.06791475984382, "y": -23.55050437530944, "z": 23.55466932630465, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.526701', '2025-11-29 08:38:50.528748');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '-61', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": -1.446875457172421, "y": 4.984671273425826, "z": -0.02124279010329963, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.534345', '2025-11-29 08:38:50.536408');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '599', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": -1.455995287047328, "y": 4.991992940948645, "z": 0.01183911171465089, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.542307', '2025-11-29 08:38:50.544582');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '136472', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": -45.99122519166909, "y": -8.98073249848676, "z": 24.15268739855103, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.550666', '2025-11-29 08:38:50.553021');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '499', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": -0.1305106638749494, "y": -1.460129745154133, "z": -0.02739777192280622, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.558728', '2025-11-29 08:38:50.560868');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '199', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": -0.1268814642021615, "y": 0.2894888439275528, "z": 0.03529519906100977, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.566496', '2025-11-29 08:38:50.568699');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '301', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 0.3880077446352695, "y": 0.90751876225497, "z": -0.00003382059879389057, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.574352', '2025-11-29 08:38:50.576438');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '899', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 29.87461613145184, "y": 0.4157992448854846, "z": -0.6969995196174873, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.581689', '2025-11-29 08:38:50.58392');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '-98', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 19.9093156592854, "y": -60.06826379645241, "z": 2.203636309030625, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.590275', '2025-11-29 08:38:50.592743');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '-96', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 0.466393854562337, "y": -0.1104838333450535, "z": -0.02842563462272431, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.599663', '2025-11-29 08:38:50.601901');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '-168', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": -0.1305036148487314, "y": -1.460108995326788, "z": -0.0273919535870717, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.607593', '2025-11-29 08:38:50.609851');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '999', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 19.13917717228554, "y": -29.68524492527456, "z": -2.358273372985113, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.616213', '2025-11-29 08:38:50.618385');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '699', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 9.520730195442365, "y": 0.07591966090409087, "z": -0.3803020580096138, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.623768', '2025-11-29 08:38:50.626204');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '10', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.632318', '2025-11-29 08:38:50.634549');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '799', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 9.992030028974193, "y": 16.7405097861416, "z": -0.06738900840429604, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.640313', '2025-11-29 08:38:50.642564');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '299', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": -0.5105601577645349, "y": -0.5122823690831316, "z": 0.022421269963893, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.6484', '2025-11-29 08:38:50.650758');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '-31', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": -31.79730444235934, "y": -134.4216902886156, "z": 97.25925622667256, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.657508', '2025-11-29 08:38:50.660158');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-11-29T08:00:00:2025-11-29T08:00:00:1d', '-32', '2025-11-29 08:00:00', '2025-11-29 08:00:00', '1d', '{"positions": [{"x": 39.14822688893766, "y": -103.8153099064224, "z": -87.70506486591329, "time": "2025-11-29T08:00:00"}]}', '2025-12-06 08:38:50.666631', '2025-11-29 08:38:50.66906');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '2000001', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 2.789997805112434, "y": 0.7266806424751554, "z": -0.4909853212336058, "time": "2025-10-30T08:48:00.000043"}, {"x": 2.787137263737347, "y": 0.7359826520236293, "z": -0.4901638723160189, "time": "2025-10-31T08:48:00.000043"}, {"x": 2.784243731647354, "y": 0.7452759454808876, "z": -0.4893366210254809, "time": "2025-11-01T08:48:00.000043"}, {"x": 2.781317224767313, "y": 0.7545604079696083, "z": -0.4885035739346516, "time": "2025-11-02T08:48:00.000043"}, {"x": 2.778357759365697, "y": 0.7638359245705794, "z": -0.4876647376810622, "time": "2025-11-03T08:48:00.000043"}, {"x": 2.775365352055377, "y": 0.773102380323045, "z": -0.4868201189672577, "time": "2025-11-04T08:48:00.000043"}, {"x": 2.772340019794484, "y": 0.7823596602249446, "z": -0.4859697245609594, "time": "2025-11-05T08:48:00.000043"}, {"x": 2.769281779888053, "y": 0.7916076492353643, "z": -0.4851135612951151, "time": "2025-11-06T08:48:00.000043"}, {"x": 2.7661906499877, "y": 0.800846232272376, "z": -0.4842516360681499, "time": "2025-11-07T08:48:00.000043"}, {"x": 2.763066648093204, "y": 0.8100752942140679, "z": -0.4833839558441279, "time": "2025-11-08T08:48:00.000043"}, {"x": 2.759909792553922, "y": 0.8192947198996603, "z": -0.482510527652895, "time": "2025-11-09T08:48:00.000043"}, {"x": 2.75672010206999, "y": 0.8285043941302445, "z": -0.4816313585902317, "time": "2025-11-10T08:48:00.000043"}, {"x": 2.753497595693478, "y": 0.8377042016693622, "z": -0.4807464558180145, "time": "2025-11-11T08:48:00.000043"}, {"x": 2.750242292829627, "y": 0.8468940272435863, "z": -0.4798558265643884, "time": "2025-11-12T08:48:00.000043"}, {"x": 2.746954213238221, "y": 0.8560737555432278, "z": -0.4789594781239375, "time": "2025-11-13T08:48:00.000043"}, {"x": 2.743633377035057, "y": 0.8652432712232438, "z": -0.4780574178578526, "time": "2025-11-14T08:48:00.000043"}, {"x": 2.740279804693488, "y": 0.8744024589043922, "z": -0.4771496531940828, "time": "2025-11-15T08:48:00.000043"}, {"x": 2.736893517045954, "y": 0.883551203174647, "z": -0.4762361916274667, "time": "2025-11-16T08:48:00.000043"}, {"x": 2.733474535285424, "y": 0.8926893885908558, "z": -0.475317040719836, "time": "2025-11-17T08:48:00.000043"}, {"x": 2.730022880966675, "y": 0.9018168996806046, "z": -0.4743922081000866, "time": "2025-11-18T08:48:00.000043"}, {"x": 2.726538576007329, "y": 0.910933620944238, "z": -0.4734617014642167, "time": "2025-11-19T08:48:00.000043"}, {"x": 2.723021642688602, "y": 0.9200394368569622, "z": -0.4725255285753306, "time": "2025-11-20T08:48:00.000043"}, {"x": 2.71947210365572, "y": 0.9291342318709603, "z": -0.4715836972636132, "time": "2025-11-21T08:48:00.000043"}, {"x": 2.71588998191801, "y": 0.9382178904174411, "z": -0.4706362154262787, "time": "2025-11-22T08:48:00.000043"}, {"x": 2.712275300848678, "y": 0.9472902969085341, "z": -0.4696830910275052, "time": "2025-11-23T08:48:00.000043"}, {"x": 2.708628084184314, "y": 0.9563513357389717, "z": -0.4687243320983612, "time": "2025-11-24T08:48:00.000043"}, {"x": 2.704948356024198, "y": 0.9654008912874826, "z": -0.4677599467367388, "time": "2025-11-25T08:48:00.000043"}, {"x": 2.701236140829496, "y": 0.9744388479178553, "z": -0.4667899431073031, "time": "2025-11-26T08:48:00.000043"}, {"x": 2.697491463422452, "y": 0.9834650899796388, "z": -0.465814329441473, "time": "2025-11-27T08:48:00.000043"}, {"x": 2.693714348985671, "y": 0.9924795018084752, "z": -0.464833114037439, "time": "2025-11-28T08:48:00.000043"}, {"x": 2.689904823061611, "y": 1.001481967726087, "z": -0.4638463052602311, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.441185', '2025-11-29 08:48:41.531378');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:null:null:1d', '299', NULL, NULL, '1d', '{"positions": [{"x": -0.4982251466129092, "y": -0.5244858319644088, "z": 0.021541885668656, "time": "2025-11-30T04:37:31.989230"}]}', '2025-12-07 04:37:38.081465', '2025-11-30 04:37:38.081465');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '2000001', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 2.789997805112434, "y": 0.7266806424751554, "z": -0.4909853212336058, "time": "2025-10-30T08:48:00.000043"}, {"x": 2.787137263737347, "y": 0.7359826520236293, "z": -0.4901638723160189, "time": "2025-10-31T08:48:00.000043"}, {"x": 2.784243731647354, "y": 0.7452759454808876, "z": -0.4893366210254809, "time": "2025-11-01T08:48:00.000043"}, {"x": 2.781317224767313, "y": 0.7545604079696083, "z": -0.4885035739346516, "time": "2025-11-02T08:48:00.000043"}, {"x": 2.778357759365697, "y": 0.7638359245705794, "z": -0.4876647376810622, "time": "2025-11-03T08:48:00.000043"}, {"x": 2.775365352055377, "y": 0.773102380323045, "z": -0.4868201189672577, "time": "2025-11-04T08:48:00.000043"}, {"x": 2.772340019794484, "y": 0.7823596602249446, "z": -0.4859697245609594, "time": "2025-11-05T08:48:00.000043"}, {"x": 2.769281779888053, "y": 0.7916076492353643, "z": -0.4851135612951151, "time": "2025-11-06T08:48:00.000043"}, {"x": 2.7661906499877, "y": 0.800846232272376, "z": -0.4842516360681499, "time": "2025-11-07T08:48:00.000043"}, {"x": 2.763066648093204, "y": 0.8100752942140679, "z": -0.4833839558441279, "time": "2025-11-08T08:48:00.000043"}, {"x": 2.759909792553922, "y": 0.8192947198996603, "z": -0.482510527652895, "time": "2025-11-09T08:48:00.000043"}, {"x": 2.75672010206999, "y": 0.8285043941302445, "z": -0.4816313585902317, "time": "2025-11-10T08:48:00.000043"}, {"x": 2.753497595693478, "y": 0.8377042016693622, "z": -0.4807464558180145, "time": "2025-11-11T08:48:00.000043"}, {"x": 2.750242292829627, "y": 0.8468940272435863, "z": -0.4798558265643884, "time": "2025-11-12T08:48:00.000043"}, {"x": 2.746954213238221, "y": 0.8560737555432278, "z": -0.4789594781239375, "time": "2025-11-13T08:48:00.000043"}, {"x": 2.743633377035057, "y": 0.8652432712232438, "z": -0.4780574178578526, "time": "2025-11-14T08:48:00.000043"}, {"x": 2.740279804693488, "y": 0.8744024589043922, "z": -0.4771496531940828, "time": "2025-11-15T08:48:00.000043"}, {"x": 2.736893517045954, "y": 0.883551203174647, "z": -0.4762361916274667, "time": "2025-11-16T08:48:00.000043"}, {"x": 2.733474535285424, "y": 0.8926893885908558, "z": -0.475317040719836, "time": "2025-11-17T08:48:00.000043"}, {"x": 2.730022880966675, "y": 0.9018168996806046, "z": -0.4743922081000866, "time": "2025-11-18T08:48:00.000043"}, {"x": 2.726538576007329, "y": 0.910933620944238, "z": -0.4734617014642167, "time": "2025-11-19T08:48:00.000043"}, {"x": 2.723021642688602, "y": 0.9200394368569622, "z": -0.4725255285753306, "time": "2025-11-20T08:48:00.000043"}, {"x": 2.71947210365572, "y": 0.9291342318709603, "z": -0.4715836972636132, "time": "2025-11-21T08:48:00.000043"}, {"x": 2.71588998191801, "y": 0.9382178904174411, "z": -0.4706362154262787, "time": "2025-11-22T08:48:00.000043"}, {"x": 2.712275300848678, "y": 0.9472902969085341, "z": -0.4696830910275052, "time": "2025-11-23T08:48:00.000043"}, {"x": 2.708628084184314, "y": 0.9563513357389717, "z": -0.4687243320983612, "time": "2025-11-24T08:48:00.000043"}, {"x": 2.704948356024198, "y": 0.9654008912874826, "z": -0.4677599467367388, "time": "2025-11-25T08:48:00.000043"}, {"x": 2.701236140829496, "y": 0.9744388479178553, "z": -0.4667899431073031, "time": "2025-11-26T08:48:00.000043"}, {"x": 2.697491463422452, "y": 0.9834650899796388, "z": -0.465814329441473, "time": "2025-11-27T08:48:00.000043"}, {"x": 2.693714348985671, "y": 0.9924795018084752, "z": -0.464833114037439, "time": "2025-11-28T08:48:00.000043"}, {"x": 2.689904823061611, "y": 1.001481967726087, "z": -0.4638463052602311, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.617975', '2025-11-29 08:49:15.466254');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '399', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 0.7948249504282126, "y": 0.5953043358850066, "z": -0.00003825824142607917, "time": "2025-10-30T08:48:00.000043"}, {"x": 0.7841088130433104, "y": 0.6089137163972417, "z": -0.00003960814050545087, "time": "2025-10-31T08:48:00.000043"}, {"x": 0.7731569759401594, "y": 0.6223380657957711, "z": -0.00004099410255712046, "time": "2025-11-01T08:48:00.000043"}, {"x": 0.7619727863347765, "y": 0.6355735142473483, "z": -0.0000423813927788245, "time": "2025-11-02T08:48:00.000043"}, {"x": 0.750559585996756, "y": 0.6486163147596565, "z": -0.00004373089656649862, "time": "2025-11-03T08:48:00.000043"}, {"x": 0.7389206802201425, "y": 0.6614628229774294, "z": -0.00004500168521749047, "time": "2025-11-04T08:48:00.000043"}, {"x": 0.7270593140870923, "y": 0.6741094606265904, "z": -0.00004615484294465211, "time": "2025-11-05T08:48:00.000043"}, {"x": 0.7149786663969153, "y": 0.6865526665653224, "z": -0.00004715798471812304, "time": "2025-11-06T08:48:00.000043"}, {"x": 0.702681868074161, "y": 0.6987888466829256, "z": -0.00004798933764514254, "time": "2025-11-07T08:48:00.000043"}, {"x": 0.690172042997357, "y": 0.7108143370833079, "z": -0.00004864017251363886, "time": "2025-11-08T08:48:00.000043"}, {"x": 0.6774523600350167, "y": 0.722625390638063, "z": -0.00004911494939727308, "time": "2025-11-09T08:48:00.000043"}, {"x": 0.6645260818400965, "y": 0.7342181874839299, "z": -0.00004942943976540176, "time": "2025-11-10T08:48:00.000043"}, {"x": 0.6513966000846364, "y": 0.7455888617908187, "z": -0.00004960771709346651, "time": "2025-11-11T08:48:00.000043"}, {"x": 0.6380674542339455, "y": 0.7567335345035678, "z": -0.00004967897658132686, "time": "2025-11-12T08:48:00.000043"}, {"x": 0.6245423367400254, "y": 0.7676483441463344, "z": -0.00004967481221017869, "time": "2025-11-13T08:48:00.000043"}, {"x": 0.6108250897322177, "y": 0.778329471921897, "z": -0.00004962717113985154, "time": "2025-11-14T08:48:00.000043"}, {"x": 0.5969196977501685, "y": 0.788773160672812, "z": -0.00004956692654527087, "time": "2025-11-15T08:48:00.000043"}, {"x": 0.5828302794389635, "y": 0.7989757289949486, "z": -0.00004952289490475643, "time": "2025-11-16T08:48:00.000043"}, {"x": 0.5685610795439817, "y": 0.8089335822188798, "z": -0.00004952112090114712, "time": "2025-11-17T08:48:00.000043"}, {"x": 0.5541164614487288, "y": 0.8186432216859935, "z": -0.00004958430177647163, "time": "2025-11-18T08:48:00.000043"}, {"x": 0.5395008999305764, "y": 0.8281012531994473, "z": -0.00004973128270112548, "time": "2025-11-19T08:48:00.000043"}, {"x": 0.5247189736535969, "y": 0.8373043949937262, "z": -0.00004997660446315435, "time": "2025-11-20T08:48:00.000043"}, {"x": 0.509775357030411, "y": 0.8462494851803783, "z": -0.00005033011553819346, "time": "2025-11-21T08:48:00.000043"}, {"x": 0.4946748113219496, "y": 0.8549334884514439, "z": -0.00005079667037281624, "time": "2025-11-22T08:48:00.000043"}, {"x": 0.4794221750688296, "y": 0.8633535018529302, "z": -0.00005137592792125451, "time": "2025-11-23T08:48:00.000043"}, {"x": 0.4640223540479581, "y": 0.8715067596159553, "z": -0.00005206224715659042, "time": "2025-11-24T08:48:00.000043"}, {"x": 0.4484803108576155, "y": 0.8793906372430818, "z": -0.00005284466047011186, "time": "2025-11-25T08:48:00.000043"}, {"x": 0.4328010539523359, "y": 0.8870026551596858, "z": -0.00005370690299643812, "time": "2025-11-26T08:48:00.000043"}, {"x": 0.4169896255415236, "y": 0.8943404821264985, "z": -0.00005462749538103633, "time": "2025-11-27T08:48:00.000043"}, {"x": 0.4010510873674503, "y": 0.9014019381634903, "z": -0.00005557992506822715, "time": "2025-11-28T08:48:00.000043"}, {"x": 0.3849905032084964, "y": 0.9081849958966438, "z": -0.00005653304643637654, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.673748', '2025-11-29 08:49:15.676488');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '399', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 0.7948249504282126, "y": 0.5953043358850066, "z": -0.00003825824142607917, "time": "2025-10-30T08:48:00.000043"}, {"x": 0.7841088130433104, "y": 0.6089137163972417, "z": -0.00003960814050545087, "time": "2025-10-31T08:48:00.000043"}, {"x": 0.7731569759401594, "y": 0.6223380657957711, "z": -0.00004099410255712046, "time": "2025-11-01T08:48:00.000043"}, {"x": 0.7619727863347765, "y": 0.6355735142473483, "z": -0.0000423813927788245, "time": "2025-11-02T08:48:00.000043"}, {"x": 0.750559585996756, "y": 0.6486163147596565, "z": -0.00004373089656649862, "time": "2025-11-03T08:48:00.000043"}, {"x": 0.7389206802201425, "y": 0.6614628229774294, "z": -0.00004500168521749047, "time": "2025-11-04T08:48:00.000043"}, {"x": 0.7270593140870923, "y": 0.6741094606265904, "z": -0.00004615484294465211, "time": "2025-11-05T08:48:00.000043"}, {"x": 0.7149786663969153, "y": 0.6865526665653224, "z": -0.00004715798471812304, "time": "2025-11-06T08:48:00.000043"}, {"x": 0.702681868074161, "y": 0.6987888466829256, "z": -0.00004798933764514254, "time": "2025-11-07T08:48:00.000043"}, {"x": 0.690172042997357, "y": 0.7108143370833079, "z": -0.00004864017251363886, "time": "2025-11-08T08:48:00.000043"}, {"x": 0.6774523600350167, "y": 0.722625390638063, "z": -0.00004911494939727308, "time": "2025-11-09T08:48:00.000043"}, {"x": 0.6645260818400965, "y": 0.7342181874839299, "z": -0.00004942943976540176, "time": "2025-11-10T08:48:00.000043"}, {"x": 0.6513966000846364, "y": 0.7455888617908187, "z": -0.00004960771709346651, "time": "2025-11-11T08:48:00.000043"}, {"x": 0.6380674542339455, "y": 0.7567335345035678, "z": -0.00004967897658132686, "time": "2025-11-12T08:48:00.000043"}, {"x": 0.6245423367400254, "y": 0.7676483441463344, "z": -0.00004967481221017869, "time": "2025-11-13T08:48:00.000043"}, {"x": 0.6108250897322177, "y": 0.778329471921897, "z": -0.00004962717113985154, "time": "2025-11-14T08:48:00.000043"}, {"x": 0.5969196977501685, "y": 0.788773160672812, "z": -0.00004956692654527087, "time": "2025-11-15T08:48:00.000043"}, {"x": 0.5828302794389635, "y": 0.7989757289949486, "z": -0.00004952289490475643, "time": "2025-11-16T08:48:00.000043"}, {"x": 0.5685610795439817, "y": 0.8089335822188798, "z": -0.00004952112090114712, "time": "2025-11-17T08:48:00.000043"}, {"x": 0.5541164614487288, "y": 0.8186432216859935, "z": -0.00004958430177647163, "time": "2025-11-18T08:48:00.000043"}, {"x": 0.5395008999305764, "y": 0.8281012531994473, "z": -0.00004973128270112548, "time": "2025-11-19T08:48:00.000043"}, {"x": 0.5247189736535969, "y": 0.8373043949937262, "z": -0.00004997660446315435, "time": "2025-11-20T08:48:00.000043"}, {"x": 0.509775357030411, "y": 0.8462494851803783, "z": -0.00005033011553819346, "time": "2025-11-21T08:48:00.000043"}, {"x": 0.4946748113219496, "y": 0.8549334884514439, "z": -0.00005079667037281624, "time": "2025-11-22T08:48:00.000043"}, {"x": 0.4794221750688296, "y": 0.8633535018529302, "z": -0.00005137592792125451, "time": "2025-11-23T08:48:00.000043"}, {"x": 0.4640223540479581, "y": 0.8715067596159553, "z": -0.00005206224715659042, "time": "2025-11-24T08:48:00.000043"}, {"x": 0.4484803108576155, "y": 0.8793906372430818, "z": -0.00005284466047011186, "time": "2025-11-25T08:48:00.000043"}, {"x": 0.4328010539523359, "y": 0.8870026551596858, "z": -0.00005370690299643812, "time": "2025-11-26T08:48:00.000043"}, {"x": 0.4169896255415236, "y": 0.8943404821264985, "z": -0.00005462749538103633, "time": "2025-11-27T08:48:00.000043"}, {"x": 0.4010510873674503, "y": 0.9014019381634903, "z": -0.00005557992506822715, "time": "2025-11-28T08:48:00.000043"}, {"x": 0.3849905032084964, "y": 0.9081849958966438, "z": -0.00005653304643637654, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.708329', '2025-11-29 08:49:15.712174');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '136199', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 85.24401663526359, "y": 39.40976021107112, "z": -17.55840760406556, "time": "2025-10-30T08:48:00.000043"}, {"x": 85.243539946004, "y": 39.41061912429473, "z": -17.55747054603323, "time": "2025-10-31T08:48:00.000043"}, {"x": 85.24306322978791, "y": 39.41147801354683, "z": -17.5565334820553, "time": "2025-11-01T08:48:00.000043"}, {"x": 85.24258648662136, "y": 39.41233687884816, "z": -17.55559641213106, "time": "2025-11-02T08:48:00.000043"}, {"x": 85.24210971650923, "y": 39.41319572021791, "z": -17.55465933625985, "time": "2025-11-03T08:48:00.000043"}, {"x": 85.2416329194552, "y": 39.41405453767349, "z": -17.55372225444103, "time": "2025-11-04T08:48:00.000043"}, {"x": 85.24115609546205, "y": 39.41491333123044, "z": -17.55278516667412, "time": "2025-11-05T08:48:00.000043"}, {"x": 85.2406792445317, "y": 39.41577210090202, "z": -17.55184807295875, "time": "2025-11-06T08:48:00.000043"}, {"x": 85.24020236666563, "y": 39.41663084669907, "z": -17.55091097329469, "time": "2025-11-07T08:48:00.000043"}, {"x": 85.23972546186499, "y": 39.41748956862976, "z": -17.54997386768198, "time": "2025-11-08T08:48:00.000043"}, {"x": 85.23924853013112, "y": 39.41834826669941, "z": -17.5490367561209, "time": "2025-11-09T08:48:00.000043"}, {"x": 85.23877157146593, "y": 39.41920694091028, "z": -17.54809963861203, "time": "2025-11-10T08:48:00.000043"}, {"x": 85.2382945858724, "y": 39.42006559126151, "z": -17.54716251515637, "time": "2025-11-11T08:48:00.000043"}, {"x": 85.2378175733553, "y": 39.42092421774905, "z": -17.5462253857553, "time": "2025-11-12T08:48:00.000043"}, {"x": 85.23734053392174, "y": 39.42178282036581, "z": -17.54528825041071, "time": "2025-11-13T08:48:00.000043"}, {"x": 85.23686346758194, "y": 39.42264139910181, "z": -17.54435110912503, "time": "2025-11-14T08:48:00.000043"}, {"x": 85.23638637434999, "y": 39.42349995394467, "z": -17.54341396190122, "time": "2025-11-15T08:48:00.000043"}, {"x": 85.23590925424448, "y": 39.42435848488012, "z": -17.54247680874284, "time": "2025-11-16T08:48:00.000043"}, {"x": 85.23543210728927, "y": 39.42521699189288, "z": -17.541539649654, "time": "2025-11-17T08:48:00.000043"}, {"x": 85.23495493351395, "y": 39.42607547496763, "z": -17.54060248463936, "time": "2025-11-18T08:48:00.000043"}, {"x": 85.2344777329541, "y": 39.42693393409017, "z": -17.53966531370403, "time": "2025-11-19T08:48:00.000043"}, {"x": 85.23400050565141, "y": 39.42779236924881, "z": -17.53872813685349, "time": "2025-11-20T08:48:00.000043"}, {"x": 85.23352325165327, "y": 39.42865078043567, "z": -17.53779095409338, "time": "2025-11-21T08:48:00.000043"}, {"x": 85.23304597101215, "y": 39.42950916764804, "z": -17.53685376542946, "time": "2025-11-22T08:48:00.000043"}, {"x": 85.23256866378475, "y": 39.43036753088958, "z": -17.5359165708673, "time": "2025-11-23T08:48:00.000043"}, {"x": 85.23209133003047, "y": 39.43122587017115, "z": -17.53497937041212, "time": "2025-11-24T08:48:00.000043"}, {"x": 85.23161396981011, "y": 39.43208418551142, "z": -17.53404216406863, "time": "2025-11-25T08:48:00.000043"}, {"x": 85.23113658318418, "y": 39.4329424769371, "z": -17.53310495184087, "time": "2025-11-26T08:48:00.000043"}, {"x": 85.23065917021125, "y": 39.4338007444826, "z": -17.53216773373204, "time": "2025-11-27T08:48:00.000043"}, {"x": 85.23018173094665, "y": 39.43465898818946, "z": -17.53123050974444, "time": "2025-11-28T08:48:00.000043"}, {"x": 85.2297042654411, "y": 39.43551720810552, "z": -17.53029327987943, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.728', '2025-11-29 08:49:15.731099');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '136199', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 85.24401663526359, "y": 39.40976021107112, "z": -17.55840760406556, "time": "2025-10-30T08:48:00.000043"}, {"x": 85.243539946004, "y": 39.41061912429473, "z": -17.55747054603323, "time": "2025-10-31T08:48:00.000043"}, {"x": 85.24306322978791, "y": 39.41147801354683, "z": -17.5565334820553, "time": "2025-11-01T08:48:00.000043"}, {"x": 85.24258648662136, "y": 39.41233687884816, "z": -17.55559641213106, "time": "2025-11-02T08:48:00.000043"}, {"x": 85.24210971650923, "y": 39.41319572021791, "z": -17.55465933625985, "time": "2025-11-03T08:48:00.000043"}, {"x": 85.2416329194552, "y": 39.41405453767349, "z": -17.55372225444103, "time": "2025-11-04T08:48:00.000043"}, {"x": 85.24115609546205, "y": 39.41491333123044, "z": -17.55278516667412, "time": "2025-11-05T08:48:00.000043"}, {"x": 85.2406792445317, "y": 39.41577210090202, "z": -17.55184807295875, "time": "2025-11-06T08:48:00.000043"}, {"x": 85.24020236666563, "y": 39.41663084669907, "z": -17.55091097329469, "time": "2025-11-07T08:48:00.000043"}, {"x": 85.23972546186499, "y": 39.41748956862976, "z": -17.54997386768198, "time": "2025-11-08T08:48:00.000043"}, {"x": 85.23924853013112, "y": 39.41834826669941, "z": -17.5490367561209, "time": "2025-11-09T08:48:00.000043"}, {"x": 85.23877157146593, "y": 39.41920694091028, "z": -17.54809963861203, "time": "2025-11-10T08:48:00.000043"}, {"x": 85.2382945858724, "y": 39.42006559126151, "z": -17.54716251515637, "time": "2025-11-11T08:48:00.000043"}, {"x": 85.2378175733553, "y": 39.42092421774905, "z": -17.5462253857553, "time": "2025-11-12T08:48:00.000043"}, {"x": 85.23734053392174, "y": 39.42178282036581, "z": -17.54528825041071, "time": "2025-11-13T08:48:00.000043"}, {"x": 85.23686346758194, "y": 39.42264139910181, "z": -17.54435110912503, "time": "2025-11-14T08:48:00.000043"}, {"x": 85.23638637434999, "y": 39.42349995394467, "z": -17.54341396190122, "time": "2025-11-15T08:48:00.000043"}, {"x": 85.23590925424448, "y": 39.42435848488012, "z": -17.54247680874284, "time": "2025-11-16T08:48:00.000043"}, {"x": 85.23543210728927, "y": 39.42521699189288, "z": -17.541539649654, "time": "2025-11-17T08:48:00.000043"}, {"x": 85.23495493351395, "y": 39.42607547496763, "z": -17.54060248463936, "time": "2025-11-18T08:48:00.000043"}, {"x": 85.2344777329541, "y": 39.42693393409017, "z": -17.53966531370403, "time": "2025-11-19T08:48:00.000043"}, {"x": 85.23400050565141, "y": 39.42779236924881, "z": -17.53872813685349, "time": "2025-11-20T08:48:00.000043"}, {"x": 85.23352325165327, "y": 39.42865078043567, "z": -17.53779095409338, "time": "2025-11-21T08:48:00.000043"}, {"x": 85.23304597101215, "y": 39.42950916764804, "z": -17.53685376542946, "time": "2025-11-22T08:48:00.000043"}, {"x": 85.23256866378475, "y": 39.43036753088958, "z": -17.5359165708673, "time": "2025-11-23T08:48:00.000043"}, {"x": 85.23209133003047, "y": 39.43122587017115, "z": -17.53497937041212, "time": "2025-11-24T08:48:00.000043"}, {"x": 85.23161396981011, "y": 39.43208418551142, "z": -17.53404216406863, "time": "2025-11-25T08:48:00.000043"}, {"x": 85.23113658318418, "y": 39.4329424769371, "z": -17.53310495184087, "time": "2025-11-26T08:48:00.000043"}, {"x": 85.23065917021125, "y": 39.4338007444826, "z": -17.53216773373204, "time": "2025-11-27T08:48:00.000043"}, {"x": 85.23018173094665, "y": 39.43465898818946, "z": -17.53123050974444, "time": "2025-11-28T08:48:00.000043"}, {"x": 85.2297042654411, "y": 39.43551720810552, "z": -17.53029327987943, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.76417', '2025-11-29 08:49:15.767156');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '136108', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": -37.10918629711033, "y": -23.49791665232343, "z": 23.55862105733824, "time": "2025-10-30T08:48:00.000043"}, {"x": -37.10781036480758, "y": -23.49967218917282, "z": 23.55849000323084, "time": "2025-10-31T08:48:00.000043"}, {"x": -37.1064343417107, "y": -23.50142768036839, "z": 23.5583588927387, "time": "2025-11-01T08:48:00.000043"}, {"x": -37.10505822781547, "y": -23.50318312588395, "z": 23.55822772586222, "time": "2025-11-02T08:48:00.000043"}, {"x": -37.10368202311889, "y": -23.50493852569483, "z": 23.55809650260177, "time": "2025-11-03T08:48:00.000043"}, {"x": -37.10230572761909, "y": -23.50669387977808, "z": 23.55796522295765, "time": "2025-11-04T08:48:00.000043"}, {"x": -37.10092934131518, "y": -23.50844918811273, "z": 23.55783388693006, "time": "2025-11-05T08:48:00.000043"}, {"x": -37.09955286420701, "y": -23.51020445068001, "z": 23.55770249451907, "time": "2025-11-06T08:48:00.000043"}, {"x": -37.09817629629504, "y": -23.5119596674636, "z": 23.55757104572459, "time": "2025-11-07T08:48:00.000043"}, {"x": -37.09679963757991, "y": -23.51371483844983, "z": 23.55743954054628, "time": "2025-11-08T08:48:00.000043"}, {"x": -37.09542288806214, "y": -23.51546996362791, "z": 23.55730797898357, "time": "2025-11-09T08:48:00.000043"}, {"x": -37.09404604774169, "y": -23.51722504299007, "z": 23.55717636103555, "time": "2025-11-10T08:48:00.000043"}, {"x": -37.09266911661738, "y": -23.51898007653172, "z": 23.55704468670094, "time": "2025-11-11T08:48:00.000043"}, {"x": -37.09129209468632, "y": -23.52073506425138, "z": 23.55691295597803, "time": "2025-11-12T08:48:00.000043"}, {"x": -37.08991498194325, "y": -23.5224900061507, "z": 23.55678116886464, "time": "2025-11-13T08:48:00.000043"}, {"x": -37.08853777837979, "y": -23.52424490223413, "z": 23.55664932535803, "time": "2025-11-14T08:48:00.000043"}, {"x": -37.08716048398373, "y": -23.5259997525086, "z": 23.55651742545495, "time": "2025-11-15T08:48:00.000043"}, {"x": -37.08578309873827, "y": -23.52775455698285, "z": 23.55638546915152, "time": "2025-11-16T08:48:00.000043"}, {"x": -37.08440562262142, "y": -23.5295093156667, "z": 23.55625345644333, "time": "2025-11-17T08:48:00.000043"}, {"x": -37.08302805560547, "y": -23.53126402857, "z": 23.55612138732541, "time": "2025-11-18T08:48:00.000043"}, {"x": -37.08165039765665, "y": -23.53301869570141, "z": 23.55598926179236, "time": "2025-11-19T08:48:00.000043"}, {"x": -37.08027264873517, "y": -23.53477331706718, "z": 23.55585707983839, "time": "2025-11-20T08:48:00.000043"}, {"x": -37.07889480879546, "y": -23.53652789266968, "z": 23.55572484145754, "time": "2025-11-21T08:48:00.000043"}, {"x": -37.07751687778686, "y": -23.53828242250612, "z": 23.55559254664378, "time": "2025-11-22T08:48:00.000043"}, {"x": -37.07613885565458, "y": -23.54003690656739, "z": 23.55546019539121, "time": "2025-11-23T08:48:00.000043"}, {"x": -37.07476074234103, "y": -23.54179134483712, "z": 23.55532778769431, "time": "2025-11-24T08:48:00.000043"}, {"x": -37.07338253778726, "y": -23.54354573729113, "z": 23.55519532354806, "time": "2025-11-25T08:48:00.000043"}, {"x": -37.07200424193466, "y": -23.54530008389725, "z": 23.55506280294812, "time": "2025-11-26T08:48:00.000043"}, {"x": -37.07062585472645, "y": -23.5470543846156, "z": 23.554930225891, "time": "2025-11-27T08:48:00.000043"}, {"x": -37.0692473761092, "y": -23.54880863939909, "z": 23.55479759237409, "time": "2025-11-28T08:48:00.000043"}, {"x": -37.06786880603401, "y": -23.55056284819443, "z": 23.55466490239571, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.784222', '2025-11-29 08:49:15.786939');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '599', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": -1.234770517958942, "y": 5.040025929236042, "z": 0.006690075880909382, "time": "2025-10-30T08:48:00.000043"}, {"x": -1.242192696074162, "y": 5.038577248254766, "z": 0.006862175549920273, "time": "2025-10-31T08:48:00.000043"}, {"x": -1.249612328901288, "y": 5.037118588393084, "z": 0.007034283177860224, "time": "2025-11-01T08:48:00.000043"}, {"x": -1.257030178465089, "y": 5.035648599188915, "z": 0.007206341126325722, "time": "2025-11-02T08:48:00.000043"}, {"x": -1.264445330545771, "y": 5.034168049624242, "z": 0.007378389902536967, "time": "2025-11-03T08:48:00.000043"}, {"x": -1.271857742913725, "y": 5.032676105433246, "z": 0.007550395853358825, "time": "2025-11-04T08:48:00.000043"}, {"x": -1.279267660562733, "y": 5.031173504172301, "z": 0.007722381411912308, "time": "2025-11-05T08:48:00.000043"}, {"x": -1.286673867671541, "y": 5.029659731613509, "z": 0.007894348777316191, "time": "2025-11-06T08:48:00.000043"}, {"x": -1.294077361686363, "y": 5.028135867517717, "z": 0.008066321012296821, "time": "2025-11-07T08:48:00.000043"}, {"x": -1.301477884010466, "y": 5.026602014039907, "z": 0.008238301384607025, "time": "2025-11-08T08:48:00.000043"}, {"x": -1.308876472434138, "y": 5.025057124121888, "z": 0.008410238548177263, "time": "2025-11-09T08:48:00.000043"}, {"x": -1.31627204236155, "y": 5.023501801486307, "z": 0.008582169763613342, "time": "2025-11-10T08:48:00.000043"}, {"x": -1.323664841503954, "y": 5.021935301766136, "z": 0.008754060467647673, "time": "2025-11-11T08:48:00.000043"}, {"x": -1.331054966426289, "y": 5.020358444958092, "z": 0.008925937413736509, "time": "2025-11-12T08:48:00.000043"}, {"x": -1.33844147897794, "y": 5.018770458703486, "z": 0.00909778976597054, "time": "2025-11-13T08:48:00.000043"}, {"x": -1.345825194953586, "y": 5.017172619104704, "z": 0.00926965107732257, "time": "2025-11-14T08:48:00.000043"}, {"x": -1.353205910391472, "y": 5.015564822345159, "z": 0.00944151660021308, "time": "2025-11-15T08:48:00.000043"}, {"x": -1.360584868465062, "y": 5.01394623319608, "z": 0.009613339567828285, "time": "2025-11-16T08:48:00.000043"}, {"x": -1.367960820711162, "y": 5.012317106435423, "z": 0.009785147822372959, "time": "2025-11-17T08:48:00.000043"}, {"x": -1.375334181999726, "y": 5.010676748612221, "z": 0.009956906722022185, "time": "2025-11-18T08:48:00.000043"}, {"x": -1.382704760513318, "y": 5.009025940443207, "z": 0.01012864514888263, "time": "2025-11-19T08:48:00.000043"}, {"x": -1.390071804927492, "y": 5.007363711091368, "z": 0.01030034245454327, "time": "2025-11-20T08:48:00.000043"}, {"x": -1.397435761194399, "y": 5.005691517538988, "z": 0.0104720444997841, "time": "2025-11-21T08:48:00.000043"}, {"x": -1.404796425730352, "y": 5.004009154712879, "z": 0.01064374265545971, "time": "2025-11-22T08:48:00.000043"}, {"x": -1.4121551059428, "y": 5.00231615290492, "z": 0.01081540158608546, "time": "2025-11-23T08:48:00.000043"}, {"x": -1.419510448697383, "y": 5.000612519776697, "z": 0.01098704182468515, "time": "2025-11-24T08:48:00.000043"}, {"x": -1.426863032350462, "y": 4.998897799481392, "z": 0.01115863490700932, "time": "2025-11-25T08:48:00.000043"}, {"x": -1.43421246689912, "y": 4.99717278013495, "z": 0.01133021183354188, "time": "2025-11-26T08:48:00.000043"}, {"x": -1.441558336995182, "y": 4.995436440921636, "z": 0.0115017449799716, "time": "2025-11-27T08:48:00.000043"}, {"x": -1.448900817296946, "y": 4.993690369484624, "z": 0.01167328929313386, "time": "2025-11-28T08:48:00.000043"}, {"x": -1.456239886914168, "y": 4.991934260667651, "z": 0.01184483005017503, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.909515', '2025-11-29 08:49:15.912378');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '199', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 0.3002085531055493, "y": -0.2805862546138634, "z": -0.05046513700479831, "time": "2025-10-30T08:48:00.000043"}, {"x": 0.3132055633076167, "y": -0.2581298113786474, "z": -0.04982202453666761, "time": "2025-10-31T08:48:00.000043"}, {"x": 0.3248468843442118, "y": -0.2345569803060402, "z": -0.04896333491461555, "time": "2025-11-01T08:48:00.000043"}, {"x": 0.3350265344689138, "y": -0.2099296954914092, "z": -0.04788440895034134, "time": "2025-11-02T08:48:00.000043"}, {"x": 0.3436365695628484, "y": -0.1843198791445746, "z": -0.04658122372133078, "time": "2025-11-03T08:48:00.000043"}, {"x": 0.3505677199733409, "y": -0.1578105942664243, "z": -0.04505054518089093, "time": "2025-11-04T08:48:00.000043"}, {"x": 0.3557102524226779, "y": -0.1304972613374569, "z": -0.04329010664270994, "time": "2025-11-05T08:48:00.000043"}, {"x": 0.3589551013256468, "y": -0.1024889133627125, "z": -0.04129881511002974, "time": "2025-11-06T08:48:00.000043"}, {"x": 0.3601953170080627, "y": -0.07390945045785592, "z": -0.03907698663331739, "time": "2025-11-07T08:48:00.000043"}, {"x": 0.3593278790314031, "y": -0.04489883857682186, "z": -0.03662661059039517, "time": "2025-11-08T08:48:00.000043"}, {"x": 0.3562559195653974, "y": -0.01561417688319587, "z": -0.03395164084120689, "time": "2025-11-09T08:48:00.000043"}, {"x": 0.3508913925499121, "y": 0.01376946494426799, "z": -0.03105830896860876, "time": "2025-11-10T08:48:00.000043"}, {"x": 0.3431582069337978, "y": 0.04305856331875082, "z": -0.02795545116146122, "time": "2025-11-11T08:48:00.000043"}, {"x": 0.3329958141253149, "y": 0.07204115984702743, "z": -0.02465483569269391, "time": "2025-11-12T08:48:00.000043"}, {"x": 0.3203631988130347, "y": 0.1004875520309488, "z": -0.02117147250952596, "time": "2025-11-13T08:48:00.000043"}, {"x": 0.3052431674629218, "y": 0.1281518354837221, "z": -0.01752388053851939, "time": "2025-11-14T08:48:00.000043"}, {"x": 0.2876467611236943, "y": 0.1547744716025753, "z": -0.01373428258931278, "time": "2025-11-15T08:48:00.000043"}, {"x": 0.2676175430739107, "y": 0.1800860239594816, "z": -0.009828693268389277, "time": "2025-11-16T08:48:00.000043"}, {"x": 0.2452354361434927, "y": 0.2038121440544823, "z": -0.005836863488227135, "time": "2025-11-17T08:48:00.000043"}, {"x": 0.2206197229043148, "y": 0.2256797884390294, "z": -0.001792047564637687, "time": "2025-11-18T08:48:00.000043"}, {"x": 0.1939307918705297, "y": 0.2454245167028879, "z": 0.002269433032071872, "time": "2025-11-19T08:48:00.000043"}, {"x": 0.165370232777133, "y": 0.2627985646498613, "z": 0.006308840697963814, "time": "2025-11-20T08:48:00.000043"}, {"x": 0.1351789681261961, "y": 0.2775792307218236, "z": 0.01028587842825836, "time": "2025-11-21T08:48:00.000043"}, {"x": 0.1036332603273057, "y": 0.2895769863842703, "z": 0.0141597188409537, "time": "2025-11-22T08:48:00.000043"}, {"x": 0.07103864212016323, "y": 0.2986426553682997, "z": 0.01789014758055734, "time": "2025-11-23T08:48:00.000043"}, {"x": 0.03772205364511896, "y": 0.3046730284328534, "z": 0.02143874335398548, "time": "2025-11-24T08:48:00.000043"}, {"x": 0.004022690829329854, "y": 0.3076143995153969, "z": 0.02477000629467503, "time": "2025-11-25T08:48:00.000043"}, {"x": -0.02971776770952606, "y": 0.3074637132504249, "z": 0.02785234812387551, "time": "2025-11-26T08:48:00.000043"}, {"x": -0.06316481852790486, "y": 0.3042672687421802, "z": 0.03065887203409728, "time": "2025-11-27T08:48:00.000043"}, {"x": -0.09599997624792266, "y": 0.2981171829438189, "z": 0.03316789473325153, "time": "2025-11-28T08:48:00.000043"}, {"x": -0.1279282339151008, "y": 0.2891460319518427, "z": 0.03536319277834199, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.016427', '2025-11-29 08:49:16.01957');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '899', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 29.87659754254188, "y": 0.321170060525777, "z": -0.6950959450811711, "time": "2025-10-30T08:48:00.000043"}, {"x": 29.87653614899047, "y": 0.3243284290259524, "z": -0.6951592283795726, "time": "2025-10-31T08:48:00.000043"}, {"x": 29.87647482566418, "y": 0.3274867937875535, "z": -0.6952228272922043, "time": "2025-11-01T08:48:00.000043"}, {"x": 29.87641320877596, "y": 0.330644779205934, "z": -0.6952867788370805, "time": "2025-11-02T08:48:00.000043"}, {"x": 29.87635089709879, "y": 0.3338023889348199, "z": -0.6953507458971854, "time": "2025-11-03T08:48:00.000043"}, {"x": 29.87628786849518, "y": 0.3369600021006172, "z": -0.6954143672211651, "time": "2025-11-04T08:48:00.000043"}, {"x": 29.87622450289877, "y": 0.340117979571656, "z": -0.6954776325198532, "time": "2025-11-05T08:48:00.000043"}, {"x": 29.87616118797627, "y": 0.3432762892540426, "z": -0.6955408931991763, "time": "2025-11-06T08:48:00.000043"}, {"x": 29.87609791657525, "y": 0.3464345393811111, "z": -0.6956044974987752, "time": "2025-11-07T08:48:00.000043"}, {"x": 29.87603429406942, "y": 0.349592385099573, "z": -0.6956684289284697, "time": "2025-11-08T08:48:00.000043"}, {"x": 29.87596994809212, "y": 0.3527498865883217, "z": -0.6957323233510287, "time": "2025-11-09T08:48:00.000043"}, {"x": 29.87590491508192, "y": 0.3559074465300474, "z": -0.6957958470479796, "time": "2025-11-10T08:48:00.000043"}, {"x": 29.87583960245083, "y": 0.3590653920737722, "z": -0.6958590431676341, "time": "2025-11-11T08:48:00.000043"}, {"x": 29.87577436563794, "y": 0.3622236351600482, "z": -0.6959222869344496, "time": "2025-11-12T08:48:00.000043"}, {"x": 29.87570913911734, "y": 0.3653817639420155, "z": -0.6959858960836494, "time": "2025-11-13T08:48:00.000043"}, {"x": 29.87564350445572, "y": 0.3685394702533296, "z": -0.6960498009890581, "time": "2025-11-14T08:48:00.000043"}, {"x": 29.87557712488271, "y": 0.3716968696015709, "z": -0.6961136169766103, "time": "2025-11-15T08:48:00.000043"}, {"x": 29.87551009480623, "y": 0.374854381069353, "z": -0.6961770437175672, "time": "2025-11-16T08:48:00.000043"}, {"x": 29.87544284185669, "y": 0.3780122920672471, "z": -0.6962401770861936, "time": "2025-11-17T08:48:00.000043"}, {"x": 29.8753756829251, "y": 0.3811704599933619, "z": -0.6963034095860624, "time": "2025-11-18T08:48:00.000043"}, {"x": 29.87530849500605, "y": 0.38432846022314, "z": -0.6963670227694818, "time": "2025-11-19T08:48:00.000043"}, {"x": 29.87524084299675, "y": 0.3874860268448437, "z": -0.6964308949493285, "time": "2025-11-20T08:48:00.000043"}, {"x": 29.87517243165974, "y": 0.3906433289663592, "z": -0.696494627525703, "time": "2025-11-21T08:48:00.000043"}, {"x": 29.8751034119906, "y": 0.3938007950004093, "z": -0.6965579588030245, "time": "2025-11-22T08:48:00.000043"}, {"x": 29.87503422468789, "y": 0.3969586677244102, "z": -0.696621035805359, "time": "2025-11-23T08:48:00.000043"}, {"x": 29.87496514274047, "y": 0.4001167523308015, "z": -0.6966842616219342, "time": "2025-11-24T08:48:00.000043"}, {"x": 29.87489598791381, "y": 0.4032746185657099, "z": -0.6967478768789536, "time": "2025-11-25T08:48:00.000043"}, {"x": 29.87482631583977, "y": 0.40643204724821, "z": -0.6968117099449748, "time": "2025-11-26T08:48:00.000043"}, {"x": 29.87475587759063, "y": 0.4095892579473724, "z": -0.6968753551564214, "time": "2025-11-27T08:48:00.000043"}, {"x": 29.87468487792474, "y": 0.4127466810665335, "z": -0.6969385938918807, "time": "2025-11-28T08:48:00.000043"}, {"x": 29.87461376275291, "y": 0.4159045108771062, "z": -0.6970016215802743, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.146222', '2025-11-29 08:49:16.149238');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '-168', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": -0.5528633234732749, "y": -1.399279056637429, "z": -0.01576827831573396, "time": "2025-10-30T08:48:00.000043"}, {"x": -0.5392961410317796, "y": -1.40316225226667, "z": -0.0161824606662972, "time": "2025-10-31T08:48:00.000043"}, {"x": -0.5256824670378464, "y": -1.406923201728856, "z": -0.01659499021566624, "time": "2025-11-01T08:48:00.000043"}, {"x": -0.5120233539600993, "y": -1.410561172667051, "z": -0.0170058287805287, "time": "2025-11-02T08:48:00.000043"}, {"x": -0.4983198523085396, "y": -1.414075443953025, "z": -0.01741494421063252, "time": "2025-11-03T08:48:00.000043"}, {"x": -0.4845730112522929, "y": -1.417465307909753, "z": -0.01782231020018391, "time": "2025-11-04T08:48:00.000043"}, {"x": -0.4707838795164921, "y": -1.420730072405868, "z": -0.01822790595035024, "time": "2025-11-05T08:48:00.000043"}, {"x": -0.4569535065347045, "y": -1.423869062772448, "z": -0.01863171569168929, "time": "2025-11-06T08:48:00.000043"}, {"x": -0.4430829438290549, "y": -1.426881623497624, "z": -0.01903372807796942, "time": "2025-11-07T08:48:00.000043"}, {"x": -0.4291732465808157, "y": -1.429767119658483, "z": -0.01943393546686116, "time": "2025-11-08T08:48:00.000043"}, {"x": -0.4152254753498053, "y": -1.432524938058773, "z": -0.0198323331065636, "time": "2025-11-09T08:48:00.000043"}, {"x": -0.4012406978990521, "y": -1.43515448804877, "z": -0.02022891824862243, "time": "2025-11-10T08:48:00.000043"}, {"x": -0.3872199910784633, "y": -1.437655202011801, "z": -0.02062368920894639, "time": "2025-11-11T08:48:00.000043"}, {"x": -0.3731644427192947, "y": -1.440026535508369, "z": -0.02101664440078636, "time": "2025-11-12T08:48:00.000043"}, {"x": -0.3590751534893741, "y": -1.442267967077028, "z": -0.02140778136399952, "time": "2025-11-13T08:48:00.000043"}, {"x": -0.3449532386595711, "y": -1.444378997701969, "z": -0.02179709581693333, "time": "2025-11-14T08:48:00.000043"}, {"x": -0.3307998297360029, "y": -1.446359149966002, "z": -0.02218458075374879, "time": "2025-11-15T08:48:00.000043"}, {"x": -0.3166160759168677, "y": -1.448207966914105, "z": -0.02257022560972545, "time": "2025-11-16T08:48:00.000043"}, {"x": -0.302403145336076, "y": -1.449925010659448, "z": -0.02295401551585208, "time": "2025-11-17T08:48:00.000043"}, {"x": -0.2881622260595761, "y": -1.451509860770303, "z": -0.02333593066167638, "time": "2025-11-18T08:48:00.000043"}, {"x": -0.2738945268072798, "y": -1.452962112484435, "z": -0.02371594578256638, "time": "2025-11-19T08:48:00.000043"}, {"x": -0.2596012773804539, "y": -1.45428137480181, "z": -0.02409402978552645, "time": "2025-11-20T08:48:00.000043"}, {"x": -0.2452837287833426, "y": -1.455467268506386, "z": -0.02447014552162034, "time": "2025-11-21T08:48:00.000043"}, {"x": -0.2309431530336429, "y": -1.456519424171272, "z": -0.024844249711396, "time": "2025-11-22T08:48:00.000043"}, {"x": -0.2165808426639276, "y": -1.457437480200301, "z": -0.02521629302551552, "time": "2025-11-23T08:48:00.000043"}, {"x": -0.2021981099236805, "y": -1.458221080960787, "z": -0.02558622031913584, "time": "2025-11-24T08:48:00.000043"}, {"x": -0.1877962857012449, "y": -1.458869875061073, "z": -0.02595397101370792, "time": "2025-11-25T08:48:00.000043"}, {"x": -0.1733767181909111, "y": -1.459383513818839, "z": -0.02631947961618418, "time": "2025-11-26T08:48:00.000043"}, {"x": -0.1589407713369886, "y": -1.459761649963372, "z": -0.02668267636317545, "time": "2025-11-27T08:48:00.000043"}, {"x": -0.1444898230888474, "y": -1.460003936608028, "z": -0.02704348797409442, "time": "2025-11-28T08:48:00.000043"}, {"x": -0.1300252635087814, "y": -1.460110026523845, "z": -0.02740183849534253, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.262576', '2025-11-29 08:49:16.266698');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '136108', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": -37.10918629711033, "y": -23.49791665232343, "z": 23.55862105733824, "time": "2025-10-30T08:48:00.000043"}, {"x": -37.10781036480758, "y": -23.49967218917282, "z": 23.55849000323084, "time": "2025-10-31T08:48:00.000043"}, {"x": -37.1064343417107, "y": -23.50142768036839, "z": 23.5583588927387, "time": "2025-11-01T08:48:00.000043"}, {"x": -37.10505822781547, "y": -23.50318312588395, "z": 23.55822772586222, "time": "2025-11-02T08:48:00.000043"}, {"x": -37.10368202311889, "y": -23.50493852569483, "z": 23.55809650260177, "time": "2025-11-03T08:48:00.000043"}, {"x": -37.10230572761909, "y": -23.50669387977808, "z": 23.55796522295765, "time": "2025-11-04T08:48:00.000043"}, {"x": -37.10092934131518, "y": -23.50844918811273, "z": 23.55783388693006, "time": "2025-11-05T08:48:00.000043"}, {"x": -37.09955286420701, "y": -23.51020445068001, "z": 23.55770249451907, "time": "2025-11-06T08:48:00.000043"}, {"x": -37.09817629629504, "y": -23.5119596674636, "z": 23.55757104572459, "time": "2025-11-07T08:48:00.000043"}, {"x": -37.09679963757991, "y": -23.51371483844983, "z": 23.55743954054628, "time": "2025-11-08T08:48:00.000043"}, {"x": -37.09542288806214, "y": -23.51546996362791, "z": 23.55730797898357, "time": "2025-11-09T08:48:00.000043"}, {"x": -37.09404604774169, "y": -23.51722504299007, "z": 23.55717636103555, "time": "2025-11-10T08:48:00.000043"}, {"x": -37.09266911661738, "y": -23.51898007653172, "z": 23.55704468670094, "time": "2025-11-11T08:48:00.000043"}, {"x": -37.09129209468632, "y": -23.52073506425138, "z": 23.55691295597803, "time": "2025-11-12T08:48:00.000043"}, {"x": -37.08991498194325, "y": -23.5224900061507, "z": 23.55678116886464, "time": "2025-11-13T08:48:00.000043"}, {"x": -37.08853777837979, "y": -23.52424490223413, "z": 23.55664932535803, "time": "2025-11-14T08:48:00.000043"}, {"x": -37.08716048398373, "y": -23.5259997525086, "z": 23.55651742545495, "time": "2025-11-15T08:48:00.000043"}, {"x": -37.08578309873827, "y": -23.52775455698285, "z": 23.55638546915152, "time": "2025-11-16T08:48:00.000043"}, {"x": -37.08440562262142, "y": -23.5295093156667, "z": 23.55625345644333, "time": "2025-11-17T08:48:00.000043"}, {"x": -37.08302805560547, "y": -23.53126402857, "z": 23.55612138732541, "time": "2025-11-18T08:48:00.000043"}, {"x": -37.08165039765665, "y": -23.53301869570141, "z": 23.55598926179236, "time": "2025-11-19T08:48:00.000043"}, {"x": -37.08027264873517, "y": -23.53477331706718, "z": 23.55585707983839, "time": "2025-11-20T08:48:00.000043"}, {"x": -37.07889480879546, "y": -23.53652789266968, "z": 23.55572484145754, "time": "2025-11-21T08:48:00.000043"}, {"x": -37.07751687778686, "y": -23.53828242250612, "z": 23.55559254664378, "time": "2025-11-22T08:48:00.000043"}, {"x": -37.07613885565458, "y": -23.54003690656739, "z": 23.55546019539121, "time": "2025-11-23T08:48:00.000043"}, {"x": -37.07476074234103, "y": -23.54179134483712, "z": 23.55532778769431, "time": "2025-11-24T08:48:00.000043"}, {"x": -37.07338253778726, "y": -23.54354573729113, "z": 23.55519532354806, "time": "2025-11-25T08:48:00.000043"}, {"x": -37.07200424193466, "y": -23.54530008389725, "z": 23.55506280294812, "time": "2025-11-26T08:48:00.000043"}, {"x": -37.07062585472645, "y": -23.5470543846156, "z": 23.554930225891, "time": "2025-11-27T08:48:00.000043"}, {"x": -37.0692473761092, "y": -23.54880863939909, "z": 23.55479759237409, "time": "2025-11-28T08:48:00.000043"}, {"x": -37.06786880603401, "y": -23.55056284819443, "z": 23.55466490239571, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.818945', '2025-11-29 08:49:15.821508');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '136472', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": -45.99671188605616, "y": -8.916549653685559, "z": 24.16231320429876, "time": "2025-10-30T08:48:00.000043"}, {"x": -45.99653017020623, "y": -8.91869157133022, "z": 24.1619926951475, "time": "2025-10-31T08:48:00.000043"}, {"x": -45.99634835932635, "y": -8.920833481508554, "z": 24.16167213711327, "time": "2025-11-01T08:48:00.000043"}, {"x": -45.99616645341101, "y": -8.922975384195183, "z": 24.16135153019784, "time": "2025-11-02T08:48:00.000043"}, {"x": -45.99598445245599, "y": -8.925117279366233, "z": 24.16103087440294, "time": "2025-11-03T08:48:00.000043"}, {"x": -45.99580235645816, "y": -8.927259166999583, "z": 24.16071016973024, "time": "2025-11-04T08:48:00.000043"}, {"x": -45.99562016541537, "y": -8.929401047075073, "z": 24.16038941618132, "time": "2025-11-05T08:48:00.000043"}, {"x": -45.99543787932623, "y": -8.931542919574742, "z": 24.16006861375761, "time": "2025-11-06T08:48:00.000043"}, {"x": -45.99525549818994, "y": -8.933684784483086, "z": 24.15974776246038, "time": "2025-11-07T08:48:00.000043"}, {"x": -45.9950730220059, "y": -8.935826641787244, "z": 24.15942686229068, "time": "2025-11-08T08:48:00.000043"}, {"x": -45.99489045077338, "y": -8.937968491477244, "z": 24.15910591324929, "time": "2025-11-09T08:48:00.000043"}, {"x": -45.99470778449107, "y": -8.940110333546128, "z": 24.15878491533668, "time": "2025-11-10T08:48:00.000043"}, {"x": -45.99452502315655, "y": -8.942252167990109, "z": 24.15846386855292, "time": "2025-11-11T08:48:00.000043"}, {"x": -45.99434216676568, "y": -8.94439399480854, "z": 24.1581427728977, "time": "2025-11-12T08:48:00.000043"}, {"x": -45.99415921531193, "y": -8.946535814003857, "z": 24.15782162837018, "time": "2025-11-13T08:48:00.000043"}, {"x": -45.99397616878571, "y": -8.94867762558135, "z": 24.15750043496901, "time": "2025-11-14T08:48:00.000043"}, {"x": -45.99379302717352, "y": -8.95081942954874, "z": 24.15717919269228, "time": "2025-11-15T08:48:00.000043"}, {"x": -45.99360979045731, "y": -8.952961225915605, "z": 24.15685790153751, "time": "2025-11-16T08:48:00.000043"}, {"x": -45.99342645861387, "y": -8.955103014692561, "z": 24.15653656150164, "time": "2025-11-17T08:48:00.000043"}, {"x": -45.99324303161419, "y": -8.957244795890272, "z": 24.15621517258107, "time": "2025-11-18T08:48:00.000043"}, {"x": -45.99305950942328, "y": -8.959386569518234, "z": 24.15589373477177, "time": "2025-11-19T08:48:00.000043"}, {"x": -45.99287589200009, "y": -8.961528335583484, "z": 24.15557224806932, "time": "2025-11-20T08:48:00.000043"}, {"x": -45.99269217929781, "y": -8.963670094089217, "z": 24.15525071246913, "time": "2025-11-21T08:48:00.000043"}, {"x": -45.9925083712645, "y": -8.965811845033466, "z": 24.15492912796652, "time": "2025-11-22T08:48:00.000043"}, {"x": -45.99232446784415, "y": -8.967953588407921, "z": 24.15460749455699, "time": "2025-11-23T08:48:00.000043"}, {"x": -45.99214046897788, "y": -8.970095324197038, "z": 24.15428581223636, "time": "2025-11-24T08:48:00.000043"}, {"x": -45.99195637460552, "y": -8.972237052377444, "z": 24.153964081001, "time": "2025-11-25T08:48:00.000043"}, {"x": -45.99177218466718, "y": -8.974378772917802, "z": 24.15364230084794, "time": "2025-11-26T08:48:00.000043"}, {"x": -45.99158789910485, "y": -8.976520485779012, "z": 24.15332047177503, "time": "2025-11-27T08:48:00.000043"}, {"x": -45.99140351786383, "y": -8.978662190914834, "z": 24.15299859378105, "time": "2025-11-28T08:48:00.000043"}, {"x": -45.99121904089398, "y": -8.980803888272789, "z": 24.15267666686568, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.925137', '2025-11-29 08:49:15.927958');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '199', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 0.3002085531055493, "y": -0.2805862546138634, "z": -0.05046513700479831, "time": "2025-10-30T08:48:00.000043"}, {"x": 0.3132055633076167, "y": -0.2581298113786474, "z": -0.04982202453666761, "time": "2025-10-31T08:48:00.000043"}, {"x": 0.3248468843442118, "y": -0.2345569803060402, "z": -0.04896333491461555, "time": "2025-11-01T08:48:00.000043"}, {"x": 0.3350265344689138, "y": -0.2099296954914092, "z": -0.04788440895034134, "time": "2025-11-02T08:48:00.000043"}, {"x": 0.3436365695628484, "y": -0.1843198791445746, "z": -0.04658122372133078, "time": "2025-11-03T08:48:00.000043"}, {"x": 0.3505677199733409, "y": -0.1578105942664243, "z": -0.04505054518089093, "time": "2025-11-04T08:48:00.000043"}, {"x": 0.3557102524226779, "y": -0.1304972613374569, "z": -0.04329010664270994, "time": "2025-11-05T08:48:00.000043"}, {"x": 0.3589551013256468, "y": -0.1024889133627125, "z": -0.04129881511002974, "time": "2025-11-06T08:48:00.000043"}, {"x": 0.3601953170080627, "y": -0.07390945045785592, "z": -0.03907698663331739, "time": "2025-11-07T08:48:00.000043"}, {"x": 0.3593278790314031, "y": -0.04489883857682186, "z": -0.03662661059039517, "time": "2025-11-08T08:48:00.000043"}, {"x": 0.3562559195653974, "y": -0.01561417688319587, "z": -0.03395164084120689, "time": "2025-11-09T08:48:00.000043"}, {"x": 0.3508913925499121, "y": 0.01376946494426799, "z": -0.03105830896860876, "time": "2025-11-10T08:48:00.000043"}, {"x": 0.3431582069337978, "y": 0.04305856331875082, "z": -0.02795545116146122, "time": "2025-11-11T08:48:00.000043"}, {"x": 0.3329958141253149, "y": 0.07204115984702743, "z": -0.02465483569269391, "time": "2025-11-12T08:48:00.000043"}, {"x": 0.3203631988130347, "y": 0.1004875520309488, "z": -0.02117147250952596, "time": "2025-11-13T08:48:00.000043"}, {"x": 0.3052431674629218, "y": 0.1281518354837221, "z": -0.01752388053851939, "time": "2025-11-14T08:48:00.000043"}, {"x": 0.2876467611236943, "y": 0.1547744716025753, "z": -0.01373428258931278, "time": "2025-11-15T08:48:00.000043"}, {"x": 0.2676175430739107, "y": 0.1800860239594816, "z": -0.009828693268389277, "time": "2025-11-16T08:48:00.000043"}, {"x": 0.2452354361434927, "y": 0.2038121440544823, "z": -0.005836863488227135, "time": "2025-11-17T08:48:00.000043"}, {"x": 0.2206197229043148, "y": 0.2256797884390294, "z": -0.001792047564637687, "time": "2025-11-18T08:48:00.000043"}, {"x": 0.1939307918705297, "y": 0.2454245167028879, "z": 0.002269433032071872, "time": "2025-11-19T08:48:00.000043"}, {"x": 0.165370232777133, "y": 0.2627985646498613, "z": 0.006308840697963814, "time": "2025-11-20T08:48:00.000043"}, {"x": 0.1351789681261961, "y": 0.2775792307218236, "z": 0.01028587842825836, "time": "2025-11-21T08:48:00.000043"}, {"x": 0.1036332603273057, "y": 0.2895769863842703, "z": 0.0141597188409537, "time": "2025-11-22T08:48:00.000043"}, {"x": 0.07103864212016323, "y": 0.2986426553682997, "z": 0.01789014758055734, "time": "2025-11-23T08:48:00.000043"}, {"x": 0.03772205364511896, "y": 0.3046730284328534, "z": 0.02143874335398548, "time": "2025-11-24T08:48:00.000043"}, {"x": 0.004022690829329854, "y": 0.3076143995153969, "z": 0.02477000629467503, "time": "2025-11-25T08:48:00.000043"}, {"x": -0.02971776770952606, "y": 0.3074637132504249, "z": 0.02785234812387551, "time": "2025-11-26T08:48:00.000043"}, {"x": -0.06316481852790486, "y": 0.3042672687421802, "z": 0.03065887203409728, "time": "2025-11-27T08:48:00.000043"}, {"x": -0.09599997624792266, "y": 0.2981171829438189, "z": 0.03316789473325153, "time": "2025-11-28T08:48:00.000043"}, {"x": -0.1279282339151008, "y": 0.2891460319518427, "z": 0.03536319277834199, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.052225', '2025-11-29 08:49:16.054555');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '-98', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 19.81727391523854, "y": -59.85154084745883, "z": 2.195105272831647, "time": "2025-10-30T08:48:00.000043"}, {"x": 19.82034569398473, "y": -59.85877385037796, "z": 2.195389994849425, "time": "2025-10-31T08:48:00.000043"}, {"x": 19.82341745134864, "y": -59.86600679320543, "z": 2.195674714254041, "time": "2025-11-01T08:48:00.000043"}, {"x": 19.82648918734149, "y": -59.87323967593791, "z": 2.195959431047123, "time": "2025-11-02T08:48:00.000043"}, {"x": 19.82956090197324, "y": -59.88047249857362, "z": 2.196244145230243, "time": "2025-11-03T08:48:00.000043"}, {"x": 19.83263259525275, "y": -59.88770526111246, "z": 2.196528856804919, "time": "2025-11-04T08:48:00.000043"}, {"x": 19.83570426718789, "y": -59.89493796355633, "z": 2.196813565772543, "time": "2025-11-05T08:48:00.000043"}, {"x": 19.83877591778575, "y": -59.90217060590935, "z": 2.197098272134412, "time": "2025-11-06T08:48:00.000043"}, {"x": 19.84184754705285, "y": -59.90940318817798, "z": 2.197382975891623, "time": "2025-11-07T08:48:00.000043"}, {"x": 19.84491915499552, "y": -59.91663571037144, "z": 2.197667677045068, "time": "2025-11-08T08:48:00.000043"}, {"x": 19.84799074162019, "y": -59.92386817250176, "z": 2.197952375595364, "time": "2025-11-09T08:48:00.000043"}, {"x": 19.85106230693387, "y": -59.931100574584, "z": 2.198237071542811, "time": "2025-11-10T08:48:00.000043"}, {"x": 19.85413385094472, "y": -59.9383329166364, "z": 2.198521764887347, "time": "2025-11-11T08:48:00.000043"}, {"x": 19.85720537366256, "y": -59.94556519868026, "z": 2.198806455628459, "time": "2025-11-12T08:48:00.000043"}, {"x": 19.86027687509962, "y": -59.95279742074004, "z": 2.199091143765161, "time": "2025-11-13T08:48:00.000043"}, {"x": 19.86334835527123, "y": -59.96002958284303, "z": 2.199375829295956, "time": "2025-11-14T08:48:00.000043"}, {"x": 19.86641981419656, "y": -59.9672616850189, "z": 2.199660512218752, "time": "2025-11-15T08:48:00.000043"}, {"x": 19.86949125189934, "y": -59.97449372729925, "z": 2.199945192530914, "time": "2025-11-16T08:48:00.000043"}, {"x": 19.87256266840853, "y": -59.98172570971663, "z": 2.200229870229212, "time": "2025-11-17T08:48:00.000043"}, {"x": 19.8756340637588, "y": -59.98895763230365, "z": 2.200514545309899, "time": "2025-11-18T08:48:00.000043"}, {"x": 19.87870543799084, "y": -59.99618949509178, "z": 2.200799217768759, "time": "2025-11-19T08:48:00.000043"}, {"x": 19.88177679115141, "y": -60.00342129811001, "z": 2.20108388760123, "time": "2025-11-20T08:48:00.000043"}, {"x": 19.884848123293, "y": -60.01065304138345, "z": 2.201368554802539, "time": "2025-11-21T08:48:00.000043"}, {"x": 19.88791943447323, "y": -60.01788472493209, "z": 2.201653219367844, "time": "2025-11-22T08:48:00.000043"}, {"x": 19.89099072475381, "y": -60.02511634876953, "z": 2.201937881292486, "time": "2025-11-23T08:48:00.000043"}, {"x": 19.89406199419929, "y": -60.03234791290213, "z": 2.202222540572123, "time": "2025-11-24T08:48:00.000043"}, {"x": 19.89713324287553, "y": -60.03957941732848, "z": 2.202507197202942, "time": "2025-11-25T08:48:00.000043"}, {"x": 19.90020447084811, "y": -60.04681086203912, "z": 2.202791851181824, "time": "2025-11-26T08:48:00.000043"}, {"x": 19.90327567818071, "y": -60.05404224701683, "z": 2.203076502506451, "time": "2025-11-27T08:48:00.000043"}, {"x": 19.90634686493371, "y": -60.06127357223728, "z": 2.203361151175418, "time": "2025-11-28T08:48:00.000043"}, {"x": 19.90941803116293, "y": -60.06850483766988, "z": 2.203645797188261, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.157748', '2025-11-29 08:49:16.16183');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '-168', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": -0.5528633234732749, "y": -1.399279056637429, "z": -0.01576827831573396, "time": "2025-10-30T08:48:00.000043"}, {"x": -0.5392961410317796, "y": -1.40316225226667, "z": -0.0161824606662972, "time": "2025-10-31T08:48:00.000043"}, {"x": -0.5256824670378464, "y": -1.406923201728856, "z": -0.01659499021566624, "time": "2025-11-01T08:48:00.000043"}, {"x": -0.5120233539600993, "y": -1.410561172667051, "z": -0.0170058287805287, "time": "2025-11-02T08:48:00.000043"}, {"x": -0.4983198523085396, "y": -1.414075443953025, "z": -0.01741494421063252, "time": "2025-11-03T08:48:00.000043"}, {"x": -0.4845730112522929, "y": -1.417465307909753, "z": -0.01782231020018391, "time": "2025-11-04T08:48:00.000043"}, {"x": -0.4707838795164921, "y": -1.420730072405868, "z": -0.01822790595035024, "time": "2025-11-05T08:48:00.000043"}, {"x": -0.4569535065347045, "y": -1.423869062772448, "z": -0.01863171569168929, "time": "2025-11-06T08:48:00.000043"}, {"x": -0.4430829438290549, "y": -1.426881623497624, "z": -0.01903372807796942, "time": "2025-11-07T08:48:00.000043"}, {"x": -0.4291732465808157, "y": -1.429767119658483, "z": -0.01943393546686116, "time": "2025-11-08T08:48:00.000043"}, {"x": -0.4152254753498053, "y": -1.432524938058773, "z": -0.0198323331065636, "time": "2025-11-09T08:48:00.000043"}, {"x": -0.4012406978990521, "y": -1.43515448804877, "z": -0.02022891824862243, "time": "2025-11-10T08:48:00.000043"}, {"x": -0.3872199910784633, "y": -1.437655202011801, "z": -0.02062368920894639, "time": "2025-11-11T08:48:00.000043"}, {"x": -0.3731644427192947, "y": -1.440026535508369, "z": -0.02101664440078636, "time": "2025-11-12T08:48:00.000043"}, {"x": -0.3590751534893741, "y": -1.442267967077028, "z": -0.02140778136399952, "time": "2025-11-13T08:48:00.000043"}, {"x": -0.3449532386595711, "y": -1.444378997701969, "z": -0.02179709581693333, "time": "2025-11-14T08:48:00.000043"}, {"x": -0.3307998297360029, "y": -1.446359149966002, "z": -0.02218458075374879, "time": "2025-11-15T08:48:00.000043"}, {"x": -0.3166160759168677, "y": -1.448207966914105, "z": -0.02257022560972545, "time": "2025-11-16T08:48:00.000043"}, {"x": -0.302403145336076, "y": -1.449925010659448, "z": -0.02295401551585208, "time": "2025-11-17T08:48:00.000043"}, {"x": -0.2881622260595761, "y": -1.451509860770303, "z": -0.02333593066167638, "time": "2025-11-18T08:48:00.000043"}, {"x": -0.2738945268072798, "y": -1.452962112484435, "z": -0.02371594578256638, "time": "2025-11-19T08:48:00.000043"}, {"x": -0.2596012773804539, "y": -1.45428137480181, "z": -0.02409402978552645, "time": "2025-11-20T08:48:00.000043"}, {"x": -0.2452837287833426, "y": -1.455467268506386, "z": -0.02447014552162034, "time": "2025-11-21T08:48:00.000043"}, {"x": -0.2309431530336429, "y": -1.456519424171272, "z": -0.024844249711396, "time": "2025-11-22T08:48:00.000043"}, {"x": -0.2165808426639276, "y": -1.457437480200301, "z": -0.02521629302551552, "time": "2025-11-23T08:48:00.000043"}, {"x": -0.2021981099236805, "y": -1.458221080960787, "z": -0.02558622031913584, "time": "2025-11-24T08:48:00.000043"}, {"x": -0.1877962857012449, "y": -1.458869875061073, "z": -0.02595397101370792, "time": "2025-11-25T08:48:00.000043"}, {"x": -0.1733767181909111, "y": -1.459383513818839, "z": -0.02631947961618418, "time": "2025-11-26T08:48:00.000043"}, {"x": -0.1589407713369886, "y": -1.459761649963372, "z": -0.02668267636317545, "time": "2025-11-27T08:48:00.000043"}, {"x": -0.1444898230888474, "y": -1.460003936608028, "z": -0.02704348797409442, "time": "2025-11-28T08:48:00.000043"}, {"x": -0.1300252635087814, "y": -1.460110026523845, "z": -0.02740183849534253, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.296583', '2025-11-29 08:49:16.299654');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '10', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-10-30T08:48:41.505000+00:00"}, {"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T08:48:41.505000+00:00"}]}', '2025-12-06 08:49:16.403021', '2025-11-29 08:49:16.405594');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '-61', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": -1.224497811507877, "y": 5.030445171178306, "z": -0.02828014879512302, "time": "2025-10-30T08:48:00.000043"}, {"x": -1.231642265417789, "y": 5.028450145546532, "z": -0.02850126090996813, "time": "2025-10-31T08:48:00.000043"}, {"x": -1.238837325189763, "y": 5.026495474293481, "z": -0.02854387024215093, "time": "2025-11-01T08:48:00.000043"}, {"x": -1.246082462710012, "y": 5.024582038713689, "z": -0.02841233926027957, "time": "2025-11-02T08:48:00.000043"}, {"x": -1.253377643298645, "y": 5.022711142362873, "z": -0.02810928005599784, "time": "2025-11-03T08:48:00.000043"}, {"x": -1.260723308650994, "y": 5.020884558586011, "z": -0.02763567935772559, "time": "2025-11-04T08:48:00.000043"}, {"x": -1.268120425633535, "y": 5.019104582630946, "z": -0.02699094620272095, "time": "2025-11-05T08:48:00.000043"}, {"x": -1.275570481505226, "y": 5.017374148822127, "z": -0.0261728618559414, "time": "2025-11-06T08:48:00.000043"}, {"x": -1.283075591329568, "y": 5.015696949958316, "z": -0.02517745633192445, "time": "2025-11-07T08:48:00.000043"}, {"x": -1.290638605564115, "y": 5.014077632777577, "z": -0.02399877147331601, "time": "2025-11-08T08:48:00.000043"}, {"x": -1.298263285113525, "y": 5.012522073869313, "z": -0.02262848555967833, "time": "2025-11-09T08:48:00.000043"}, {"x": -1.30595456387793, "y": 5.011037785743562, "z": -0.02105533382315924, "time": "2025-11-10T08:48:00.000043"}, {"x": -1.313718948724082, "y": 5.009634535941673, "z": -0.01926421646759004, "time": "2025-11-11T08:48:00.000043"}, {"x": -1.321565151355947, "y": 5.008325331012282, "z": -0.01723479870232709, "time": "2025-11-12T08:48:00.000043"}, {"x": -1.329505139823564, "y": 5.007128059748772, "z": -0.01493921937932751, "time": "2025-11-13T08:48:00.000043"}, {"x": -1.337555996025906, "y": 5.006068438440109, "z": -0.01233810776566779, "time": "2025-11-14T08:48:00.000043"}, {"x": -1.345743503036504, "y": 5.005185810252593, "z": -0.009373080838795147, "time": "2025-11-15T08:48:00.000043"}, {"x": -1.354110022731432, "y": 5.004546159807556, "z": -0.005950850040812024, "time": "2025-11-16T08:48:00.000043"}, {"x": -1.36273551947491, "y": 5.004277897577527, "z": -0.001902867040551612, "time": "2025-11-17T08:48:00.000043"}, {"x": -1.371817705737655, "y": 5.00471478702064, "z": 0.003156050121536339, "time": "2025-11-18T08:48:00.000043"}, {"x": -1.382894282387047, "y": 5.00934262035318, "z": 0.01049596783225719, "time": "2025-11-19T08:48:00.000043"}, {"x": -1.388552034628881, "y": 5.008247996806297, "z": 0.0006780413066491705, "time": "2025-11-20T08:48:00.000043"}, {"x": -1.394498754167489, "y": 5.00550085886598, "z": -0.004414123238189343, "time": "2025-11-21T08:48:00.000043"}, {"x": -1.400690348477697, "y": 5.002743831598509, "z": -0.008219947581639575, "time": "2025-11-22T08:48:00.000043"}, {"x": -1.40704222363044, "y": 5.000023553872753, "z": -0.01127001333797194, "time": "2025-11-23T08:48:00.000043"}, {"x": -1.413514494343834, "y": 4.997347019821963, "z": -0.01378514435460311, "time": "2025-11-24T08:48:00.000043"}, {"x": -1.420084253849088, "y": 4.994714192956073, "z": -0.01588421882140101, "time": "2025-11-25T08:48:00.000043"}, {"x": -1.426736843354032, "y": 4.992123547220365, "z": -0.01764033978005915, "time": "2025-11-26T08:48:00.000043"}, {"x": -1.433462238983427, "y": 4.989573424991026, "z": -0.01910226647589779, "time": "2025-11-27T08:48:00.000043"}, {"x": -1.440253291451425, "y": 4.987062413542056, "z": -0.02030430216519661, "time": "2025-11-28T08:48:00.000043"}, {"x": -1.447104769317932, "y": 4.984589445666817, "z": -0.02127145534691249, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.828977', '2025-11-29 08:49:15.831623');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '136472', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": -45.99671188605616, "y": -8.916549653685559, "z": 24.16231320429876, "time": "2025-10-30T08:48:00.000043"}, {"x": -45.99653017020623, "y": -8.91869157133022, "z": 24.1619926951475, "time": "2025-10-31T08:48:00.000043"}, {"x": -45.99634835932635, "y": -8.920833481508554, "z": 24.16167213711327, "time": "2025-11-01T08:48:00.000043"}, {"x": -45.99616645341101, "y": -8.922975384195183, "z": 24.16135153019784, "time": "2025-11-02T08:48:00.000043"}, {"x": -45.99598445245599, "y": -8.925117279366233, "z": 24.16103087440294, "time": "2025-11-03T08:48:00.000043"}, {"x": -45.99580235645816, "y": -8.927259166999583, "z": 24.16071016973024, "time": "2025-11-04T08:48:00.000043"}, {"x": -45.99562016541537, "y": -8.929401047075073, "z": 24.16038941618132, "time": "2025-11-05T08:48:00.000043"}, {"x": -45.99543787932623, "y": -8.931542919574742, "z": 24.16006861375761, "time": "2025-11-06T08:48:00.000043"}, {"x": -45.99525549818994, "y": -8.933684784483086, "z": 24.15974776246038, "time": "2025-11-07T08:48:00.000043"}, {"x": -45.9950730220059, "y": -8.935826641787244, "z": 24.15942686229068, "time": "2025-11-08T08:48:00.000043"}, {"x": -45.99489045077338, "y": -8.937968491477244, "z": 24.15910591324929, "time": "2025-11-09T08:48:00.000043"}, {"x": -45.99470778449107, "y": -8.940110333546128, "z": 24.15878491533668, "time": "2025-11-10T08:48:00.000043"}, {"x": -45.99452502315655, "y": -8.942252167990109, "z": 24.15846386855292, "time": "2025-11-11T08:48:00.000043"}, {"x": -45.99434216676568, "y": -8.94439399480854, "z": 24.1581427728977, "time": "2025-11-12T08:48:00.000043"}, {"x": -45.99415921531193, "y": -8.946535814003857, "z": 24.15782162837018, "time": "2025-11-13T08:48:00.000043"}, {"x": -45.99397616878571, "y": -8.94867762558135, "z": 24.15750043496901, "time": "2025-11-14T08:48:00.000043"}, {"x": -45.99379302717352, "y": -8.95081942954874, "z": 24.15717919269228, "time": "2025-11-15T08:48:00.000043"}, {"x": -45.99360979045731, "y": -8.952961225915605, "z": 24.15685790153751, "time": "2025-11-16T08:48:00.000043"}, {"x": -45.99342645861387, "y": -8.955103014692561, "z": 24.15653656150164, "time": "2025-11-17T08:48:00.000043"}, {"x": -45.99324303161419, "y": -8.957244795890272, "z": 24.15621517258107, "time": "2025-11-18T08:48:00.000043"}, {"x": -45.99305950942328, "y": -8.959386569518234, "z": 24.15589373477177, "time": "2025-11-19T08:48:00.000043"}, {"x": -45.99287589200009, "y": -8.961528335583484, "z": 24.15557224806932, "time": "2025-11-20T08:48:00.000043"}, {"x": -45.99269217929781, "y": -8.963670094089217, "z": 24.15525071246913, "time": "2025-11-21T08:48:00.000043"}, {"x": -45.9925083712645, "y": -8.965811845033466, "z": 24.15492912796652, "time": "2025-11-22T08:48:00.000043"}, {"x": -45.99232446784415, "y": -8.967953588407921, "z": 24.15460749455699, "time": "2025-11-23T08:48:00.000043"}, {"x": -45.99214046897788, "y": -8.970095324197038, "z": 24.15428581223636, "time": "2025-11-24T08:48:00.000043"}, {"x": -45.99195637460552, "y": -8.972237052377444, "z": 24.153964081001, "time": "2025-11-25T08:48:00.000043"}, {"x": -45.99177218466718, "y": -8.974378772917802, "z": 24.15364230084794, "time": "2025-11-26T08:48:00.000043"}, {"x": -45.99158789910485, "y": -8.976520485779012, "z": 24.15332047177503, "time": "2025-11-27T08:48:00.000043"}, {"x": -45.99140351786383, "y": -8.978662190914834, "z": 24.15299859378105, "time": "2025-11-28T08:48:00.000043"}, {"x": -45.99121904089398, "y": -8.980803888272789, "z": 24.15267666686568, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.959802', '2025-11-29 08:49:15.962831');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '301', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 0.7966481312574293, "y": 0.5934737640669903, "z": -0.0001603349314088321, "time": "2025-10-30T08:48:00.000043"}, {"x": 0.7862658150944429, "y": 0.6075647738291243, "z": -0.0001127182886997582, "time": "2025-10-31T08:48:00.000043"}, {"x": 0.7755304282949632, "y": 0.6215447145105957, "z": -0.00006116580099273494, "time": "2025-11-01T08:48:00.000043"}, {"x": 0.7644272574092701, "y": 0.6353818001762033, "z": -0.000008481977904247265, "time": "2025-11-02T08:48:00.000043"}, {"x": 0.752948400424739, "y": 0.6490385198326437, "z": 0.00004217234533257649, "time": "2025-11-03T08:48:00.000043"}, {"x": 0.7410952233885579, "y": 0.6624734047859598, "z": 0.00008748857606453254, "time": "2025-11-04T08:48:00.000043"}, {"x": 0.7288802215174316, "y": 0.675644124504982, "z": 0.0001243214698351513, "time": "2025-11-05T08:48:00.000043"}, {"x": 0.7163274414389768, "y": 0.688511589013676, "z": 0.0001500563981941968, "time": "2025-11-06T08:48:00.000043"}, {"x": 0.7034709105444475, "y": 0.701044143832538, "z": 0.0001629411361140923, "time": "2025-11-07T08:48:00.000043"}, {"x": 0.6903512407509391, "y": 0.7132206836903853, "z": 0.0001622835267744558, "time": "2025-11-08T08:48:00.000043"}, {"x": 0.6770113183097901, "y": 0.725031865076217, "z": 0.0001484633113882266, "time": "2025-11-09T08:48:00.000043"}, {"x": 0.6634922543833889, "y": 0.7364793709052764, "z": 0.0001227794598253772, "time": "2025-11-10T08:48:00.000043"}, {"x": 0.6498304353328908, "y": 0.7475738511892616, "z": 0.0000872055176728775, "time": "2025-11-11T08:48:00.000043"}, {"x": 0.6360559086201543, "y": 0.7583323768312457, "z": 0.00004413106135060605, "time": "2025-11-12T08:48:00.000043"}, {"x": 0.6221918702691318, "y": 0.7687760496742149, "z": -0.000003859668043456513, "time": "2025-11-13T08:48:00.000043"}, {"x": 0.6082548410944676, "y": 0.778928075051987, "z": -0.00005415406884690054, "time": "2025-11-14T08:48:00.000043"}, {"x": 0.5942551622274485, "y": 0.7888123319577903, "z": -0.0001042272124607346, "time": "2025-11-15T08:48:00.000043"}, {"x": 0.5801975725614212, "y": 0.7984523358146326, "z": -0.0001517217500001251, "time": "2025-11-16T08:48:00.000043"}, {"x": 0.5660817593898547, "y": 0.8078704542772256, "z": -0.0001945060678350249, "time": "2025-11-17T08:48:00.000043"}, {"x": 0.5519028624599588, "y": 0.8170872599568049, "z": -0.0002307211085536606, "time": "2025-11-18T08:48:00.000043"}, {"x": 0.537651957870258, "y": 0.8261209484174352, "z": -0.0002588214183044199, "time": "2025-11-19T08:48:00.000043"}, {"x": 0.5233165609008065, "y": 0.8349867934024445, "z": -0.000277611936952402, "time": "2025-11-20T08:48:00.000043"}, {"x": 0.5088811777031752, "y": 0.8436966426519815, "z": -0.0002862795478115042, "time": "2025-11-21T08:48:00.000043"}, {"x": 0.49432791651633, "y": 0.8522584719967065, "z": -0.0002844176098285577, "time": "2025-11-22T08:48:00.000043"}, {"x": 0.4796371508078356, "y": 0.8606760129151885, "z": -0.0002720423299365674, "time": "2025-11-23T08:48:00.000043"}, {"x": 0.4647882186289404, "y": 0.8689484545056029, "z": -0.0002496012425468608, "time": "2025-11-24T08:48:00.000043"}, {"x": 0.4497601498309556, "y": 0.8770702037682567, "z": -0.0002179753497869162, "time": "2025-11-25T08:48:00.000043"}, {"x": 0.4345324357243379, "y": 0.8850306789729384, "z": -0.000178476710986436, "time": "2025-11-26T08:48:00.000043"}, {"x": 0.4190858888933654, "y": 0.8928141201371488, "z": -0.0001328416872244825, "time": "2025-11-27T08:48:00.000043"}, {"x": 0.4034036732691701, "y": 0.9003994369033663, "z": -0.00008321618004787384, "time": "2025-11-28T08:48:00.000043"}, {"x": 0.3874725983731739, "y": 0.9077601822864504, "z": -0.00003212308554872566, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.061661', '2025-11-29 08:49:16.065274');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '-98', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 19.81727391523854, "y": -59.85154084745883, "z": 2.195105272831647, "time": "2025-10-30T08:48:00.000043"}, {"x": 19.82034569398473, "y": -59.85877385037796, "z": 2.195389994849425, "time": "2025-10-31T08:48:00.000043"}, {"x": 19.82341745134864, "y": -59.86600679320543, "z": 2.195674714254041, "time": "2025-11-01T08:48:00.000043"}, {"x": 19.82648918734149, "y": -59.87323967593791, "z": 2.195959431047123, "time": "2025-11-02T08:48:00.000043"}, {"x": 19.82956090197324, "y": -59.88047249857362, "z": 2.196244145230243, "time": "2025-11-03T08:48:00.000043"}, {"x": 19.83263259525275, "y": -59.88770526111246, "z": 2.196528856804919, "time": "2025-11-04T08:48:00.000043"}, {"x": 19.83570426718789, "y": -59.89493796355633, "z": 2.196813565772543, "time": "2025-11-05T08:48:00.000043"}, {"x": 19.83877591778575, "y": -59.90217060590935, "z": 2.197098272134412, "time": "2025-11-06T08:48:00.000043"}, {"x": 19.84184754705285, "y": -59.90940318817798, "z": 2.197382975891623, "time": "2025-11-07T08:48:00.000043"}, {"x": 19.84491915499552, "y": -59.91663571037144, "z": 2.197667677045068, "time": "2025-11-08T08:48:00.000043"}, {"x": 19.84799074162019, "y": -59.92386817250176, "z": 2.197952375595364, "time": "2025-11-09T08:48:00.000043"}, {"x": 19.85106230693387, "y": -59.931100574584, "z": 2.198237071542811, "time": "2025-11-10T08:48:00.000043"}, {"x": 19.85413385094472, "y": -59.9383329166364, "z": 2.198521764887347, "time": "2025-11-11T08:48:00.000043"}, {"x": 19.85720537366256, "y": -59.94556519868026, "z": 2.198806455628459, "time": "2025-11-12T08:48:00.000043"}, {"x": 19.86027687509962, "y": -59.95279742074004, "z": 2.199091143765161, "time": "2025-11-13T08:48:00.000043"}, {"x": 19.86334835527123, "y": -59.96002958284303, "z": 2.199375829295956, "time": "2025-11-14T08:48:00.000043"}, {"x": 19.86641981419656, "y": -59.9672616850189, "z": 2.199660512218752, "time": "2025-11-15T08:48:00.000043"}, {"x": 19.86949125189934, "y": -59.97449372729925, "z": 2.199945192530914, "time": "2025-11-16T08:48:00.000043"}, {"x": 19.87256266840853, "y": -59.98172570971663, "z": 2.200229870229212, "time": "2025-11-17T08:48:00.000043"}, {"x": 19.8756340637588, "y": -59.98895763230365, "z": 2.200514545309899, "time": "2025-11-18T08:48:00.000043"}, {"x": 19.87870543799084, "y": -59.99618949509178, "z": 2.200799217768759, "time": "2025-11-19T08:48:00.000043"}, {"x": 19.88177679115141, "y": -60.00342129811001, "z": 2.20108388760123, "time": "2025-11-20T08:48:00.000043"}, {"x": 19.884848123293, "y": -60.01065304138345, "z": 2.201368554802539, "time": "2025-11-21T08:48:00.000043"}, {"x": 19.88791943447323, "y": -60.01788472493209, "z": 2.201653219367844, "time": "2025-11-22T08:48:00.000043"}, {"x": 19.89099072475381, "y": -60.02511634876953, "z": 2.201937881292486, "time": "2025-11-23T08:48:00.000043"}, {"x": 19.89406199419929, "y": -60.03234791290213, "z": 2.202222540572123, "time": "2025-11-24T08:48:00.000043"}, {"x": 19.89713324287553, "y": -60.03957941732848, "z": 2.202507197202942, "time": "2025-11-25T08:48:00.000043"}, {"x": 19.90020447084811, "y": -60.04681086203912, "z": 2.202791851181824, "time": "2025-11-26T08:48:00.000043"}, {"x": 19.90327567818071, "y": -60.05404224701683, "z": 2.203076502506451, "time": "2025-11-27T08:48:00.000043"}, {"x": 19.90634686493371, "y": -60.06127357223728, "z": 2.203361151175418, "time": "2025-11-28T08:48:00.000043"}, {"x": 19.90941803116293, "y": -60.06850483766988, "z": 2.203645797188261, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.193684', '2025-11-29 08:49:16.196547');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '999', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 19.05767721427563, "y": -29.71519189267401, "z": -2.331426956703487, "time": "2025-10-30T08:48:00.000043"}, {"x": 19.06040515182436, "y": -29.71419572290131, "z": -2.332334992785243, "time": "2025-10-31T08:48:00.000043"}, {"x": 19.06312373112046, "y": -29.71320761119553, "z": -2.333240140012181, "time": "2025-11-01T08:48:00.000043"}, {"x": 19.06583589012358, "y": -29.71221926899598, "z": -2.33413422934483, "time": "2025-11-02T08:48:00.000043"}, {"x": 19.06855018513666, "y": -29.71122244088664, "z": -2.335018940050163, "time": "2025-11-03T08:48:00.000043"}, {"x": 19.07127315721918, "y": -29.71021627495481, "z": -2.335904309888836, "time": "2025-11-04T08:48:00.000043"}, {"x": 19.07400349006642, "y": -29.70920808580207, "z": -2.336799773347472, "time": "2025-11-05T08:48:00.000043"}, {"x": 19.07673318971639, "y": -29.70820682119518, "z": -2.337705741788066, "time": "2025-11-06T08:48:00.000043"}, {"x": 19.07945471864796, "y": -29.70721508254821, "z": -2.338613245619135, "time": "2025-11-07T08:48:00.000043"}, {"x": 19.08216771288761, "y": -29.70622680958155, "z": -2.339511932288695, "time": "2025-11-08T08:48:00.000043"}, {"x": 19.08487930989801, "y": -29.70523267963, "z": -2.340399296016131, "time": "2025-11-09T08:48:00.000043"}, {"x": 19.0875977858889, "y": -29.70422842481169, "z": -2.3412829219544, "time": "2025-11-10T08:48:00.000043"}, {"x": 19.09032516545491, "y": -29.7032186466428, "z": -2.342173718591348, "time": "2025-11-11T08:48:00.000043"}, {"x": 19.0930554158786, "y": -29.70221270527155, "z": -2.343076177815603, "time": "2025-11-12T08:48:00.000043"}, {"x": 19.09577983560458, "y": -29.70121636629662, "z": -2.343984374533903, "time": "2025-11-13T08:48:00.000043"}, {"x": 19.09849481161138, "y": -29.70022666488503, "z": -2.344887255398032, "time": "2025-11-14T08:48:00.000043"}, {"x": 19.10120504043271, "y": -29.69923454758109, "z": -2.345778490696264, "time": "2025-11-15T08:48:00.000043"}, {"x": 19.10391934553107, "y": -29.69823294389854, "z": -2.346662125495314, "time": "2025-11-16T08:48:00.000043"}, {"x": 19.10664280229446, "y": -29.69722308143003, "z": -2.347548976786026, "time": "2025-11-17T08:48:00.000043"}, {"x": 19.10937220545882, "y": -29.69621339033785, "z": -2.348446974567612, "time": "2025-11-18T08:48:00.000043"}, {"x": 19.11209893563893, "y": -29.69521197556886, "z": -2.349354088217629, "time": "2025-11-19T08:48:00.000043"}, {"x": 19.11481664820615, "y": -29.69421939206233, "z": -2.35026014612715, "time": "2025-11-20T08:48:00.000043"}, {"x": 19.11752692710392, "y": -29.69322815221384, "z": -2.351155902897089, "time": "2025-11-21T08:48:00.000043"}, {"x": 19.12023787750744, "y": -29.6922293980392, "z": -2.352041284926677, "time": "2025-11-22T08:48:00.000043"}, {"x": 19.12295689701559, "y": -29.69122080713131, "z": -2.352925465164783, "time": "2025-11-23T08:48:00.000043"}, {"x": 19.12568406883536, "y": -29.69020866961687, "z": -2.353818675139769, "time": "2025-11-24T08:48:00.000043"}, {"x": 19.12841209117109, "y": -29.68920226918831, "z": -2.354723071537801, "time": "2025-11-25T08:48:00.000043"}, {"x": 19.13113279588437, "y": -29.68820560149327, "z": -2.355630820987097, "time": "2025-11-26T08:48:00.000043"}, {"x": 19.13384442852061, "y": -29.68721381639553, "z": -2.356531087211728, "time": "2025-11-27T08:48:00.000043"}, {"x": 19.13655321447805, "y": -29.68621753895481, "z": -2.357419690457228, "time": "2025-11-28T08:48:00.000043"}, {"x": 19.13926781153061, "y": -29.68521123072782, "z": -2.358302843681775, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.308158', '2025-11-29 08:49:16.312799');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '-61', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": -1.224497811507877, "y": 5.030445171178306, "z": -0.02828014879512302, "time": "2025-10-30T08:48:00.000043"}, {"x": -1.231642265417789, "y": 5.028450145546532, "z": -0.02850126090996813, "time": "2025-10-31T08:48:00.000043"}, {"x": -1.238837325189763, "y": 5.026495474293481, "z": -0.02854387024215093, "time": "2025-11-01T08:48:00.000043"}, {"x": -1.246082462710012, "y": 5.024582038713689, "z": -0.02841233926027957, "time": "2025-11-02T08:48:00.000043"}, {"x": -1.253377643298645, "y": 5.022711142362873, "z": -0.02810928005599784, "time": "2025-11-03T08:48:00.000043"}, {"x": -1.260723308650994, "y": 5.020884558586011, "z": -0.02763567935772559, "time": "2025-11-04T08:48:00.000043"}, {"x": -1.268120425633535, "y": 5.019104582630946, "z": -0.02699094620272095, "time": "2025-11-05T08:48:00.000043"}, {"x": -1.275570481505226, "y": 5.017374148822127, "z": -0.0261728618559414, "time": "2025-11-06T08:48:00.000043"}, {"x": -1.283075591329568, "y": 5.015696949958316, "z": -0.02517745633192445, "time": "2025-11-07T08:48:00.000043"}, {"x": -1.290638605564115, "y": 5.014077632777577, "z": -0.02399877147331601, "time": "2025-11-08T08:48:00.000043"}, {"x": -1.298263285113525, "y": 5.012522073869313, "z": -0.02262848555967833, "time": "2025-11-09T08:48:00.000043"}, {"x": -1.30595456387793, "y": 5.011037785743562, "z": -0.02105533382315924, "time": "2025-11-10T08:48:00.000043"}, {"x": -1.313718948724082, "y": 5.009634535941673, "z": -0.01926421646759004, "time": "2025-11-11T08:48:00.000043"}, {"x": -1.321565151355947, "y": 5.008325331012282, "z": -0.01723479870232709, "time": "2025-11-12T08:48:00.000043"}, {"x": -1.329505139823564, "y": 5.007128059748772, "z": -0.01493921937932751, "time": "2025-11-13T08:48:00.000043"}, {"x": -1.337555996025906, "y": 5.006068438440109, "z": -0.01233810776566779, "time": "2025-11-14T08:48:00.000043"}, {"x": -1.345743503036504, "y": 5.005185810252593, "z": -0.009373080838795147, "time": "2025-11-15T08:48:00.000043"}, {"x": -1.354110022731432, "y": 5.004546159807556, "z": -0.005950850040812024, "time": "2025-11-16T08:48:00.000043"}, {"x": -1.36273551947491, "y": 5.004277897577527, "z": -0.001902867040551612, "time": "2025-11-17T08:48:00.000043"}, {"x": -1.371817705737655, "y": 5.00471478702064, "z": 0.003156050121536339, "time": "2025-11-18T08:48:00.000043"}, {"x": -1.382894282387047, "y": 5.00934262035318, "z": 0.01049596783225719, "time": "2025-11-19T08:48:00.000043"}, {"x": -1.388552034628881, "y": 5.008247996806297, "z": 0.0006780413066491705, "time": "2025-11-20T08:48:00.000043"}, {"x": -1.394498754167489, "y": 5.00550085886598, "z": -0.004414123238189343, "time": "2025-11-21T08:48:00.000043"}, {"x": -1.400690348477697, "y": 5.002743831598509, "z": -0.008219947581639575, "time": "2025-11-22T08:48:00.000043"}, {"x": -1.40704222363044, "y": 5.000023553872753, "z": -0.01127001333797194, "time": "2025-11-23T08:48:00.000043"}, {"x": -1.413514494343834, "y": 4.997347019821963, "z": -0.01378514435460311, "time": "2025-11-24T08:48:00.000043"}, {"x": -1.420084253849088, "y": 4.994714192956073, "z": -0.01588421882140101, "time": "2025-11-25T08:48:00.000043"}, {"x": -1.426736843354032, "y": 4.992123547220365, "z": -0.01764033978005915, "time": "2025-11-26T08:48:00.000043"}, {"x": -1.433462238983427, "y": 4.989573424991026, "z": -0.01910226647589779, "time": "2025-11-27T08:48:00.000043"}, {"x": -1.440253291451425, "y": 4.987062413542056, "z": -0.02030430216519661, "time": "2025-11-28T08:48:00.000043"}, {"x": -1.447104769317932, "y": 4.984589445666817, "z": -0.02127145534691249, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.865268', '2025-11-29 08:49:15.868361');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '499', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": -0.5528857410386459, "y": -1.399280531344129, "z": -0.01576521434834144, "time": "2025-10-30T08:48:00.000043"}, {"x": -0.5393184977716193, "y": -1.403160317244609, "z": -0.01617921365278883, "time": "2025-10-31T08:48:00.000043"}, {"x": -0.5257042799846925, "y": -1.406917895642615, "z": -0.01659180379738132, "time": "2025-11-01T08:48:00.000043"}, {"x": -0.5120441538591461, "y": -1.410552619188334, "z": -0.01700294507065724, "time": "2025-11-02T08:48:00.000043"}, {"x": -0.4983391954506114, "y": -1.414063848641903, "z": -0.01741259768904811, "time": "2025-11-03T08:48:00.000043"}, {"x": -0.4845904906628052, "y": -1.417450953031296, "z": -0.01782072180056157, "time": "2025-11-04T08:48:00.000043"}, {"x": -0.4707991352178439, "y": -1.420713309812188, "z": -0.01822727748900334, "time": "2025-11-05T08:48:00.000043"}, {"x": -0.4569662346239275, "y": -1.423850305030262, "z": -0.01863222477841855, "time": "2025-11-06T08:48:00.000043"}, {"x": -0.4430929041411631, "y": -1.426861333484676, "z": -0.01903552363729861, "time": "2025-11-07T08:48:00.000043"}, {"x": -0.4291802687448711, "y": -1.429745798891312, "z": -0.01943713398272538, "time": "2025-11-08T08:48:00.000043"}, {"x": -0.4152294630852197, "y": -1.432503114046045, "z": -0.01983701568494768, "time": "2025-11-09T08:48:00.000043"}, {"x": -0.4012416314434381, "y": -1.435132700989323, "z": -0.0202351285723319, "time": "2025-11-10T08:48:00.000043"}, {"x": -0.3872179276859545, "y": -1.437633991172666, "z": -0.0206314324361008, "time": "2025-11-11T08:48:00.000043"}, {"x": -0.3731595152168368, "y": -1.440006425626159, "z": -0.02102588703462254, "time": "2025-11-12T08:48:00.000043"}, {"x": -0.3590675669272366, "y": -1.442249455125855, "z": -0.02141845209776855, "time": "2025-11-13T08:48:00.000043"}, {"x": -0.3449432651406256, "y": -1.444362540361432, "z": -0.02180908733189098, "time": "2025-11-14T08:48:00.000043"}, {"x": -0.3307878015542355, "y": -1.446345152105186, "z": -0.02219775242530162, "time": "2025-11-15T08:48:00.000043"}, {"x": -0.3166023771780331, "y": -1.448196771382184, "z": -0.02258440705364087, "time": "2025-11-16T08:48:00.000043"}, {"x": -0.3023882022717441, "y": -1.449916889640094, "z": -0.02296901088478662, "time": "2025-11-17T08:48:00.000043"}, {"x": -0.2881464962790781, "y": -1.451505008918172, "z": -0.02335152358364129, "time": "2025-11-18T08:48:00.000043"}, {"x": -0.2738784877582753, "y": -1.452960642016685, "z": -0.02373190481728435, "time": "2025-11-19T08:48:00.000043"}, {"x": -0.259585414309307, "y": -1.454283312668132, "z": -0.02411011426046964, "time": "2025-11-20T08:48:00.000043"}, {"x": -0.2452685224987363, "y": -1.455472555709675, "z": -0.02448611160100576, "time": "2025-11-21T08:48:00.000043"}, {"x": -0.2309290677822425, "y": -1.456527917255253, "z": -0.02485985654489713, "time": "2025-11-22T08:48:00.000043"}, {"x": -0.2165683144236229, "y": -1.457448954866898, "z": -0.02523130882172102, "time": "2025-11-23T08:48:00.000043"}, {"x": -0.2021875354096992, "y": -1.458235237726389, "z": -0.02560042819052791, "time": "2025-11-24T08:48:00.000043"}, {"x": -0.1877880123621382, "y": -1.458886346808301, "z": -0.02596717444583561, "time": "2025-11-25T08:48:00.000043"}, {"x": -0.1733710354472445, "y": -1.459401875054181, "z": -0.02633150742316673, "time": "2025-11-26T08:48:00.000043"}, {"x": -0.1589379032829982, "y": -1.4597814275467, "z": -0.02669338700434218, "time": "2025-11-27T08:48:00.000043"}, {"x": -0.1444899228416041, "y": -1.460024621683529, "z": -0.02705277312324861, "time": "2025-11-28T08:48:00.000043"}, {"x": -0.1300284093470407, "y": -1.460131087351789, "z": -0.02740962577232181, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.969629', '2025-11-29 08:49:15.973217');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '301', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 0.7966481312574293, "y": 0.5934737640669903, "z": -0.0001603349314088321, "time": "2025-10-30T08:48:00.000043"}, {"x": 0.7862658150944429, "y": 0.6075647738291243, "z": -0.0001127182886997582, "time": "2025-10-31T08:48:00.000043"}, {"x": 0.7755304282949632, "y": 0.6215447145105957, "z": -0.00006116580099273494, "time": "2025-11-01T08:48:00.000043"}, {"x": 0.7644272574092701, "y": 0.6353818001762033, "z": -0.000008481977904247265, "time": "2025-11-02T08:48:00.000043"}, {"x": 0.752948400424739, "y": 0.6490385198326437, "z": 0.00004217234533257649, "time": "2025-11-03T08:48:00.000043"}, {"x": 0.7410952233885579, "y": 0.6624734047859598, "z": 0.00008748857606453254, "time": "2025-11-04T08:48:00.000043"}, {"x": 0.7288802215174316, "y": 0.675644124504982, "z": 0.0001243214698351513, "time": "2025-11-05T08:48:00.000043"}, {"x": 0.7163274414389768, "y": 0.688511589013676, "z": 0.0001500563981941968, "time": "2025-11-06T08:48:00.000043"}, {"x": 0.7034709105444475, "y": 0.701044143832538, "z": 0.0001629411361140923, "time": "2025-11-07T08:48:00.000043"}, {"x": 0.6903512407509391, "y": 0.7132206836903853, "z": 0.0001622835267744558, "time": "2025-11-08T08:48:00.000043"}, {"x": 0.6770113183097901, "y": 0.725031865076217, "z": 0.0001484633113882266, "time": "2025-11-09T08:48:00.000043"}, {"x": 0.6634922543833889, "y": 0.7364793709052764, "z": 0.0001227794598253772, "time": "2025-11-10T08:48:00.000043"}, {"x": 0.6498304353328908, "y": 0.7475738511892616, "z": 0.0000872055176728775, "time": "2025-11-11T08:48:00.000043"}, {"x": 0.6360559086201543, "y": 0.7583323768312457, "z": 0.00004413106135060605, "time": "2025-11-12T08:48:00.000043"}, {"x": 0.6221918702691318, "y": 0.7687760496742149, "z": -0.000003859668043456513, "time": "2025-11-13T08:48:00.000043"}, {"x": 0.6082548410944676, "y": 0.778928075051987, "z": -0.00005415406884690054, "time": "2025-11-14T08:48:00.000043"}, {"x": 0.5942551622274485, "y": 0.7888123319577903, "z": -0.0001042272124607346, "time": "2025-11-15T08:48:00.000043"}, {"x": 0.5801975725614212, "y": 0.7984523358146326, "z": -0.0001517217500001251, "time": "2025-11-16T08:48:00.000043"}, {"x": 0.5660817593898547, "y": 0.8078704542772256, "z": -0.0001945060678350249, "time": "2025-11-17T08:48:00.000043"}, {"x": 0.5519028624599588, "y": 0.8170872599568049, "z": -0.0002307211085536606, "time": "2025-11-18T08:48:00.000043"}, {"x": 0.537651957870258, "y": 0.8261209484174352, "z": -0.0002588214183044199, "time": "2025-11-19T08:48:00.000043"}, {"x": 0.5233165609008065, "y": 0.8349867934024445, "z": -0.000277611936952402, "time": "2025-11-20T08:48:00.000043"}, {"x": 0.5088811777031752, "y": 0.8436966426519815, "z": -0.0002862795478115042, "time": "2025-11-21T08:48:00.000043"}, {"x": 0.49432791651633, "y": 0.8522584719967065, "z": -0.0002844176098285577, "time": "2025-11-22T08:48:00.000043"}, {"x": 0.4796371508078356, "y": 0.8606760129151885, "z": -0.0002720423299365674, "time": "2025-11-23T08:48:00.000043"}, {"x": 0.4647882186289404, "y": 0.8689484545056029, "z": -0.0002496012425468608, "time": "2025-11-24T08:48:00.000043"}, {"x": 0.4497601498309556, "y": 0.8770702037682567, "z": -0.0002179753497869162, "time": "2025-11-25T08:48:00.000043"}, {"x": 0.4345324357243379, "y": 0.8850306789729384, "z": -0.000178476710986436, "time": "2025-11-26T08:48:00.000043"}, {"x": 0.4190858888933654, "y": 0.8928141201371488, "z": -0.0001328416872244825, "time": "2025-11-27T08:48:00.000043"}, {"x": 0.4034036732691701, "y": 0.9003994369033663, "z": -0.00008321618004787384, "time": "2025-11-28T08:48:00.000043"}, {"x": 0.3874725983731739, "y": 0.9077601822864504, "z": -0.00003212308554872566, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.097519', '2025-11-29 08:49:16.100014');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '-96', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 0.5997140108171569, "y": -0.4162330726711723, "z": -0.04032026122088182, "time": "2025-10-30T08:48:00.000043"}, {"x": 0.603301399890437, "y": -0.4103112588109895, "z": -0.04044581333814947, "time": "2025-10-31T08:48:00.000043"}, {"x": 0.6064311989173025, "y": -0.4040782376962053, "z": -0.04054068825495417, "time": "2025-11-01T08:48:00.000043"}, {"x": 0.6090993711544952, "y": -0.3975376309878697, "z": -0.04060470287340238, "time": "2025-11-02T08:48:00.000043"}, {"x": 0.6113012672420223, "y": -0.390692710734786, "z": -0.0406376339461135, "time": "2025-11-03T08:48:00.000043"}, {"x": 0.6130315977721246, "y": -0.3835464158173965, "z": -0.04063921671995946, "time": "2025-11-04T08:48:00.000043"}, {"x": 0.6142844009472797, "y": -0.3761013663557719, "z": -0.04060914326857503, "time": "2025-11-05T08:48:00.000043"}, {"x": 0.615053004297898, "y": -0.3683598763028385, "z": -0.04054706045723635, "time": "2025-11-06T08:48:00.000043"}, {"x": 0.6153299800871138, "y": -0.3603239646212409, "z": -0.04045256752402593, "time": "2025-11-07T08:48:00.000043"}, {"x": 0.6151070941562096, "y": -0.3519953652499576, "z": -0.04032521326588714, "time": "2025-11-08T08:48:00.000043"}, {"x": 0.6143752467723057, "y": -0.3433755359202804, "z": -0.04016449274739485, "time": "2025-11-09T08:48:00.000043"}, {"x": 0.6131244045201448, "y": -0.3344656660401407, "z": -0.03996984347998007, "time": "2025-11-10T08:48:00.000043"}, {"x": 0.6113435217232907, "y": -0.3252666838316107, "z": -0.03974064098678129, "time": "2025-11-11T08:48:00.000043"}, {"x": 0.6090204499817733, "y": -0.3157792629441827, "z": -0.03947619367468203, "time": "2025-11-12T08:48:00.000043"}, {"x": 0.6061418336813664, "y": -0.3060038287779002, "z": -0.03917573689302516, "time": "2025-11-13T08:48:00.000043"}, {"x": 0.6026929890901517, "y": -0.295940564814978, "z": -0.0388384260455644, "time": "2025-11-14T08:48:00.000043"}, {"x": 0.5986577640274624, "y": -0.285589419328983, "z": -0.03846332858679476, "time": "2025-11-15T08:48:00.000043"}, {"x": 0.5940183744279477, "y": -0.2749501129436074, "z": -0.03804941469700743, "time": "2025-11-16T08:48:00.000043"}, {"x": 0.588755213221793, "y": -0.2640221476575852, "z": -0.03759554638037838, "time": "2025-11-17T08:48:00.000043"}, {"x": 0.5828466257996363, "y": -0.2528048181542746, "z": -0.03710046466668802, "time": "2025-11-18T08:48:00.000043"}, {"x": 0.5762686448559643, "y": -0.2412972264973023, "z": -0.03656277451607712, "time": "2025-11-19T08:48:00.000043"}, {"x": 0.5689946752543087, "y": -0.2294983017400475, "z": -0.03598092690804568, "time": "2025-11-20T08:48:00.000043"}, {"x": 0.5609951180659493, "y": -0.2174068263976593, "z": -0.0353531975156376, "time": "2025-11-21T08:48:00.000043"}, {"x": 0.5522369168577927, "y": -0.2050214728857671, "z": -0.03467766103110685, "time": "2025-11-22T08:48:00.000043"}, {"x": 0.5426830078592764, "y": -0.1923408538092597, "z": -0.03395216013666483, "time": "2025-11-23T08:48:00.000043"}, {"x": 0.532291646569358, "y": -0.1793635920711282, "z": -0.03317426761940666, "time": "2025-11-24T08:48:00.000043"}, {"x": 0.521015577090215, "y": -0.1660884188855304, "z": -0.03234123979659968, "time": "2025-11-25T08:48:00.000043"}, {"x": 0.5088009932731336, "y": -0.1525143125830808, "z": -0.03144995849120397, "time": "2025-11-26T08:48:00.000043"}, {"x": 0.4955862265928245, "y": -0.1386406964162021, "z": -0.03049685805318616, "time": "2025-11-27T08:48:00.000043"}, {"x": 0.4813000687338808, "y": -0.1244677229450533, "z": -0.02947783249727053, "time": "2025-11-28T08:48:00.000043"}, {"x": 0.4658595899360828, "y": -0.1099966896922069, "z": -0.02838811535510345, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.211182', '2025-11-29 08:49:16.215103');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '999', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 19.05767721427563, "y": -29.71519189267401, "z": -2.331426956703487, "time": "2025-10-30T08:48:00.000043"}, {"x": 19.06040515182436, "y": -29.71419572290131, "z": -2.332334992785243, "time": "2025-10-31T08:48:00.000043"}, {"x": 19.06312373112046, "y": -29.71320761119553, "z": -2.333240140012181, "time": "2025-11-01T08:48:00.000043"}, {"x": 19.06583589012358, "y": -29.71221926899598, "z": -2.33413422934483, "time": "2025-11-02T08:48:00.000043"}, {"x": 19.06855018513666, "y": -29.71122244088664, "z": -2.335018940050163, "time": "2025-11-03T08:48:00.000043"}, {"x": 19.07127315721918, "y": -29.71021627495481, "z": -2.335904309888836, "time": "2025-11-04T08:48:00.000043"}, {"x": 19.07400349006642, "y": -29.70920808580207, "z": -2.336799773347472, "time": "2025-11-05T08:48:00.000043"}, {"x": 19.07673318971639, "y": -29.70820682119518, "z": -2.337705741788066, "time": "2025-11-06T08:48:00.000043"}, {"x": 19.07945471864796, "y": -29.70721508254821, "z": -2.338613245619135, "time": "2025-11-07T08:48:00.000043"}, {"x": 19.08216771288761, "y": -29.70622680958155, "z": -2.339511932288695, "time": "2025-11-08T08:48:00.000043"}, {"x": 19.08487930989801, "y": -29.70523267963, "z": -2.340399296016131, "time": "2025-11-09T08:48:00.000043"}, {"x": 19.0875977858889, "y": -29.70422842481169, "z": -2.3412829219544, "time": "2025-11-10T08:48:00.000043"}, {"x": 19.09032516545491, "y": -29.7032186466428, "z": -2.342173718591348, "time": "2025-11-11T08:48:00.000043"}, {"x": 19.0930554158786, "y": -29.70221270527155, "z": -2.343076177815603, "time": "2025-11-12T08:48:00.000043"}, {"x": 19.09577983560458, "y": -29.70121636629662, "z": -2.343984374533903, "time": "2025-11-13T08:48:00.000043"}, {"x": 19.09849481161138, "y": -29.70022666488503, "z": -2.344887255398032, "time": "2025-11-14T08:48:00.000043"}, {"x": 19.10120504043271, "y": -29.69923454758109, "z": -2.345778490696264, "time": "2025-11-15T08:48:00.000043"}, {"x": 19.10391934553107, "y": -29.69823294389854, "z": -2.346662125495314, "time": "2025-11-16T08:48:00.000043"}, {"x": 19.10664280229446, "y": -29.69722308143003, "z": -2.347548976786026, "time": "2025-11-17T08:48:00.000043"}, {"x": 19.10937220545882, "y": -29.69621339033785, "z": -2.348446974567612, "time": "2025-11-18T08:48:00.000043"}, {"x": 19.11209893563893, "y": -29.69521197556886, "z": -2.349354088217629, "time": "2025-11-19T08:48:00.000043"}, {"x": 19.11481664820615, "y": -29.69421939206233, "z": -2.35026014612715, "time": "2025-11-20T08:48:00.000043"}, {"x": 19.11752692710392, "y": -29.69322815221384, "z": -2.351155902897089, "time": "2025-11-21T08:48:00.000043"}, {"x": 19.12023787750744, "y": -29.6922293980392, "z": -2.352041284926677, "time": "2025-11-22T08:48:00.000043"}, {"x": 19.12295689701559, "y": -29.69122080713131, "z": -2.352925465164783, "time": "2025-11-23T08:48:00.000043"}, {"x": 19.12568406883536, "y": -29.69020866961687, "z": -2.353818675139769, "time": "2025-11-24T08:48:00.000043"}, {"x": 19.12841209117109, "y": -29.68920226918831, "z": -2.354723071537801, "time": "2025-11-25T08:48:00.000043"}, {"x": 19.13113279588437, "y": -29.68820560149327, "z": -2.355630820987097, "time": "2025-11-26T08:48:00.000043"}, {"x": 19.13384442852061, "y": -29.68721381639553, "z": -2.356531087211728, "time": "2025-11-27T08:48:00.000043"}, {"x": 19.13655321447805, "y": -29.68621753895481, "z": -2.357419690457228, "time": "2025-11-28T08:48:00.000043"}, {"x": 19.13926781153061, "y": -29.68521123072782, "z": -2.358302843681775, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.34779', '2025-11-29 08:49:16.351047');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '10', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-10-30T08:48:52.897000+00:00"}, {"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T08:48:52.897000+00:00"}]}', '2025-12-06 08:49:16.439766', '2025-11-29 08:49:16.443609');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '599', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": -1.234770517958942, "y": 5.040025929236042, "z": 0.006690075880909382, "time": "2025-10-30T08:48:00.000043"}, {"x": -1.242192696074162, "y": 5.038577248254766, "z": 0.006862175549920273, "time": "2025-10-31T08:48:00.000043"}, {"x": -1.249612328901288, "y": 5.037118588393084, "z": 0.007034283177860224, "time": "2025-11-01T08:48:00.000043"}, {"x": -1.257030178465089, "y": 5.035648599188915, "z": 0.007206341126325722, "time": "2025-11-02T08:48:00.000043"}, {"x": -1.264445330545771, "y": 5.034168049624242, "z": 0.007378389902536967, "time": "2025-11-03T08:48:00.000043"}, {"x": -1.271857742913725, "y": 5.032676105433246, "z": 0.007550395853358825, "time": "2025-11-04T08:48:00.000043"}, {"x": -1.279267660562733, "y": 5.031173504172301, "z": 0.007722381411912308, "time": "2025-11-05T08:48:00.000043"}, {"x": -1.286673867671541, "y": 5.029659731613509, "z": 0.007894348777316191, "time": "2025-11-06T08:48:00.000043"}, {"x": -1.294077361686363, "y": 5.028135867517717, "z": 0.008066321012296821, "time": "2025-11-07T08:48:00.000043"}, {"x": -1.301477884010466, "y": 5.026602014039907, "z": 0.008238301384607025, "time": "2025-11-08T08:48:00.000043"}, {"x": -1.308876472434138, "y": 5.025057124121888, "z": 0.008410238548177263, "time": "2025-11-09T08:48:00.000043"}, {"x": -1.31627204236155, "y": 5.023501801486307, "z": 0.008582169763613342, "time": "2025-11-10T08:48:00.000043"}, {"x": -1.323664841503954, "y": 5.021935301766136, "z": 0.008754060467647673, "time": "2025-11-11T08:48:00.000043"}, {"x": -1.331054966426289, "y": 5.020358444958092, "z": 0.008925937413736509, "time": "2025-11-12T08:48:00.000043"}, {"x": -1.33844147897794, "y": 5.018770458703486, "z": 0.00909778976597054, "time": "2025-11-13T08:48:00.000043"}, {"x": -1.345825194953586, "y": 5.017172619104704, "z": 0.00926965107732257, "time": "2025-11-14T08:48:00.000043"}, {"x": -1.353205910391472, "y": 5.015564822345159, "z": 0.00944151660021308, "time": "2025-11-15T08:48:00.000043"}, {"x": -1.360584868465062, "y": 5.01394623319608, "z": 0.009613339567828285, "time": "2025-11-16T08:48:00.000043"}, {"x": -1.367960820711162, "y": 5.012317106435423, "z": 0.009785147822372959, "time": "2025-11-17T08:48:00.000043"}, {"x": -1.375334181999726, "y": 5.010676748612221, "z": 0.009956906722022185, "time": "2025-11-18T08:48:00.000043"}, {"x": -1.382704760513318, "y": 5.009025940443207, "z": 0.01012864514888263, "time": "2025-11-19T08:48:00.000043"}, {"x": -1.390071804927492, "y": 5.007363711091368, "z": 0.01030034245454327, "time": "2025-11-20T08:48:00.000043"}, {"x": -1.397435761194399, "y": 5.005691517538988, "z": 0.0104720444997841, "time": "2025-11-21T08:48:00.000043"}, {"x": -1.404796425730352, "y": 5.004009154712879, "z": 0.01064374265545971, "time": "2025-11-22T08:48:00.000043"}, {"x": -1.4121551059428, "y": 5.00231615290492, "z": 0.01081540158608546, "time": "2025-11-23T08:48:00.000043"}, {"x": -1.419510448697383, "y": 5.000612519776697, "z": 0.01098704182468515, "time": "2025-11-24T08:48:00.000043"}, {"x": -1.426863032350462, "y": 4.998897799481392, "z": 0.01115863490700932, "time": "2025-11-25T08:48:00.000043"}, {"x": -1.43421246689912, "y": 4.99717278013495, "z": 0.01133021183354188, "time": "2025-11-26T08:48:00.000043"}, {"x": -1.441558336995182, "y": 4.995436440921636, "z": 0.0115017449799716, "time": "2025-11-27T08:48:00.000043"}, {"x": -1.448900817296946, "y": 4.993690369484624, "z": 0.01167328929313386, "time": "2025-11-28T08:48:00.000043"}, {"x": -1.456239886914168, "y": 4.991934260667651, "z": 0.01184483005017503, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:15.877987', '2025-11-29 08:49:15.881718');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '499', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": -0.5528857410386459, "y": -1.399280531344129, "z": -0.01576521434834144, "time": "2025-10-30T08:48:00.000043"}, {"x": -0.5393184977716193, "y": -1.403160317244609, "z": -0.01617921365278883, "time": "2025-10-31T08:48:00.000043"}, {"x": -0.5257042799846925, "y": -1.406917895642615, "z": -0.01659180379738132, "time": "2025-11-01T08:48:00.000043"}, {"x": -0.5120441538591461, "y": -1.410552619188334, "z": -0.01700294507065724, "time": "2025-11-02T08:48:00.000043"}, {"x": -0.4983391954506114, "y": -1.414063848641903, "z": -0.01741259768904811, "time": "2025-11-03T08:48:00.000043"}, {"x": -0.4845904906628052, "y": -1.417450953031296, "z": -0.01782072180056157, "time": "2025-11-04T08:48:00.000043"}, {"x": -0.4707991352178439, "y": -1.420713309812188, "z": -0.01822727748900334, "time": "2025-11-05T08:48:00.000043"}, {"x": -0.4569662346239275, "y": -1.423850305030262, "z": -0.01863222477841855, "time": "2025-11-06T08:48:00.000043"}, {"x": -0.4430929041411631, "y": -1.426861333484676, "z": -0.01903552363729861, "time": "2025-11-07T08:48:00.000043"}, {"x": -0.4291802687448711, "y": -1.429745798891312, "z": -0.01943713398272538, "time": "2025-11-08T08:48:00.000043"}, {"x": -0.4152294630852197, "y": -1.432503114046045, "z": -0.01983701568494768, "time": "2025-11-09T08:48:00.000043"}, {"x": -0.4012416314434381, "y": -1.435132700989323, "z": -0.0202351285723319, "time": "2025-11-10T08:48:00.000043"}, {"x": -0.3872179276859545, "y": -1.437633991172666, "z": -0.0206314324361008, "time": "2025-11-11T08:48:00.000043"}, {"x": -0.3731595152168368, "y": -1.440006425626159, "z": -0.02102588703462254, "time": "2025-11-12T08:48:00.000043"}, {"x": -0.3590675669272366, "y": -1.442249455125855, "z": -0.02141845209776855, "time": "2025-11-13T08:48:00.000043"}, {"x": -0.3449432651406256, "y": -1.444362540361432, "z": -0.02180908733189098, "time": "2025-11-14T08:48:00.000043"}, {"x": -0.3307878015542355, "y": -1.446345152105186, "z": -0.02219775242530162, "time": "2025-11-15T08:48:00.000043"}, {"x": -0.3166023771780331, "y": -1.448196771382184, "z": -0.02258440705364087, "time": "2025-11-16T08:48:00.000043"}, {"x": -0.3023882022717441, "y": -1.449916889640094, "z": -0.02296901088478662, "time": "2025-11-17T08:48:00.000043"}, {"x": -0.2881464962790781, "y": -1.451505008918172, "z": -0.02335152358364129, "time": "2025-11-18T08:48:00.000043"}, {"x": -0.2738784877582753, "y": -1.452960642016685, "z": -0.02373190481728435, "time": "2025-11-19T08:48:00.000043"}, {"x": -0.259585414309307, "y": -1.454283312668132, "z": -0.02411011426046964, "time": "2025-11-20T08:48:00.000043"}, {"x": -0.2452685224987363, "y": -1.455472555709675, "z": -0.02448611160100576, "time": "2025-11-21T08:48:00.000043"}, {"x": -0.2309290677822425, "y": -1.456527917255253, "z": -0.02485985654489713, "time": "2025-11-22T08:48:00.000043"}, {"x": -0.2165683144236229, "y": -1.457448954866898, "z": -0.02523130882172102, "time": "2025-11-23T08:48:00.000043"}, {"x": -0.2021875354096992, "y": -1.458235237726389, "z": -0.02560042819052791, "time": "2025-11-24T08:48:00.000043"}, {"x": -0.1877880123621382, "y": -1.458886346808301, "z": -0.02596717444583561, "time": "2025-11-25T08:48:00.000043"}, {"x": -0.1733710354472445, "y": -1.459401875054181, "z": -0.02633150742316673, "time": "2025-11-26T08:48:00.000043"}, {"x": -0.1589379032829982, "y": -1.4597814275467, "z": -0.02669338700434218, "time": "2025-11-27T08:48:00.000043"}, {"x": -0.1444899228416041, "y": -1.460024621683529, "z": -0.02705277312324861, "time": "2025-11-28T08:48:00.000043"}, {"x": -0.1300284093470407, "y": -1.460131087351789, "z": -0.02740962577232181, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.003571', '2025-11-29 08:49:16.00716');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '899', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 29.87659754254188, "y": 0.321170060525777, "z": -0.6950959450811711, "time": "2025-10-30T08:48:00.000043"}, {"x": 29.87653614899047, "y": 0.3243284290259524, "z": -0.6951592283795726, "time": "2025-10-31T08:48:00.000043"}, {"x": 29.87647482566418, "y": 0.3274867937875535, "z": -0.6952228272922043, "time": "2025-11-01T08:48:00.000043"}, {"x": 29.87641320877596, "y": 0.330644779205934, "z": -0.6952867788370805, "time": "2025-11-02T08:48:00.000043"}, {"x": 29.87635089709879, "y": 0.3338023889348199, "z": -0.6953507458971854, "time": "2025-11-03T08:48:00.000043"}, {"x": 29.87628786849518, "y": 0.3369600021006172, "z": -0.6954143672211651, "time": "2025-11-04T08:48:00.000043"}, {"x": 29.87622450289877, "y": 0.340117979571656, "z": -0.6954776325198532, "time": "2025-11-05T08:48:00.000043"}, {"x": 29.87616118797627, "y": 0.3432762892540426, "z": -0.6955408931991763, "time": "2025-11-06T08:48:00.000043"}, {"x": 29.87609791657525, "y": 0.3464345393811111, "z": -0.6956044974987752, "time": "2025-11-07T08:48:00.000043"}, {"x": 29.87603429406942, "y": 0.349592385099573, "z": -0.6956684289284697, "time": "2025-11-08T08:48:00.000043"}, {"x": 29.87596994809212, "y": 0.3527498865883217, "z": -0.6957323233510287, "time": "2025-11-09T08:48:00.000043"}, {"x": 29.87590491508192, "y": 0.3559074465300474, "z": -0.6957958470479796, "time": "2025-11-10T08:48:00.000043"}, {"x": 29.87583960245083, "y": 0.3590653920737722, "z": -0.6958590431676341, "time": "2025-11-11T08:48:00.000043"}, {"x": 29.87577436563794, "y": 0.3622236351600482, "z": -0.6959222869344496, "time": "2025-11-12T08:48:00.000043"}, {"x": 29.87570913911734, "y": 0.3653817639420155, "z": -0.6959858960836494, "time": "2025-11-13T08:48:00.000043"}, {"x": 29.87564350445572, "y": 0.3685394702533296, "z": -0.6960498009890581, "time": "2025-11-14T08:48:00.000043"}, {"x": 29.87557712488271, "y": 0.3716968696015709, "z": -0.6961136169766103, "time": "2025-11-15T08:48:00.000043"}, {"x": 29.87551009480623, "y": 0.374854381069353, "z": -0.6961770437175672, "time": "2025-11-16T08:48:00.000043"}, {"x": 29.87544284185669, "y": 0.3780122920672471, "z": -0.6962401770861936, "time": "2025-11-17T08:48:00.000043"}, {"x": 29.8753756829251, "y": 0.3811704599933619, "z": -0.6963034095860624, "time": "2025-11-18T08:48:00.000043"}, {"x": 29.87530849500605, "y": 0.38432846022314, "z": -0.6963670227694818, "time": "2025-11-19T08:48:00.000043"}, {"x": 29.87524084299675, "y": 0.3874860268448437, "z": -0.6964308949493285, "time": "2025-11-20T08:48:00.000043"}, {"x": 29.87517243165974, "y": 0.3906433289663592, "z": -0.696494627525703, "time": "2025-11-21T08:48:00.000043"}, {"x": 29.8751034119906, "y": 0.3938007950004093, "z": -0.6965579588030245, "time": "2025-11-22T08:48:00.000043"}, {"x": 29.87503422468789, "y": 0.3969586677244102, "z": -0.696621035805359, "time": "2025-11-23T08:48:00.000043"}, {"x": 29.87496514274047, "y": 0.4001167523308015, "z": -0.6966842616219342, "time": "2025-11-24T08:48:00.000043"}, {"x": 29.87489598791381, "y": 0.4032746185657099, "z": -0.6967478768789536, "time": "2025-11-25T08:48:00.000043"}, {"x": 29.87482631583977, "y": 0.40643204724821, "z": -0.6968117099449748, "time": "2025-11-26T08:48:00.000043"}, {"x": 29.87475587759063, "y": 0.4095892579473724, "z": -0.6968753551564214, "time": "2025-11-27T08:48:00.000043"}, {"x": 29.87468487792474, "y": 0.4127466810665335, "z": -0.6969385938918807, "time": "2025-11-28T08:48:00.000043"}, {"x": 29.87461376275291, "y": 0.4159045108771062, "z": -0.6970016215802743, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.111973', '2025-11-29 08:49:16.115233');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '-96', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 0.5997140108171569, "y": -0.4162330726711723, "z": -0.04032026122088182, "time": "2025-10-30T08:48:00.000043"}, {"x": 0.603301399890437, "y": -0.4103112588109895, "z": -0.04044581333814947, "time": "2025-10-31T08:48:00.000043"}, {"x": 0.6064311989173025, "y": -0.4040782376962053, "z": -0.04054068825495417, "time": "2025-11-01T08:48:00.000043"}, {"x": 0.6090993711544952, "y": -0.3975376309878697, "z": -0.04060470287340238, "time": "2025-11-02T08:48:00.000043"}, {"x": 0.6113012672420223, "y": -0.390692710734786, "z": -0.0406376339461135, "time": "2025-11-03T08:48:00.000043"}, {"x": 0.6130315977721246, "y": -0.3835464158173965, "z": -0.04063921671995946, "time": "2025-11-04T08:48:00.000043"}, {"x": 0.6142844009472797, "y": -0.3761013663557719, "z": -0.04060914326857503, "time": "2025-11-05T08:48:00.000043"}, {"x": 0.615053004297898, "y": -0.3683598763028385, "z": -0.04054706045723635, "time": "2025-11-06T08:48:00.000043"}, {"x": 0.6153299800871138, "y": -0.3603239646212409, "z": -0.04045256752402593, "time": "2025-11-07T08:48:00.000043"}, {"x": 0.6151070941562096, "y": -0.3519953652499576, "z": -0.04032521326588714, "time": "2025-11-08T08:48:00.000043"}, {"x": 0.6143752467723057, "y": -0.3433755359202804, "z": -0.04016449274739485, "time": "2025-11-09T08:48:00.000043"}, {"x": 0.6131244045201448, "y": -0.3344656660401407, "z": -0.03996984347998007, "time": "2025-11-10T08:48:00.000043"}, {"x": 0.6113435217232907, "y": -0.3252666838316107, "z": -0.03974064098678129, "time": "2025-11-11T08:48:00.000043"}, {"x": 0.6090204499817733, "y": -0.3157792629441827, "z": -0.03947619367468203, "time": "2025-11-12T08:48:00.000043"}, {"x": 0.6061418336813664, "y": -0.3060038287779002, "z": -0.03917573689302516, "time": "2025-11-13T08:48:00.000043"}, {"x": 0.6026929890901517, "y": -0.295940564814978, "z": -0.0388384260455644, "time": "2025-11-14T08:48:00.000043"}, {"x": 0.5986577640274624, "y": -0.285589419328983, "z": -0.03846332858679476, "time": "2025-11-15T08:48:00.000043"}, {"x": 0.5940183744279477, "y": -0.2749501129436074, "z": -0.03804941469700743, "time": "2025-11-16T08:48:00.000043"}, {"x": 0.588755213221793, "y": -0.2640221476575852, "z": -0.03759554638037838, "time": "2025-11-17T08:48:00.000043"}, {"x": 0.5828466257996363, "y": -0.2528048181542746, "z": -0.03710046466668802, "time": "2025-11-18T08:48:00.000043"}, {"x": 0.5762686448559643, "y": -0.2412972264973023, "z": -0.03656277451607712, "time": "2025-11-19T08:48:00.000043"}, {"x": 0.5689946752543087, "y": -0.2294983017400475, "z": -0.03598092690804568, "time": "2025-11-20T08:48:00.000043"}, {"x": 0.5609951180659493, "y": -0.2174068263976593, "z": -0.0353531975156376, "time": "2025-11-21T08:48:00.000043"}, {"x": 0.5522369168577927, "y": -0.2050214728857671, "z": -0.03467766103110685, "time": "2025-11-22T08:48:00.000043"}, {"x": 0.5426830078592764, "y": -0.1923408538092597, "z": -0.03395216013666483, "time": "2025-11-23T08:48:00.000043"}, {"x": 0.532291646569358, "y": -0.1793635920711282, "z": -0.03317426761940666, "time": "2025-11-24T08:48:00.000043"}, {"x": 0.521015577090215, "y": -0.1660884188855304, "z": -0.03234123979659968, "time": "2025-11-25T08:48:00.000043"}, {"x": 0.5088009932731336, "y": -0.1525143125830808, "z": -0.03144995849120397, "time": "2025-11-26T08:48:00.000043"}, {"x": 0.4955862265928245, "y": -0.1386406964162021, "z": -0.03049685805318616, "time": "2025-11-27T08:48:00.000043"}, {"x": 0.4813000687338808, "y": -0.1244677229450533, "z": -0.02947783249727053, "time": "2025-11-28T08:48:00.000043"}, {"x": 0.4658595899360828, "y": -0.1099966896922069, "z": -0.02838811535510345, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.250779', '2025-11-29 08:49:16.25359');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '699', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 9.529956361556946, "y": -0.09090828900052003, "z": -0.3777630926194665, "time": "2025-10-30T08:48:00.000043"}, {"x": 9.52969580635602, "y": -0.0853419142806623, "z": -0.3778493432732197, "time": "2025-10-31T08:48:00.000043"}, {"x": 9.529432295418905, "y": -0.07977538476803199, "z": -0.3779355641283383, "time": "2025-11-01T08:48:00.000043"}, {"x": 9.529165695269125, "y": -0.07420859449217765, "z": -0.3780217977024191, "time": "2025-11-02T08:48:00.000043"}, {"x": 9.528895896223734, "y": -0.0686415480330723, "z": -0.3781080316303767, "time": "2025-11-03T08:48:00.000043"}, {"x": 9.528622789447706, "y": -0.06307422942011576, "z": -0.3781942639435671, "time": "2025-11-04T08:48:00.000043"}, {"x": 9.528346289949633, "y": -0.05750670247398536, "z": -0.3782804541040475, "time": "2025-11-05T08:48:00.000043"}, {"x": 9.528066340454231, "y": -0.05193899100538331, "z": -0.3783665853760763, "time": "2025-11-06T08:48:00.000043"}, {"x": 9.52778285651668, "y": -0.04637117009802118, "z": -0.3784526119897306, "time": "2025-11-07T08:48:00.000043"}, {"x": 9.527495806272547, "y": -0.04080337511961124, "z": -0.3785384615477652, "time": "2025-11-08T08:48:00.000043"}, {"x": 9.527205282205756, "y": -0.03523570324869846, "z": -0.3786240936691668, "time": "2025-11-09T08:48:00.000043"}, {"x": 9.526911320988342, "y": -0.02966820489934657, "z": -0.3787094874654745, "time": "2025-11-10T08:48:00.000043"}, {"x": 9.526614027931092, "y": -0.02410094622934915, "z": -0.3787946201976992, "time": "2025-11-11T08:48:00.000043"}, {"x": 9.526313484173825, "y": -0.0185339414233763, "z": -0.3788794940290612, "time": "2025-11-12T08:48:00.000043"}, {"x": 9.526009810695259, "y": -0.01296720307257611, "z": -0.3789641147682248, "time": "2025-11-13T08:48:00.000043"}, {"x": 9.52570314885339, "y": -0.007400681200296978, "z": -0.3790485232552355, "time": "2025-11-14T08:48:00.000043"}, {"x": 9.525393560354003, "y": -0.001834219336783748, "z": -0.3791328075615206, "time": "2025-11-15T08:48:00.000043"}, {"x": 9.52508099383756, "y": 0.003732267578884189, "z": -0.3792170078603146, "time": "2025-11-16T08:48:00.000043"}, {"x": 9.5247654314149, "y": 0.009298875793683744, "z": -0.3793011723737383, "time": "2025-11-17T08:48:00.000043"}, {"x": 9.524446780606056, "y": 0.01486567157928732, "z": -0.3793853271370002, "time": "2025-11-18T08:48:00.000043"}, {"x": 9.5241249528506, "y": 0.02043270189420479, "z": -0.3794694882563029, "time": "2025-11-19T08:48:00.000043"}, {"x": 9.523799834330456, "y": 0.02599998851596355, "z": -0.3795536572642048, "time": "2025-11-20T08:48:00.000043"}, {"x": 9.52347126922077, "y": 0.03156749749936603, "z": -0.3796378021027497, "time": "2025-11-21T08:48:00.000043"}, {"x": 9.523139218263555, "y": 0.03713510105548478, "z": -0.3797218533501032, "time": "2025-11-22T08:48:00.000043"}, {"x": 9.522803663760822, "y": 0.04270275729154854, "z": -0.3798057886582149, "time": "2025-11-23T08:48:00.000043"}, {"x": 9.522464584445759, "y": 0.04827037518175394, "z": -0.3798895601841991, "time": "2025-11-24T08:48:00.000043"}, {"x": 9.522121996268162, "y": 0.05383786764830022, "z": -0.3799731258107831, "time": "2025-11-25T08:48:00.000043"}, {"x": 9.521775956734036, "y": 0.05940514466391177, "z": -0.3800564455478266, "time": "2025-11-26T08:48:00.000043"}, {"x": 9.521426559144517, "y": 0.06497211608023047, "z": -0.3801394828605083, "time": "2025-11-27T08:48:00.000043"}, {"x": 9.521073984235615, "y": 0.07053878429399257, "z": -0.3802222577423013, "time": "2025-11-28T08:48:00.000043"}, {"x": 9.520718289578523, "y": 0.07610520427990522, "z": -0.3803048060868303, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.359972', '2025-11-29 08:49:16.362562');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '699', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 9.529956361556946, "y": -0.09090828900052003, "z": -0.3777630926194665, "time": "2025-10-30T08:48:00.000043"}, {"x": 9.52969580635602, "y": -0.0853419142806623, "z": -0.3778493432732197, "time": "2025-10-31T08:48:00.000043"}, {"x": 9.529432295418905, "y": -0.07977538476803199, "z": -0.3779355641283383, "time": "2025-11-01T08:48:00.000043"}, {"x": 9.529165695269125, "y": -0.07420859449217765, "z": -0.3780217977024191, "time": "2025-11-02T08:48:00.000043"}, {"x": 9.528895896223734, "y": -0.0686415480330723, "z": -0.3781080316303767, "time": "2025-11-03T08:48:00.000043"}, {"x": 9.528622789447706, "y": -0.06307422942011576, "z": -0.3781942639435671, "time": "2025-11-04T08:48:00.000043"}, {"x": 9.528346289949633, "y": -0.05750670247398536, "z": -0.3782804541040475, "time": "2025-11-05T08:48:00.000043"}, {"x": 9.528066340454231, "y": -0.05193899100538331, "z": -0.3783665853760763, "time": "2025-11-06T08:48:00.000043"}, {"x": 9.52778285651668, "y": -0.04637117009802118, "z": -0.3784526119897306, "time": "2025-11-07T08:48:00.000043"}, {"x": 9.527495806272547, "y": -0.04080337511961124, "z": -0.3785384615477652, "time": "2025-11-08T08:48:00.000043"}, {"x": 9.527205282205756, "y": -0.03523570324869846, "z": -0.3786240936691668, "time": "2025-11-09T08:48:00.000043"}, {"x": 9.526911320988342, "y": -0.02966820489934657, "z": -0.3787094874654745, "time": "2025-11-10T08:48:00.000043"}, {"x": 9.526614027931092, "y": -0.02410094622934915, "z": -0.3787946201976992, "time": "2025-11-11T08:48:00.000043"}, {"x": 9.526313484173825, "y": -0.0185339414233763, "z": -0.3788794940290612, "time": "2025-11-12T08:48:00.000043"}, {"x": 9.526009810695259, "y": -0.01296720307257611, "z": -0.3789641147682248, "time": "2025-11-13T08:48:00.000043"}, {"x": 9.52570314885339, "y": -0.007400681200296978, "z": -0.3790485232552355, "time": "2025-11-14T08:48:00.000043"}, {"x": 9.525393560354003, "y": -0.001834219336783748, "z": -0.3791328075615206, "time": "2025-11-15T08:48:00.000043"}, {"x": 9.52508099383756, "y": 0.003732267578884189, "z": -0.3792170078603146, "time": "2025-11-16T08:48:00.000043"}, {"x": 9.5247654314149, "y": 0.009298875793683744, "z": -0.3793011723737383, "time": "2025-11-17T08:48:00.000043"}, {"x": 9.524446780606056, "y": 0.01486567157928732, "z": -0.3793853271370002, "time": "2025-11-18T08:48:00.000043"}, {"x": 9.5241249528506, "y": 0.02043270189420479, "z": -0.3794694882563029, "time": "2025-11-19T08:48:00.000043"}, {"x": 9.523799834330456, "y": 0.02599998851596355, "z": -0.3795536572642048, "time": "2025-11-20T08:48:00.000043"}, {"x": 9.52347126922077, "y": 0.03156749749936603, "z": -0.3796378021027497, "time": "2025-11-21T08:48:00.000043"}, {"x": 9.523139218263555, "y": 0.03713510105548478, "z": -0.3797218533501032, "time": "2025-11-22T08:48:00.000043"}, {"x": 9.522803663760822, "y": 0.04270275729154854, "z": -0.3798057886582149, "time": "2025-11-23T08:48:00.000043"}, {"x": 9.522464584445759, "y": 0.04827037518175394, "z": -0.3798895601841991, "time": "2025-11-24T08:48:00.000043"}, {"x": 9.522121996268162, "y": 0.05383786764830022, "z": -0.3799731258107831, "time": "2025-11-25T08:48:00.000043"}, {"x": 9.521775956734036, "y": 0.05940514466391177, "z": -0.3800564455478266, "time": "2025-11-26T08:48:00.000043"}, {"x": 9.521426559144517, "y": 0.06497211608023047, "z": -0.3801394828605083, "time": "2025-11-27T08:48:00.000043"}, {"x": 9.521073984235615, "y": 0.07053878429399257, "z": -0.3802222577423013, "time": "2025-11-28T08:48:00.000043"}, {"x": 9.520718289578523, "y": 0.07610520427990522, "z": -0.3803048060868303, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.393155', '2025-11-29 08:49:16.396191');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '299', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": -0.7175481079556979, "y": 0.03969000833074263, "z": 0.041947670256518, "time": "2025-10-30T08:48:00.000043"}, {"x": -0.7184955768595215, "y": 0.01939222294882523, "z": 0.04172347949928172, "time": "2025-10-31T08:48:00.000043"}, {"x": -0.7188733785168623, "y": -0.0009209382993963202, "z": 0.04146620777385501, "time": "2025-11-01T08:48:00.000043"}, {"x": -0.718681454745346, "y": -0.02123337034775603, "z": 0.04117607298507497, "time": "2025-11-02T08:48:00.000043"}, {"x": -0.717920204870069, "y": -0.04152898252394346, "z": 0.04085331923803433, "time": "2025-11-03T08:48:00.000043"}, {"x": -0.7165904846060056, "y": -0.06179171178008817, "z": 0.04049821659180737, "time": "2025-11-04T08:48:00.000043"}, {"x": -0.7146936045488648, "y": -0.08200553585434227, "z": 0.04011106079152978, "time": "2025-11-05T08:48:00.000043"}, {"x": -0.7122313282783825, "y": -0.1021544863513396, "z": 0.03969217297922882, "time": "2025-11-06T08:48:00.000043"}, {"x": -0.7092058700784205, "y": -0.12222266172964, "z": 0.03924189938381961, "time": "2025-11-07T08:48:00.000043"}, {"x": -0.705619892278631, "y": -0.1421942401845095, "z": 0.03876061099070275, "time": "2025-11-08T08:48:00.000043"}, {"x": -0.7014765022228175, "y": -0.1620534924146419, "z": 0.03824870319141618, "time": "2025-11-09T08:48:00.000043"}, {"x": -0.6967792488694713, "y": -0.1817847942616948, "z": 0.03770659541381136, "time": "2025-11-10T08:48:00.000043"}, {"x": -0.6915321190303115, "y": -0.2013726392117925, "z": 0.03713473073324056, "time": "2025-11-11T08:48:00.000043"}, {"x": -0.6857395332529864, "y": -0.2208016507484424, "z": 0.03653357546525683, "time": "2025-11-12T08:48:00.000043"}, {"x": -0.6794063413544055, "y": -0.2400565945466138, "z": 0.03590361874034334, "time": "2025-11-13T08:48:00.000043"}, {"x": -0.6725378176114657, "y": -0.259122390498008, "z": 0.0352453720612024, "time": "2025-11-14T08:48:00.000043"}, {"x": -0.6651396556162389, "y": -0.2779841245579034, "z": 0.03455936884314555, "time": "2025-11-15T08:48:00.000043"}, {"x": -0.6572179628029424, "y": -0.2966270604043176, "z": 0.03384616393813868, "time": "2025-11-16T08:48:00.000043"}, {"x": -0.6487792546542885, "y": -0.3150366509004531, "z": 0.03310633314306752, "time": "2025-11-17T08:48:00.000043"}, {"x": -0.6398304485950289, "y": -0.3331985493518998, "z": 0.03234047269279228, "time": "2025-11-18T08:48:00.000043"}, {"x": -0.6303788575807323, "y": -0.3510986205503356, "z": 0.0315491987385699, "time": "2025-11-19T08:48:00.000043"}, {"x": -0.620432183390025, "y": -0.3687229515958506, "z": 0.03073314681242608, "time": "2025-11-20T08:48:00.000043"}, {"x": -0.6099985096286904, "y": -0.3860578624904143, "z": 0.02989297127806092, "time": "2025-11-21T08:48:00.000043"}, {"x": -0.599086294454154, "y": -0.40308991649537, "z": 0.02902934476887086, "time": "2025-11-22T08:48:00.000043"}, {"x": -0.5877043630289944, "y": -0.4198059302462027, "z": 0.0281429576136715, "time": "2025-11-23T08:48:00.000043"}, {"x": -0.5758618997122104, "y": -0.4361929836181666, "z": 0.02723451725070392, "time": "2025-11-24T08:48:00.000043"}, {"x": -0.5635684399970547, "y": -0.4522384293366936, "z": 0.0263047476305081, "time": "2025-11-25T08:48:00.000043"}, {"x": -0.5508338622043165, "y": -0.46792990232682, "z": 0.02535438860824739, "time": "2025-11-26T08:48:00.000043"}, {"x": -0.5376683789400073, "y": -0.4832553287961833, "z": 0.02438419532607066, "time": "2025-11-27T08:48:00.000043"}, {"x": -0.5240825283264762, "y": -0.4982029350464351, "z": 0.02339493758610115, "time": "2025-11-28T08:48:00.000043"}, {"x": -0.5100871650160621, "y": -0.5127612560082145, "z": 0.02238739921464858, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.464346', '2025-11-29 08:49:16.468935');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '-32', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 39.07547506967994, "y": -103.6536361218549, "z": -87.50911730772499, "time": "2025-10-30T08:48:00.000043"}, {"x": 39.07790285862105, "y": -103.6590312488773, "z": -87.51565628990222, "time": "2025-10-31T08:48:00.000043"}, {"x": 39.08033064535304, "y": -103.6644263755196, "z": -87.52219526298495, "time": "2025-11-01T08:48:00.000043"}, {"x": 39.08275842988253, "y": -103.6698215017622, "z": -87.52873422697323, "time": "2025-11-02T08:48:00.000043"}, {"x": 39.08518621221492, "y": -103.6752166275869, "z": -87.53527318186711, "time": "2025-11-03T08:48:00.000043"}, {"x": 39.08761399235451, "y": -103.6806117529773, "z": -87.54181212766673, "time": "2025-11-04T08:48:00.000043"}, {"x": 39.09004177030459, "y": -103.686006877919, "z": -87.54835106437238, "time": "2025-11-05T08:48:00.000043"}, {"x": 39.09246954606769, "y": -103.6914020023997, "z": -87.55488999198437, "time": "2025-11-06T08:48:00.000043"}, {"x": 39.09489731964569, "y": -103.6967971264097, "z": -87.56142891050325, "time": "2025-11-07T08:48:00.000043"}, {"x": 39.09732509104055, "y": -103.7021922499419, "z": -87.56796781992978, "time": "2025-11-08T08:48:00.000043"}, {"x": 39.09975286025406, "y": -103.7075873729921, "z": -87.57450672026503, "time": "2025-11-09T08:48:00.000043"}, {"x": 39.10218062728866, "y": -103.712982495559, "z": -87.58104561151032, "time": "2025-11-10T08:48:00.000043"}, {"x": 39.10460839214795, "y": -103.7183776176445, "z": -87.58758449366734, "time": "2025-11-11T08:48:00.000043"}, {"x": 39.10703615483722, "y": -103.7237727392539, "z": -87.59412336673827, "time": "2025-11-12T08:48:00.000043"}, {"x": 39.10946391536414, "y": -103.7291678603952, "z": -87.60066223072575, "time": "2025-11-13T08:48:00.000043"}, {"x": 39.1118916737395, "y": -103.7345629810794, "z": -87.60720108563288, "time": "2025-11-14T08:48:00.000043"}, {"x": 39.11431942997792, "y": -103.73995810132, "z": -87.61373993146343, "time": "2025-11-15T08:48:00.000043"}, {"x": 39.1167471840986, "y": -103.7453532211324, "z": -87.62027876822167, "time": "2025-11-16T08:48:00.000043"}, {"x": 39.11917493612594, "y": -103.7507483405329, "z": -87.62681759591248, "time": "2025-11-17T08:48:00.000043"}, {"x": 39.12160268609008, "y": -103.7561434595378, "z": -87.63335641454124, "time": "2025-11-18T08:48:00.000043"}, {"x": 39.12403043402718, "y": -103.7615385781625, "z": -87.63989522411384, "time": "2025-11-19T08:48:00.000043"}, {"x": 39.12645817997944, "y": -103.7669336964196, "z": -87.64643402463645, "time": "2025-11-20T08:48:00.000043"}, {"x": 39.12888592399484, "y": -103.7723288143181, "z": -87.65297281611547, "time": "2025-11-21T08:48:00.000043"}, {"x": 39.13131366612649, "y": -103.7777239318619, "z": -87.65951159855743, "time": "2025-11-22T08:48:00.000043"}, {"x": 39.13374140643148, "y": -103.7831190490481, "z": -87.66605037196862, "time": "2025-11-23T08:48:00.000043"}, {"x": 39.13616914496988, "y": -103.7885141658672, "z": -87.67258913635497, "time": "2025-11-24T08:48:00.000043"}, {"x": 39.13859688180304, "y": -103.7939092823015, "z": -87.67912789172199, "time": "2025-11-25T08:48:00.000043"}, {"x": 39.141024616992, "y": -103.7993043983252, "z": -87.6856666380744, "time": "2025-11-26T08:48:00.000043"}, {"x": 39.14345235059594, "y": -103.8046995139052, "z": -87.69220537541621, "time": "2025-11-27T08:48:00.000043"}, {"x": 39.14588008267069, "y": -103.8100946290009, "z": -87.69874410375041, "time": "2025-11-28T08:48:00.000043"}, {"x": 39.14830781326758, "y": -103.8154897435655, "z": -87.70528282307917, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.619578', '2025-11-29 08:49:16.625151');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '136199', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 85.24401597321388, "y": 39.40976140402279, "z": -17.5584063026002, "time": "2025-10-30T08:50:00.000036"}, {"x": 85.24353928391685, "y": 39.41062031721308, "z": -17.55746924455961, "time": "2025-10-31T08:50:00.000036"}, {"x": 85.24306256766332, "y": 39.41147920643191, "z": -17.55653218057342, "time": "2025-11-01T08:50:00.000036"}, {"x": 85.24258582445935, "y": 39.41233807169998, "z": -17.55559511064093, "time": "2025-11-02T08:50:00.000036"}, {"x": 85.24210905430976, "y": 39.41319691303649, "z": -17.55465803476144, "time": "2025-11-03T08:50:00.000036"}, {"x": 85.24163225721833, "y": 39.4140557304589, "z": -17.55372095293437, "time": "2025-11-04T08:50:00.000036"}, {"x": 85.24115543318777, "y": 39.41491452398266, "z": -17.5527838651592, "time": "2025-11-05T08:50:00.000036"}, {"x": 85.24067858222003, "y": 39.41577329362107, "z": -17.55184677143556, "time": "2025-11-06T08:50:00.000036"}, {"x": 85.24020170431652, "y": 39.41663203938497, "z": -17.55090967176325, "time": "2025-11-07T08:50:00.000036"}, {"x": 85.23972479947848, "y": 39.41749076128252, "z": -17.54997256614228, "time": "2025-11-08T08:50:00.000036"}, {"x": 85.23924786770719, "y": 39.41834945931903, "z": -17.54903545457293, "time": "2025-11-09T08:50:00.000036"}, {"x": 85.23877090900461, "y": 39.41920813349676, "z": -17.5480983370558, "time": "2025-11-10T08:50:00.000036"}, {"x": 85.23829392337367, "y": 39.42006678381485, "z": -17.54716121359187, "time": "2025-11-11T08:50:00.000036"}, {"x": 85.2378169108192, "y": 39.42092541026925, "z": -17.54622408418255, "time": "2025-11-12T08:50:00.000036"}, {"x": 85.23733987134827, "y": 39.42178401285283, "z": -17.54528694882971, "time": "2025-11-13T08:50:00.000036"}, {"x": 85.23686280497111, "y": 39.42264259155567, "z": -17.54434980753578, "time": "2025-11-14T08:50:00.000036"}, {"x": 85.23638571170181, "y": 39.42350114636533, "z": -17.54341266030373, "time": "2025-11-15T08:50:00.000036"}, {"x": 85.23590859155898, "y": 39.42435967726757, "z": -17.5424755071371, "time": "2025-11-16T08:50:00.000036"}, {"x": 85.2354314445665, "y": 39.4252181842471, "z": -17.54153834804004, "time": "2025-11-17T08:50:00.000036"}, {"x": 85.23495427075397, "y": 39.42607666728858, "z": -17.54060118301717, "time": "2025-11-18T08:50:00.000036"}, {"x": 85.23447707015696, "y": 39.42693512637784, "z": -17.53966401207362, "time": "2025-11-19T08:50:00.000036"}, {"x": 85.23399984281714, "y": 39.42779356150319, "z": -17.53872683521486, "time": "2025-11-20T08:50:00.000036"}, {"x": 85.23352258878195, "y": 39.42865197265676, "z": -17.53778965244656, "time": "2025-11-21T08:50:00.000036"}, {"x": 85.23304530810387, "y": 39.42951035983584, "z": -17.53685246377444, "time": "2025-11-22T08:50:00.000036"}, {"x": 85.23256800083956, "y": 39.43036872304408, "z": -17.53591526920408, "time": "2025-11-23T08:50:00.000036"}, {"x": 85.23209066704848, "y": 39.43122706229238, "z": -17.53497806874072, "time": "2025-11-24T08:50:00.000036"}, {"x": 85.23161330679144, "y": 39.43208537759943, "z": -17.53404086238906, "time": "2025-11-25T08:50:00.000036"}, {"x": 85.23113592012886, "y": 39.43294366899191, "z": -17.53310365015313, "time": "2025-11-26T08:50:00.000036"}, {"x": 85.23065850711939, "y": 39.43380193650425, "z": -17.53216643203613, "time": "2025-11-27T08:50:00.000036"}, {"x": 85.23018106781832, "y": 39.43466018017806, "z": -17.53122920804037, "time": "2025-11-28T08:50:00.000036"}, {"x": 85.22970360227635, "y": 39.43551840006111, "z": -17.5302919781672, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.40695', '2025-11-29 08:50:47.412042');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '-61', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": -1.224507698843249, "y": 5.030442372593004, "z": -0.02828058236288964, "time": "2025-10-30T08:50:00.000036"}, {"x": -1.231652223643287, "y": 5.028447402583106, "z": -0.02850144265222986, "time": "2025-10-31T08:50:00.000036"}, {"x": -1.238847353216969, "y": 5.026492787896609, "z": -0.02854380752395413, "time": "2025-11-01T08:50:00.000036"}, {"x": -1.246092560153459, "y": 5.024579410393224, "z": -0.02841203688329217, "time": "2025-11-02T08:50:00.000036"}, {"x": -1.253387810446394, "y": 5.022708574240804, "z": -0.02810874050002631, "time": "2025-11-03T08:50:00.000036"}, {"x": -1.260733546469094, "y": 5.020882053472413, "z": -0.02763490289469807, "time": "2025-11-04T08:50:00.000036"}, {"x": -1.268130735807657, "y": 5.019102144134842, "z": -0.0269899308980543, "time": "2025-11-05T08:50:00.000036"}, {"x": -1.275580866521786, "y": 5.017371781507104, "z": -0.02617160345252124, "time": "2025-11-06T08:50:00.000036"}, {"x": -1.283086054604969, "y": 5.015694659563994, "z": -0.02517594800179772, "time": "2025-11-07T08:50:00.000036"}, {"x": -1.290649151641406, "y": 5.014075426536909, "z": -0.0239970034044372, "time": "2025-11-08T08:50:00.000036"}, {"x": -1.298273919958256, "y": 5.012519960968109, "z": -0.02262644431131193, "time": "2025-11-09T08:50:00.000036"}, {"x": -1.305965295323081, "y": 5.011035778007777, "z": -0.02105300133635448, "time": "2025-11-10T08:50:00.000036"}, {"x": -1.313729787156995, "y": 5.009632648904218, "z": -0.01926156853284992, "time": "2025-11-11T08:50:00.000036"}, {"x": -1.321576110829118, "y": 5.008323585644166, "z": -0.01723180251805586, "time": "2025-11-12T08:50:00.000036"}, {"x": -1.329516239948203, "y": 5.007126485432617, "z": -0.01493582945221422, "time": "2025-11-13T08:50:00.000036"}, {"x": -1.337567265434683, "y": 5.006067078506831, "z": -0.01233425855488557, "time": "2025-11-14T08:50:00.000036"}, {"x": -1.345754986409075, "y": 5.005184733440172, "z": -0.009368672267525807, "time": "2025-11-15T08:50:00.000036"}, {"x": -1.354121797331679, "y": 5.00454548787865, "z": -0.00594571473369034, "time": "2025-11-16T08:50:00.000036"}, {"x": -1.362747744372519, "y": 5.004277890356025, "z": -0.001896678268311743, "time": "2025-11-17T08:50:00.000036"}, {"x": -1.371830853470484, "y": 5.004716265357104, "z": 0.0031641684642288, "time": "2025-11-18T08:50:00.000036"}, {"x": -1.382913516683811, "y": 5.009377025457558, "z": 0.01047143644584043, "time": "2025-11-19T08:50:00.000036"}, {"x": -1.388560046222629, "y": 5.008244267870638, "z": 0.0006695162344989026, "time": "2025-11-20T08:50:00.000036"}, {"x": -1.394507212632593, "y": 5.005497014900791, "z": -0.004420109058404997, "time": "2025-11-21T08:50:00.000036"}, {"x": -1.400699071660776, "y": 5.002740024641737, "z": -0.008224637609088578, "time": "2025-11-22T08:50:00.000036"}, {"x": -1.407051136065981, "y": 5.000019805769235, "z": -0.01127384223798635, "time": "2025-11-23T08:50:00.000036"}, {"x": -1.413523555516429, "y": 4.997343333092806, "z": -0.01378832746475009, "time": "2025-11-24T08:50:00.000036"}, {"x": -1.4200934388635, "y": 4.994710565982297, "z": -0.01588688222866692, "time": "2025-11-25T08:50:00.000036"}, {"x": -1.426746135621992, "y": 4.992119977645041, "z": -0.0176425649513124, "time": "2025-11-26T08:50:00.000036"}, {"x": -1.433471626869216, "y": 4.989569910641404, "z": -0.01910410950779998, "time": "2025-11-27T08:50:00.000036"}, {"x": -1.440262766523044, "y": 4.987058952686912, "z": -0.02030580336945754, "time": "2025-11-28T08:50:00.000036"}, {"x": -1.447114325353138, "y": 4.98458603707663, "z": -0.02127264452309168, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.54086', '2025-11-29 08:50:47.543323');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '799', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 10.09414202996412, "y": 16.68528763060381, "z": -0.06891825316304287, "time": "2025-10-30T08:48:00.000043"}, {"x": 10.0907403351535, "y": 16.68714024435083, "z": -0.06886718884880484, "time": "2025-10-31T08:48:00.000043"}, {"x": 10.08733825441726, "y": 16.68899217717326, "z": -0.06881612133649144, "time": "2025-11-01T08:48:00.000043"}, {"x": 10.08393588728772, "y": 16.69084340098867, "z": -0.06876509493241643, "time": "2025-11-02T08:48:00.000043"}, {"x": 10.08053306314454, "y": 16.69269393430979, "z": -0.0687142458757248, "time": "2025-11-03T08:48:00.000043"}, {"x": 10.07712970065778, "y": 16.69454382362262, "z": -0.06866336735132364, "time": "2025-11-04T08:48:00.000043"}, {"x": 10.07372593206279, "y": 16.69639303824063, "z": -0.06861247145317231, "time": "2025-11-05T08:48:00.000043"}, {"x": 10.07032167817741, "y": 16.69824159643623, "z": -0.06856155228007277, "time": "2025-11-06T08:48:00.000043"}, {"x": 10.06691702673824, "y": 16.70008948784944, "z": -0.06851054685067756, "time": "2025-11-07T08:48:00.000043"}, {"x": 10.06351194758056, "y": 16.70193671053995, "z": -0.0684595149006206, "time": "2025-11-08T08:48:00.000043"}, {"x": 10.06010650986287, "y": 16.70378326735187, "z": -0.06840832598357578, "time": "2025-11-09T08:48:00.000043"}, {"x": 10.05670085955862, "y": 16.70562910203936, "z": -0.06835715637082894, "time": "2025-11-10T08:48:00.000043"}, {"x": 10.05329480415545, "y": 16.70747424362763, "z": -0.06830609887807144, "time": "2025-11-11T08:48:00.000043"}, {"x": 10.04988835893663, "y": 16.70931870197365, "z": -0.06825505581543091, "time": "2025-11-12T08:48:00.000043"}, {"x": 10.0464814888658, "y": 16.71116247661531, "z": -0.06820408635722566, "time": "2025-11-13T08:48:00.000043"}, {"x": 10.04307417622953, "y": 16.71300558581787, "z": -0.06815308755096575, "time": "2025-11-14T08:48:00.000043"}, {"x": 10.03966648550696, "y": 16.71484800350009, "z": -0.0681021437955759, "time": "2025-11-15T08:48:00.000043"}, {"x": 10.03625826286169, "y": 16.71668977029443, "z": -0.06805120366254178, "time": "2025-11-16T08:48:00.000043"}, {"x": 10.03284966219583, "y": 16.71853087311887, "z": -0.06800011996895064, "time": "2025-11-17T08:48:00.000043"}, {"x": 10.02944073815557, "y": 16.7203712761188, "z": -0.06794906454999494, "time": "2025-11-18T08:48:00.000043"}, {"x": 10.02603141367294, "y": 16.72221099919626, "z": -0.06789801377885647, "time": "2025-11-19T08:48:00.000043"}, {"x": 10.02262171567476, "y": 16.72405002999285, "z": -0.06784701471896881, "time": "2025-11-20T08:48:00.000043"}, {"x": 10.0192115170019, "y": 16.72588840218859, "z": -0.06779602548880868, "time": "2025-11-21T08:48:00.000043"}, {"x": 10.01580095286275, "y": 16.72772609976597, "z": -0.06774494735938157, "time": "2025-11-22T08:48:00.000043"}, {"x": 10.01239000324179, "y": 16.7295631053332, "z": -0.0676939373108228, "time": "2025-11-23T08:48:00.000043"}, {"x": 10.00897856487991, "y": 16.73139945990231, "z": -0.06764286279369255, "time": "2025-11-24T08:48:00.000043"}, {"x": 10.00556679541825, "y": 16.73323513150928, "z": -0.0675917041604473, "time": "2025-11-25T08:48:00.000043"}, {"x": 10.00215467382775, "y": 16.73507011557246, "z": -0.06754052662551285, "time": "2025-11-26T08:48:00.000043"}, {"x": 9.99874227662801, "y": 16.7369043941872, "z": -0.06748933937142543, "time": "2025-11-27T08:48:00.000043"}, {"x": 9.995329509960328, "y": 16.73873796379852, "z": -0.06743831520130852, "time": "2025-11-28T08:48:00.000043"}, {"x": 9.991916247442228, "y": 16.74057087221582, "z": -0.06738730710994634, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.414938', '2025-11-29 08:49:16.417911');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '-31', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": -31.76142305154828, "y": -134.1861222467946, "z": 97.08903698065895, "time": "2025-10-30T08:48:00.000043"}, {"x": -31.76262048892356, "y": -134.1939832176238, "z": 97.09471735239316, "time": "2025-10-31T08:48:00.000043"}, {"x": -31.76381792219106, "y": -134.2018441906993, "z": 97.10039771822655, "time": "2025-11-01T08:48:00.000043"}, {"x": -31.76501535134491, "y": -134.209705166001, "z": 97.10607807816079, "time": "2025-11-02T08:48:00.000043"}, {"x": -31.76621277638048, "y": -134.2175661435101, "z": 97.11175843219753, "time": "2025-11-03T08:48:00.000043"}, {"x": -31.76741019729425, "y": -134.2254271232098, "z": 97.11743878033829, "time": "2025-11-04T08:48:00.000043"}, {"x": -31.76860761408368, "y": -134.2332881050851, "z": 97.12311912258455, "time": "2025-11-05T08:48:00.000043"}, {"x": -31.76980502674702, "y": -134.2411490891234, "z": 97.12879945893764, "time": "2025-11-06T08:48:00.000043"}, {"x": -31.77100243528304, "y": -134.2490100753143, "z": 97.13447978939874, "time": "2025-11-07T08:48:00.000043"}, {"x": -31.77219983969077, "y": -134.2568710636502, "z": 97.14016011396876, "time": "2025-11-08T08:48:00.000043"}, {"x": -31.7733972399691, "y": -134.2647320541265, "z": 97.14584043264841, "time": "2025-11-09T08:48:00.000043"}, {"x": -31.7745946361163, "y": -134.2725930467412, "z": 97.15152074543803, "time": "2025-11-10T08:48:00.000043"}, {"x": -31.7757920281296, "y": -134.2804540414959, "z": 97.15720105233757, "time": "2025-11-11T08:48:00.000043"}, {"x": -31.77698941600444, "y": -134.2883150383952, "z": 97.16288135334663, "time": "2025-11-12T08:48:00.000043"}, {"x": -31.77818679973391, "y": -134.2961760374468, "z": 97.16856164846428, "time": "2025-11-13T08:48:00.000043"}, {"x": -31.77938417930801, "y": -134.3040370386611, "z": 97.17424193768903, "time": "2025-11-14T08:48:00.000043"}, {"x": -31.78058155471289, "y": -134.311898042051, "z": 97.17992222101886, "time": "2025-11-15T08:48:00.000043"}, {"x": -31.78177892593009, "y": -134.3197590476315, "z": 97.18560249845119, "time": "2025-11-16T08:48:00.000043"}, {"x": -31.78297629293599, "y": -134.3276200554183, "z": 97.19128276998283, "time": "2025-11-17T08:48:00.000043"}, {"x": -31.78417365570121, "y": -134.3354810654274, "z": 97.19696303561012, "time": "2025-11-18T08:48:00.000043"}, {"x": -31.78537101419037, "y": -134.3433420776734, "z": 97.20264329532888, "time": "2025-11-19T08:48:00.000043"}, {"x": -31.786568368362, "y": -134.3512030921686, "z": 97.2083235491346, "time": "2025-11-20T08:48:00.000043"}, {"x": -31.78776571816892, "y": -134.3590641089214, "z": 97.21400379702256, "time": "2025-11-21T08:48:00.000043"}, {"x": -31.78896306355881, "y": -134.3669251279352, "z": 97.21968403898798, "time": "2025-11-22T08:48:00.000043"}, {"x": -31.79016040447524, "y": -134.3747861492068, "z": 97.22536427502624, "time": "2025-11-23T08:48:00.000043"}, {"x": -31.79135774085895, "y": -134.3826471727258, "z": 97.23104450513306, "time": "2025-11-24T08:48:00.000043"}, {"x": -31.79255507264939, "y": -134.3905081984742, "z": 97.23672472930468, "time": "2025-11-25T08:48:00.000043"}, {"x": -31.79375239978627, "y": -134.3983692264257, "z": 97.24240494753802, "time": "2025-11-26T08:48:00.000043"}, {"x": -31.79494972221117, "y": -134.4062302565467, "z": 97.24808515983085, "time": "2025-11-27T08:48:00.000043"}, {"x": -31.79614703986901, "y": -134.4140912887959, "z": 97.2537653661818, "time": "2025-11-28T08:48:00.000043"}, {"x": -31.79734435270925, "y": -134.4219523231262, "z": 97.25944556659044, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.513276', '2025-11-29 08:49:16.517293');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '799', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": 10.09414202996412, "y": 16.68528763060381, "z": -0.06891825316304287, "time": "2025-10-30T08:48:00.000043"}, {"x": 10.0907403351535, "y": 16.68714024435083, "z": -0.06886718884880484, "time": "2025-10-31T08:48:00.000043"}, {"x": 10.08733825441726, "y": 16.68899217717326, "z": -0.06881612133649144, "time": "2025-11-01T08:48:00.000043"}, {"x": 10.08393588728772, "y": 16.69084340098867, "z": -0.06876509493241643, "time": "2025-11-02T08:48:00.000043"}, {"x": 10.08053306314454, "y": 16.69269393430979, "z": -0.0687142458757248, "time": "2025-11-03T08:48:00.000043"}, {"x": 10.07712970065778, "y": 16.69454382362262, "z": -0.06866336735132364, "time": "2025-11-04T08:48:00.000043"}, {"x": 10.07372593206279, "y": 16.69639303824063, "z": -0.06861247145317231, "time": "2025-11-05T08:48:00.000043"}, {"x": 10.07032167817741, "y": 16.69824159643623, "z": -0.06856155228007277, "time": "2025-11-06T08:48:00.000043"}, {"x": 10.06691702673824, "y": 16.70008948784944, "z": -0.06851054685067756, "time": "2025-11-07T08:48:00.000043"}, {"x": 10.06351194758056, "y": 16.70193671053995, "z": -0.0684595149006206, "time": "2025-11-08T08:48:00.000043"}, {"x": 10.06010650986287, "y": 16.70378326735187, "z": -0.06840832598357578, "time": "2025-11-09T08:48:00.000043"}, {"x": 10.05670085955862, "y": 16.70562910203936, "z": -0.06835715637082894, "time": "2025-11-10T08:48:00.000043"}, {"x": 10.05329480415545, "y": 16.70747424362763, "z": -0.06830609887807144, "time": "2025-11-11T08:48:00.000043"}, {"x": 10.04988835893663, "y": 16.70931870197365, "z": -0.06825505581543091, "time": "2025-11-12T08:48:00.000043"}, {"x": 10.0464814888658, "y": 16.71116247661531, "z": -0.06820408635722566, "time": "2025-11-13T08:48:00.000043"}, {"x": 10.04307417622953, "y": 16.71300558581787, "z": -0.06815308755096575, "time": "2025-11-14T08:48:00.000043"}, {"x": 10.03966648550696, "y": 16.71484800350009, "z": -0.0681021437955759, "time": "2025-11-15T08:48:00.000043"}, {"x": 10.03625826286169, "y": 16.71668977029443, "z": -0.06805120366254178, "time": "2025-11-16T08:48:00.000043"}, {"x": 10.03284966219583, "y": 16.71853087311887, "z": -0.06800011996895064, "time": "2025-11-17T08:48:00.000043"}, {"x": 10.02944073815557, "y": 16.7203712761188, "z": -0.06794906454999494, "time": "2025-11-18T08:48:00.000043"}, {"x": 10.02603141367294, "y": 16.72221099919626, "z": -0.06789801377885647, "time": "2025-11-19T08:48:00.000043"}, {"x": 10.02262171567476, "y": 16.72405002999285, "z": -0.06784701471896881, "time": "2025-11-20T08:48:00.000043"}, {"x": 10.0192115170019, "y": 16.72588840218859, "z": -0.06779602548880868, "time": "2025-11-21T08:48:00.000043"}, {"x": 10.01580095286275, "y": 16.72772609976597, "z": -0.06774494735938157, "time": "2025-11-22T08:48:00.000043"}, {"x": 10.01239000324179, "y": 16.7295631053332, "z": -0.0676939373108228, "time": "2025-11-23T08:48:00.000043"}, {"x": 10.00897856487991, "y": 16.73139945990231, "z": -0.06764286279369255, "time": "2025-11-24T08:48:00.000043"}, {"x": 10.00556679541825, "y": 16.73323513150928, "z": -0.0675917041604473, "time": "2025-11-25T08:48:00.000043"}, {"x": 10.00215467382775, "y": 16.73507011557246, "z": -0.06754052662551285, "time": "2025-11-26T08:48:00.000043"}, {"x": 9.99874227662801, "y": 16.7369043941872, "z": -0.06748933937142543, "time": "2025-11-27T08:48:00.000043"}, {"x": 9.995329509960328, "y": 16.73873796379852, "z": -0.06743831520130852, "time": "2025-11-28T08:48:00.000043"}, {"x": 9.991916247442228, "y": 16.74057087221582, "z": -0.06738730710994634, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.454747', '2025-11-29 08:49:16.458271');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-10-30T08:48:41.505000+00:00:2025-11-29T08:48:41.505000+00:00:1d', '-32', '2025-10-30 08:48:41.505', '2025-11-29 08:48:41.505', '1d', '{"positions": [{"x": 39.07547506967994, "y": -103.6536361218549, "z": -87.50911730772499, "time": "2025-10-30T08:48:00.000043"}, {"x": 39.07790285862105, "y": -103.6590312488773, "z": -87.51565628990222, "time": "2025-10-31T08:48:00.000043"}, {"x": 39.08033064535304, "y": -103.6644263755196, "z": -87.52219526298495, "time": "2025-11-01T08:48:00.000043"}, {"x": 39.08275842988253, "y": -103.6698215017622, "z": -87.52873422697323, "time": "2025-11-02T08:48:00.000043"}, {"x": 39.08518621221492, "y": -103.6752166275869, "z": -87.53527318186711, "time": "2025-11-03T08:48:00.000043"}, {"x": 39.08761399235451, "y": -103.6806117529773, "z": -87.54181212766673, "time": "2025-11-04T08:48:00.000043"}, {"x": 39.09004177030459, "y": -103.686006877919, "z": -87.54835106437238, "time": "2025-11-05T08:48:00.000043"}, {"x": 39.09246954606769, "y": -103.6914020023997, "z": -87.55488999198437, "time": "2025-11-06T08:48:00.000043"}, {"x": 39.09489731964569, "y": -103.6967971264097, "z": -87.56142891050325, "time": "2025-11-07T08:48:00.000043"}, {"x": 39.09732509104055, "y": -103.7021922499419, "z": -87.56796781992978, "time": "2025-11-08T08:48:00.000043"}, {"x": 39.09975286025406, "y": -103.7075873729921, "z": -87.57450672026503, "time": "2025-11-09T08:48:00.000043"}, {"x": 39.10218062728866, "y": -103.712982495559, "z": -87.58104561151032, "time": "2025-11-10T08:48:00.000043"}, {"x": 39.10460839214795, "y": -103.7183776176445, "z": -87.58758449366734, "time": "2025-11-11T08:48:00.000043"}, {"x": 39.10703615483722, "y": -103.7237727392539, "z": -87.59412336673827, "time": "2025-11-12T08:48:00.000043"}, {"x": 39.10946391536414, "y": -103.7291678603952, "z": -87.60066223072575, "time": "2025-11-13T08:48:00.000043"}, {"x": 39.1118916737395, "y": -103.7345629810794, "z": -87.60720108563288, "time": "2025-11-14T08:48:00.000043"}, {"x": 39.11431942997792, "y": -103.73995810132, "z": -87.61373993146343, "time": "2025-11-15T08:48:00.000043"}, {"x": 39.1167471840986, "y": -103.7453532211324, "z": -87.62027876822167, "time": "2025-11-16T08:48:00.000043"}, {"x": 39.11917493612594, "y": -103.7507483405329, "z": -87.62681759591248, "time": "2025-11-17T08:48:00.000043"}, {"x": 39.12160268609008, "y": -103.7561434595378, "z": -87.63335641454124, "time": "2025-11-18T08:48:00.000043"}, {"x": 39.12403043402718, "y": -103.7615385781625, "z": -87.63989522411384, "time": "2025-11-19T08:48:00.000043"}, {"x": 39.12645817997944, "y": -103.7669336964196, "z": -87.64643402463645, "time": "2025-11-20T08:48:00.000043"}, {"x": 39.12888592399484, "y": -103.7723288143181, "z": -87.65297281611547, "time": "2025-11-21T08:48:00.000043"}, {"x": 39.13131366612649, "y": -103.7777239318619, "z": -87.65951159855743, "time": "2025-11-22T08:48:00.000043"}, {"x": 39.13374140643148, "y": -103.7831190490481, "z": -87.66605037196862, "time": "2025-11-23T08:48:00.000043"}, {"x": 39.13616914496988, "y": -103.7885141658672, "z": -87.67258913635497, "time": "2025-11-24T08:48:00.000043"}, {"x": 39.13859688180304, "y": -103.7939092823015, "z": -87.67912789172199, "time": "2025-11-25T08:48:00.000043"}, {"x": 39.141024616992, "y": -103.7993043983252, "z": -87.6856666380744, "time": "2025-11-26T08:48:00.000043"}, {"x": 39.14345235059594, "y": -103.8046995139052, "z": -87.69220537541621, "time": "2025-11-27T08:48:00.000043"}, {"x": 39.14588008267069, "y": -103.8100946290009, "z": -87.69874410375041, "time": "2025-11-28T08:48:00.000043"}, {"x": 39.14830781326758, "y": -103.8154897435655, "z": -87.70528282307917, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.562246', '2025-11-29 08:49:16.565651');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '399', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 0.7948102318969024, "y": 0.5953233642851582, "z": -0.00003826007715890125, "time": "2025-10-30T08:50:00.000036"}, {"x": 0.784093764838198, "y": 0.6089324905530166, "z": -0.00003961004786108617, "time": "2025-10-31T08:50:00.000036"}, {"x": 0.7731416026996247, "y": 0.6223565802430822, "z": -0.00004099603706326209, "time": "2025-11-01T08:50:00.000036"}, {"x": 0.761957092711287, "y": 0.6355917636996957, "z": -0.00004238330270855749, "time": "2025-11-02T08:50:00.000036"}, {"x": 0.750543576613109, "y": 0.6486342940908376, "z": -0.00004373272558127661, "time": "2025-11-03T08:50:00.000036"}, {"x": 0.7389043596290632, "y": 0.6614805271820547, "z": -0.00004500337686416797, "time": "2025-11-04T08:50:00.000036"}, {"x": 0.7270426867482634, "y": 0.6741268847588753, "z": -0.00004615634665881549, "time": "2025-11-05T08:50:00.000036"}, {"x": 0.714961736684845, "y": 0.6865698056670141, "z": -0.00004715926209790738, "time": "2025-11-06T08:50:00.000036"}, {"x": 0.7026646403210312, "y": 0.698805695719758, "z": -0.0000479903672141926, "time": "2025-11-07T08:50:00.000036"}, {"x": 0.6901545215608701, "y": 0.7108308909087859, "z": -0.00004864095155250383, "time": "2025-11-08T08:50:00.000036"}, {"x": 0.6774345493715634, "y": 0.7226416439924679, "z": -0.00004911549258091701, "time": "2025-11-09T08:50:00.000036"}, {"x": 0.664507986564644, "y": 0.7342341350225856, "z": -0.00004942977552740795, "time": "2025-11-10T08:50:00.000036"}, {"x": 0.651378225008064, "y": 0.7456044981276942, "z": -0.00004960788313291486, "time": "2025-11-11T08:50:00.000036"}, {"x": 0.6380488043785895, "y": 0.7567488542567601, "z": -0.00004967901566924265, "time": "2025-11-12T08:50:00.000036"}, {"x": 0.6245234173397787, "y": 0.767663341977298, "z": -0.00004967476886765188, "time": "2025-11-13T08:50:00.000036"}, {"x": 0.6108059062243015, "y": 0.7783441425658636, "z": -0.00004962708926103865, "time": "2025-11-14T08:50:00.000036"}, {"x": 0.5969002557638426, "y": 0.7887874989613596, "z": -0.00004956684776850356, "time": "2025-11-15T08:50:00.000036"}, {"x": 0.5828105847840431, "y": 0.7989897298730421, "z": -0.00004952285747033527, "time": "2025-11-16T08:50:00.000036"}, {"x": 0.5685411382001285, "y": 0.8089472407586649, "z": -0.00004952115877742986, "time": "2025-11-17T08:50:00.000036"}, {"x": 0.5540962795553478, "y": 0.8186565330989704, "z": -0.00004958444391958571, "time": "2025-11-18T08:50:00.000036"}, {"x": 0.5394804837766786, "y": 0.8281142128478471, "z": -0.00004973155238973527, "time": "2025-11-19T08:50:00.000036"}, {"x": 0.5246983296669944, "y": 0.837316998401256, "z": -0.00004997701871057411, "time": "2025-11-20T08:50:00.000036"}, {"x": 0.5097544917658847, "y": 0.846261728042102, "z": -0.00005033068460849111, "time": "2025-11-21T08:50:00.000036"}, {"x": 0.4946537314483818, "y": 0.8549453666424734, "z": -0.00005079739743014301, "time": "2025-11-22T08:50:00.000036"}, {"x": 0.4794008873555398, "y": 0.863365011435766, "z": -0.00005137680882026947, "time": "2025-11-23T08:50:00.000036"}, {"x": 0.4640008653504972, "y": 0.8715178968466123, "z": -0.00005206327035729556, "time": "2025-11-24T08:50:00.000036"}, {"x": 0.4484586281030026, "y": 0.8794013985763902, "z": -0.00005284580704352978, "time": "2025-11-25T08:50:00.000036"}, {"x": 0.432779184123225, "y": 0.8870130372541852, "z": -0.00005370814669941765, "time": "2025-11-26T08:50:00.000036"}, {"x": 0.416967575658186, "y": 0.8943504818489745, "z": -0.00005462880282125342, "time": "2025-11-27T08:50:00.000036"}, {"x": 0.4010288644660019, "y": 0.9014115525923146, "z": -0.00005558125607019488, "time": "2025-11-28T08:50:00.000036"}, {"x": 0.3849681143138619, "y": 0.9081942223216476, "z": -0.00005653435483706485, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.390121', '2025-11-29 08:50:47.394729');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-61:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '-61', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": -1.224507698843249, "y": 5.030442372593004, "z": -0.02828058236288964, "time": "2025-10-30T08:50:00.000036"}, {"x": -1.231652223643287, "y": 5.028447402583106, "z": -0.02850144265222986, "time": "2025-10-31T08:50:00.000036"}, {"x": -1.238847353216969, "y": 5.026492787896609, "z": -0.02854380752395413, "time": "2025-11-01T08:50:00.000036"}, {"x": -1.246092560153459, "y": 5.024579410393224, "z": -0.02841203688329217, "time": "2025-11-02T08:50:00.000036"}, {"x": -1.253387810446394, "y": 5.022708574240804, "z": -0.02810874050002631, "time": "2025-11-03T08:50:00.000036"}, {"x": -1.260733546469094, "y": 5.020882053472413, "z": -0.02763490289469807, "time": "2025-11-04T08:50:00.000036"}, {"x": -1.268130735807657, "y": 5.019102144134842, "z": -0.0269899308980543, "time": "2025-11-05T08:50:00.000036"}, {"x": -1.275580866521786, "y": 5.017371781507104, "z": -0.02617160345252124, "time": "2025-11-06T08:50:00.000036"}, {"x": -1.283086054604969, "y": 5.015694659563994, "z": -0.02517594800179772, "time": "2025-11-07T08:50:00.000036"}, {"x": -1.290649151641406, "y": 5.014075426536909, "z": -0.0239970034044372, "time": "2025-11-08T08:50:00.000036"}, {"x": -1.298273919958256, "y": 5.012519960968109, "z": -0.02262644431131193, "time": "2025-11-09T08:50:00.000036"}, {"x": -1.305965295323081, "y": 5.011035778007777, "z": -0.02105300133635448, "time": "2025-11-10T08:50:00.000036"}, {"x": -1.313729787156995, "y": 5.009632648904218, "z": -0.01926156853284992, "time": "2025-11-11T08:50:00.000036"}, {"x": -1.321576110829118, "y": 5.008323585644166, "z": -0.01723180251805586, "time": "2025-11-12T08:50:00.000036"}, {"x": -1.329516239948203, "y": 5.007126485432617, "z": -0.01493582945221422, "time": "2025-11-13T08:50:00.000036"}, {"x": -1.337567265434683, "y": 5.006067078506831, "z": -0.01233425855488557, "time": "2025-11-14T08:50:00.000036"}, {"x": -1.345754986409075, "y": 5.005184733440172, "z": -0.009368672267525807, "time": "2025-11-15T08:50:00.000036"}, {"x": -1.354121797331679, "y": 5.00454548787865, "z": -0.00594571473369034, "time": "2025-11-16T08:50:00.000036"}, {"x": -1.362747744372519, "y": 5.004277890356025, "z": -0.001896678268311743, "time": "2025-11-17T08:50:00.000036"}, {"x": -1.371830853470484, "y": 5.004716265357104, "z": 0.0031641684642288, "time": "2025-11-18T08:50:00.000036"}, {"x": -1.382913516683811, "y": 5.009377025457558, "z": 0.01047143644584043, "time": "2025-11-19T08:50:00.000036"}, {"x": -1.388560046222629, "y": 5.008244267870638, "z": 0.0006695162344989026, "time": "2025-11-20T08:50:00.000036"}, {"x": -1.394507212632593, "y": 5.005497014900791, "z": -0.004420109058404997, "time": "2025-11-21T08:50:00.000036"}, {"x": -1.400699071660776, "y": 5.002740024641737, "z": -0.008224637609088578, "time": "2025-11-22T08:50:00.000036"}, {"x": -1.407051136065981, "y": 5.000019805769235, "z": -0.01127384223798635, "time": "2025-11-23T08:50:00.000036"}, {"x": -1.413523555516429, "y": 4.997343333092806, "z": -0.01378832746475009, "time": "2025-11-24T08:50:00.000036"}, {"x": -1.4200934388635, "y": 4.994710565982297, "z": -0.01588688222866692, "time": "2025-11-25T08:50:00.000036"}, {"x": -1.426746135621992, "y": 4.992119977645041, "z": -0.0176425649513124, "time": "2025-11-26T08:50:00.000036"}, {"x": -1.433471626869216, "y": 4.989569910641404, "z": -0.01910410950779998, "time": "2025-11-27T08:50:00.000036"}, {"x": -1.440262766523044, "y": 4.987058952686912, "z": -0.02030580336945754, "time": "2025-11-28T08:50:00.000036"}, {"x": -1.447114325353138, "y": 4.98458603707663, "z": -0.02127264452309168, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.504424', '2025-11-29 08:50:47.507411');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '136472', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": -45.99671163373894, "y": -8.91655262857634, "z": 24.16231275918106, "time": "2025-10-30T08:50:00.000036"}, {"x": -45.99652991775703, "y": -8.918694546210652, "z": 24.16199224996191, "time": "2025-10-31T08:50:00.000036"}, {"x": -45.99634810674514, "y": -8.920836456378595, "z": 24.16167169185978, "time": "2025-11-01T08:50:00.000036"}, {"x": -45.99616620069781, "y": -8.922978359054804, "z": 24.16135108487646, "time": "2025-11-02T08:50:00.000036"}, {"x": -45.9959841996108, "y": -8.925120254215404, "z": 24.16103042901368, "time": "2025-11-03T08:50:00.000036"}, {"x": -45.99580210348095, "y": -8.92726214183827, "z": 24.1607097242731, "time": "2025-11-04T08:50:00.000036"}, {"x": -45.99561991230616, "y": -8.929404021903247, "z": 24.16038897065629, "time": "2025-11-05T08:50:00.000036"}, {"x": -45.99543762608501, "y": -8.931545894392382, "z": 24.1600681681647, "time": "2025-11-06T08:50:00.000036"}, {"x": -45.99525524481671, "y": -8.933687759290173, "z": 24.15974731679959, "time": "2025-11-07T08:50:00.000036"}, {"x": -45.99507276850066, "y": -8.935829616583762, "z": 24.15942641656201, "time": "2025-11-08T08:50:00.000036"}, {"x": -45.99489019713613, "y": -8.937971466263177, "z": 24.15910546745275, "time": "2025-11-09T08:50:00.000036"}, {"x": -45.9947075307218, "y": -8.940113308321479, "z": 24.15878446947226, "time": "2025-11-10T08:50:00.000036"}, {"x": -45.99452476925526, "y": -8.942255142754862, "z": 24.15846342262063, "time": "2025-11-11T08:50:00.000036"}, {"x": -45.99434191273236, "y": -8.944396969562705, "z": 24.15814232689753, "time": "2025-11-12T08:50:00.000036"}, {"x": -45.99415896114658, "y": -8.946538788747446, "z": 24.15782118230213, "time": "2025-11-13T08:50:00.000036"}, {"x": -45.9939759144883, "y": -8.948680600314358, "z": 24.15749998883308, "time": "2025-11-14T08:50:00.000036"}, {"x": -45.99379277274402, "y": -8.950822404271186, "z": 24.15717874648847, "time": "2025-11-15T08:50:00.000036"}, {"x": -45.99360953589573, "y": -8.952964200627504, "z": 24.1568574552658, "time": "2025-11-16T08:50:00.000036"}, {"x": -45.99342620392014, "y": -8.955105989393923, "z": 24.15653611516204, "time": "2025-11-17T08:50:00.000036"}, {"x": -45.99324277678829, "y": -8.957247770581114, "z": 24.15621472617357, "time": "2025-11-18T08:50:00.000036"}, {"x": -45.99305925446514, "y": -8.959389544198567, "z": 24.15589328829637, "time": "2025-11-19T08:50:00.000036"}, {"x": -45.99287563690964, "y": -8.961531310253319, "z": 24.15557180152601, "time": "2025-11-20T08:50:00.000036"}, {"x": -45.992691924075, "y": -8.963673068748554, "z": 24.1552502658579, "time": "2025-11-21T08:50:00.000036"}, {"x": -45.99250811590925, "y": -8.96581481968229, "z": 24.15492868128737, "time": "2025-11-22T08:50:00.000036"}, {"x": -45.99232421235637, "y": -8.967956563046224, "z": 24.15460704780991, "time": "2025-11-23T08:50:00.000036"}, {"x": -45.99214021335749, "y": -8.97009829882479, "z": 24.15428536542135, "time": "2025-11-24T08:50:00.000036"}, {"x": -45.99195611885246, "y": -8.972240026994614, "z": 24.15396363411805, "time": "2025-11-25T08:50:00.000036"}, {"x": -45.99177192878135, "y": -8.974381747524337, "z": 24.15364185389704, "time": "2025-11-26T08:50:00.000036"}, {"x": -45.99158764308616, "y": -8.976523460374848, "z": 24.15332002475619, "time": "2025-11-27T08:50:00.000036"}, {"x": -45.99140326171222, "y": -8.978665165499907, "z": 24.15299814669426, "time": "2025-11-28T08:50:00.000036"}, {"x": -45.99121878460937, "y": -8.980806862847016, "z": 24.15267621971095, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.651155', '2025-11-29 08:50:47.65454');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '299', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": -0.7175481079556979, "y": 0.03969000833074263, "z": 0.041947670256518, "time": "2025-10-30T08:48:00.000043"}, {"x": -0.7184955768595215, "y": 0.01939222294882523, "z": 0.04172347949928172, "time": "2025-10-31T08:48:00.000043"}, {"x": -0.7188733785168623, "y": -0.0009209382993963202, "z": 0.04146620777385501, "time": "2025-11-01T08:48:00.000043"}, {"x": -0.718681454745346, "y": -0.02123337034775603, "z": 0.04117607298507497, "time": "2025-11-02T08:48:00.000043"}, {"x": -0.717920204870069, "y": -0.04152898252394346, "z": 0.04085331923803433, "time": "2025-11-03T08:48:00.000043"}, {"x": -0.7165904846060056, "y": -0.06179171178008817, "z": 0.04049821659180737, "time": "2025-11-04T08:48:00.000043"}, {"x": -0.7146936045488648, "y": -0.08200553585434227, "z": 0.04011106079152978, "time": "2025-11-05T08:48:00.000043"}, {"x": -0.7122313282783825, "y": -0.1021544863513396, "z": 0.03969217297922882, "time": "2025-11-06T08:48:00.000043"}, {"x": -0.7092058700784205, "y": -0.12222266172964, "z": 0.03924189938381961, "time": "2025-11-07T08:48:00.000043"}, {"x": -0.705619892278631, "y": -0.1421942401845095, "z": 0.03876061099070275, "time": "2025-11-08T08:48:00.000043"}, {"x": -0.7014765022228175, "y": -0.1620534924146419, "z": 0.03824870319141618, "time": "2025-11-09T08:48:00.000043"}, {"x": -0.6967792488694713, "y": -0.1817847942616948, "z": 0.03770659541381136, "time": "2025-11-10T08:48:00.000043"}, {"x": -0.6915321190303115, "y": -0.2013726392117925, "z": 0.03713473073324056, "time": "2025-11-11T08:48:00.000043"}, {"x": -0.6857395332529864, "y": -0.2208016507484424, "z": 0.03653357546525683, "time": "2025-11-12T08:48:00.000043"}, {"x": -0.6794063413544055, "y": -0.2400565945466138, "z": 0.03590361874034334, "time": "2025-11-13T08:48:00.000043"}, {"x": -0.6725378176114657, "y": -0.259122390498008, "z": 0.0352453720612024, "time": "2025-11-14T08:48:00.000043"}, {"x": -0.6651396556162389, "y": -0.2779841245579034, "z": 0.03455936884314555, "time": "2025-11-15T08:48:00.000043"}, {"x": -0.6572179628029424, "y": -0.2966270604043176, "z": 0.03384616393813868, "time": "2025-11-16T08:48:00.000043"}, {"x": -0.6487792546542885, "y": -0.3150366509004531, "z": 0.03310633314306752, "time": "2025-11-17T08:48:00.000043"}, {"x": -0.6398304485950289, "y": -0.3331985493518998, "z": 0.03234047269279228, "time": "2025-11-18T08:48:00.000043"}, {"x": -0.6303788575807323, "y": -0.3510986205503356, "z": 0.0315491987385699, "time": "2025-11-19T08:48:00.000043"}, {"x": -0.620432183390025, "y": -0.3687229515958506, "z": 0.03073314681242608, "time": "2025-11-20T08:48:00.000043"}, {"x": -0.6099985096286904, "y": -0.3860578624904143, "z": 0.02989297127806092, "time": "2025-11-21T08:48:00.000043"}, {"x": -0.599086294454154, "y": -0.40308991649537, "z": 0.02902934476887086, "time": "2025-11-22T08:48:00.000043"}, {"x": -0.5877043630289944, "y": -0.4198059302462027, "z": 0.0281429576136715, "time": "2025-11-23T08:48:00.000043"}, {"x": -0.5758618997122104, "y": -0.4361929836181666, "z": 0.02723451725070392, "time": "2025-11-24T08:48:00.000043"}, {"x": -0.5635684399970547, "y": -0.4522384293366936, "z": 0.0263047476305081, "time": "2025-11-25T08:48:00.000043"}, {"x": -0.5508338622043165, "y": -0.46792990232682, "z": 0.02535438860824739, "time": "2025-11-26T08:48:00.000043"}, {"x": -0.5376683789400073, "y": -0.4832553287961833, "z": 0.02438419532607066, "time": "2025-11-27T08:48:00.000043"}, {"x": -0.5240825283264762, "y": -0.4982029350464351, "z": 0.02339493758610115, "time": "2025-11-28T08:48:00.000043"}, {"x": -0.5100871650160621, "y": -0.5127612560082145, "z": 0.02238739921464858, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.503293', '2025-11-29 08:49:16.505885');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '2000001', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 2.789993855023939, "y": 0.7266935679242374, "z": -0.4909841843591748, "time": "2025-10-30T08:50:00.000036"}, {"x": 2.787133267817529, "y": 0.7359955654466747, "z": -0.4901627273782084, "time": "2025-10-31T08:50:00.000036"}, {"x": 2.784239689918095, "y": 0.7452888467183737, "z": -0.4893354680333748, "time": "2025-11-01T08:50:00.000036"}, {"x": 2.781313137250967, "y": 0.7545732968619543, "z": -0.4885024128974237, "time": "2025-11-02T08:50:00.000036"}, {"x": 2.778353626085099, "y": 0.763848800958146, "z": -0.4876635686079763, "time": "2025-11-03T08:50:00.000036"}, {"x": 2.775361173033842, "y": 0.7731152440461355, "z": -0.4868189418676683, "time": "2025-11-04T08:50:00.000036"}, {"x": 2.772335795055804, "y": 0.782372511123807, "z": -0.4859685394443114, "time": "2025-11-05T08:50:00.000036"}, {"x": 2.769277509456505, "y": 0.7916204871501913, "z": -0.4851123681709444, "time": "2025-11-06T08:50:00.000036"}, {"x": 2.766186333888042, "y": 0.8008590570433034, "z": -0.4842504349460829, "time": "2025-11-07T08:50:00.000036"}, {"x": 2.763062286350677, "y": 0.810088105681177, "z": -0.4833827467338829, "time": "2025-11-08T08:50:00.000036"}, {"x": 2.759905385194256, "y": 0.8193075179029786, "z": -0.4825093105642815, "time": "2025-11-09T08:50:00.000036"}, {"x": 2.756715649119402, "y": 0.8285171785097474, "z": -0.4816301335331505, "time": "2025-11-10T08:50:00.000036"}, {"x": 2.753493097178673, "y": 0.8377169722649731, "z": -0.4807452228024591, "time": "2025-11-11T08:50:00.000036"}, {"x": 2.750237748777804, "y": 0.846906783895178, "z": -0.4798545856004439, "time": "2025-11-12T08:50:00.000036"}, {"x": 2.746949623677071, "y": 0.8560864980906233, "z": -0.4789582292217816, "time": "2025-11-13T08:50:00.000036"}, {"x": 2.743628741992768, "y": 0.8652559995062173, "z": -0.4780561610277556, "time": "2025-11-14T08:50:00.000036"}, {"x": 2.740275124198745, "y": 0.8744151727626717, "z": -0.4771483884464077, "time": "2025-11-15T08:50:00.000036"}, {"x": 2.73688879112794, "y": 0.8835639024479159, "z": -0.4762349189726695, "time": "2025-11-16T08:50:00.000036"}, {"x": 2.733469763973824, "y": 0.8927020731187556, "z": -0.4753157601684659, "time": "2025-11-17T08:50:00.000036"}, {"x": 2.73001806429168, "y": 0.9018295693027376, "z": -0.474390919662786, "time": "2025-11-18T08:50:00.000036"}, {"x": 2.726533713999633, "y": 0.9109462755001702, "z": -0.4734604051517212, "time": "2025-11-19T08:50:00.000036"}, {"x": 2.723016735379403, "y": 0.9200520761862254, "z": -0.4725242243984689, "time": "2025-11-20T08:50:00.000036"}, {"x": 2.719467151076723, "y": 0.9291468558130572, "z": -0.4715823852333072, "time": "2025-11-21T08:50:00.000036"}, {"x": 2.715884984101427, "y": 0.9382304988118453, "z": -0.4706348955535434, "time": "2025-11-22T08:50:00.000036"}, {"x": 2.712270257827224, "y": 0.9473028895946947, "z": -0.4696817633234484, "time": "2025-11-23T08:50:00.000036"}, {"x": 2.708622995991208, "y": 0.956363912556314, "z": -0.4687229965741836, "time": "2025-11-24T08:50:00.000036"}, {"x": 2.704943222693164, "y": 0.9654134520754112, "z": -0.467758603403734, "time": "2025-11-25T08:50:00.000036"}, {"x": 2.701230962394758, "y": 0.9744513925157541, "z": -0.4667885919768573, "time": "2025-11-26T08:50:00.000036"}, {"x": 2.697486239918737, "y": 0.9834776182268724, "z": -0.4658129705250651, "time": "2025-11-27T08:50:00.000036"}, {"x": 2.693709080448205, "y": 0.9924920135443897, "z": -0.4648317473466408, "time": "2025-11-28T08:50:00.000036"}, {"x": 2.68989950952612, "y": 1.001494462790008, "z": -0.4638449308067074, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:46.994622', '2025-11-29 08:50:11.62461');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-10-30T08:48:52.897000+00:00:2025-11-29T08:48:52.897000+00:00:1d', '-31', '2025-10-30 08:48:52.897', '2025-11-29 08:48:52.897', '1d', '{"positions": [{"x": -31.76142305154828, "y": -134.1861222467946, "z": 97.08903698065895, "time": "2025-10-30T08:48:00.000043"}, {"x": -31.76262048892356, "y": -134.1939832176238, "z": 97.09471735239316, "time": "2025-10-31T08:48:00.000043"}, {"x": -31.76381792219106, "y": -134.2018441906993, "z": 97.10039771822655, "time": "2025-11-01T08:48:00.000043"}, {"x": -31.76501535134491, "y": -134.209705166001, "z": 97.10607807816079, "time": "2025-11-02T08:48:00.000043"}, {"x": -31.76621277638048, "y": -134.2175661435101, "z": 97.11175843219753, "time": "2025-11-03T08:48:00.000043"}, {"x": -31.76741019729425, "y": -134.2254271232098, "z": 97.11743878033829, "time": "2025-11-04T08:48:00.000043"}, {"x": -31.76860761408368, "y": -134.2332881050851, "z": 97.12311912258455, "time": "2025-11-05T08:48:00.000043"}, {"x": -31.76980502674702, "y": -134.2411490891234, "z": 97.12879945893764, "time": "2025-11-06T08:48:00.000043"}, {"x": -31.77100243528304, "y": -134.2490100753143, "z": 97.13447978939874, "time": "2025-11-07T08:48:00.000043"}, {"x": -31.77219983969077, "y": -134.2568710636502, "z": 97.14016011396876, "time": "2025-11-08T08:48:00.000043"}, {"x": -31.7733972399691, "y": -134.2647320541265, "z": 97.14584043264841, "time": "2025-11-09T08:48:00.000043"}, {"x": -31.7745946361163, "y": -134.2725930467412, "z": 97.15152074543803, "time": "2025-11-10T08:48:00.000043"}, {"x": -31.7757920281296, "y": -134.2804540414959, "z": 97.15720105233757, "time": "2025-11-11T08:48:00.000043"}, {"x": -31.77698941600444, "y": -134.2883150383952, "z": 97.16288135334663, "time": "2025-11-12T08:48:00.000043"}, {"x": -31.77818679973391, "y": -134.2961760374468, "z": 97.16856164846428, "time": "2025-11-13T08:48:00.000043"}, {"x": -31.77938417930801, "y": -134.3040370386611, "z": 97.17424193768903, "time": "2025-11-14T08:48:00.000043"}, {"x": -31.78058155471289, "y": -134.311898042051, "z": 97.17992222101886, "time": "2025-11-15T08:48:00.000043"}, {"x": -31.78177892593009, "y": -134.3197590476315, "z": 97.18560249845119, "time": "2025-11-16T08:48:00.000043"}, {"x": -31.78297629293599, "y": -134.3276200554183, "z": 97.19128276998283, "time": "2025-11-17T08:48:00.000043"}, {"x": -31.78417365570121, "y": -134.3354810654274, "z": 97.19696303561012, "time": "2025-11-18T08:48:00.000043"}, {"x": -31.78537101419037, "y": -134.3433420776734, "z": 97.20264329532888, "time": "2025-11-19T08:48:00.000043"}, {"x": -31.786568368362, "y": -134.3512030921686, "z": 97.2083235491346, "time": "2025-11-20T08:48:00.000043"}, {"x": -31.78776571816892, "y": -134.3590641089214, "z": 97.21400379702256, "time": "2025-11-21T08:48:00.000043"}, {"x": -31.78896306355881, "y": -134.3669251279352, "z": 97.21968403898798, "time": "2025-11-22T08:48:00.000043"}, {"x": -31.79016040447524, "y": -134.3747861492068, "z": 97.22536427502624, "time": "2025-11-23T08:48:00.000043"}, {"x": -31.79135774085895, "y": -134.3826471727258, "z": 97.23104450513306, "time": "2025-11-24T08:48:00.000043"}, {"x": -31.79255507264939, "y": -134.3905081984742, "z": 97.23672472930468, "time": "2025-11-25T08:48:00.000043"}, {"x": -31.79375239978627, "y": -134.3983692264257, "z": 97.24240494753802, "time": "2025-11-26T08:48:00.000043"}, {"x": -31.79494972221117, "y": -134.4062302565467, "z": 97.24808515983085, "time": "2025-11-27T08:48:00.000043"}, {"x": -31.79614703986901, "y": -134.4140912887959, "z": 97.2537653661818, "time": "2025-11-28T08:48:00.000043"}, {"x": -31.79734435270925, "y": -134.4219523231262, "z": 97.25944556659044, "time": "2025-11-29T08:48:00.000043"}]}', '2025-12-06 08:49:16.550538', '2025-11-29 08:49:16.554311');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('2000001:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '2000001', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 2.789993855023939, "y": 0.7266935679242374, "z": -0.4909841843591748, "time": "2025-10-30T08:50:00.000036"}, {"x": 2.787133267817529, "y": 0.7359955654466747, "z": -0.4901627273782084, "time": "2025-10-31T08:50:00.000036"}, {"x": 2.784239689918095, "y": 0.7452888467183737, "z": -0.4893354680333748, "time": "2025-11-01T08:50:00.000036"}, {"x": 2.781313137250967, "y": 0.7545732968619543, "z": -0.4885024128974237, "time": "2025-11-02T08:50:00.000036"}, {"x": 2.778353626085099, "y": 0.763848800958146, "z": -0.4876635686079763, "time": "2025-11-03T08:50:00.000036"}, {"x": 2.775361173033842, "y": 0.7731152440461355, "z": -0.4868189418676683, "time": "2025-11-04T08:50:00.000036"}, {"x": 2.772335795055804, "y": 0.782372511123807, "z": -0.4859685394443114, "time": "2025-11-05T08:50:00.000036"}, {"x": 2.769277509456505, "y": 0.7916204871501913, "z": -0.4851123681709444, "time": "2025-11-06T08:50:00.000036"}, {"x": 2.766186333888042, "y": 0.8008590570433034, "z": -0.4842504349460829, "time": "2025-11-07T08:50:00.000036"}, {"x": 2.763062286350677, "y": 0.810088105681177, "z": -0.4833827467338829, "time": "2025-11-08T08:50:00.000036"}, {"x": 2.759905385194256, "y": 0.8193075179029786, "z": -0.4825093105642815, "time": "2025-11-09T08:50:00.000036"}, {"x": 2.756715649119402, "y": 0.8285171785097474, "z": -0.4816301335331505, "time": "2025-11-10T08:50:00.000036"}, {"x": 2.753493097178673, "y": 0.8377169722649731, "z": -0.4807452228024591, "time": "2025-11-11T08:50:00.000036"}, {"x": 2.750237748777804, "y": 0.846906783895178, "z": -0.4798545856004439, "time": "2025-11-12T08:50:00.000036"}, {"x": 2.746949623677071, "y": 0.8560864980906233, "z": -0.4789582292217816, "time": "2025-11-13T08:50:00.000036"}, {"x": 2.743628741992768, "y": 0.8652559995062173, "z": -0.4780561610277556, "time": "2025-11-14T08:50:00.000036"}, {"x": 2.740275124198745, "y": 0.8744151727626717, "z": -0.4771483884464077, "time": "2025-11-15T08:50:00.000036"}, {"x": 2.73688879112794, "y": 0.8835639024479159, "z": -0.4762349189726695, "time": "2025-11-16T08:50:00.000036"}, {"x": 2.733469763973824, "y": 0.8927020731187556, "z": -0.4753157601684659, "time": "2025-11-17T08:50:00.000036"}, {"x": 2.73001806429168, "y": 0.9018295693027376, "z": -0.474390919662786, "time": "2025-11-18T08:50:00.000036"}, {"x": 2.726533713999633, "y": 0.9109462755001702, "z": -0.4734604051517212, "time": "2025-11-19T08:50:00.000036"}, {"x": 2.723016735379403, "y": 0.9200520761862254, "z": -0.4725242243984689, "time": "2025-11-20T08:50:00.000036"}, {"x": 2.719467151076723, "y": 0.9291468558130572, "z": -0.4715823852333072, "time": "2025-11-21T08:50:00.000036"}, {"x": 2.715884984101427, "y": 0.9382304988118453, "z": -0.4706348955535434, "time": "2025-11-22T08:50:00.000036"}, {"x": 2.712270257827224, "y": 0.9473028895946947, "z": -0.4696817633234484, "time": "2025-11-23T08:50:00.000036"}, {"x": 2.708622995991208, "y": 0.956363912556314, "z": -0.4687229965741836, "time": "2025-11-24T08:50:00.000036"}, {"x": 2.704943222693164, "y": 0.9654134520754112, "z": -0.467758603403734, "time": "2025-11-25T08:50:00.000036"}, {"x": 2.701230962394758, "y": 0.9744513925157541, "z": -0.4667885919768573, "time": "2025-11-26T08:50:00.000036"}, {"x": 2.697486239918737, "y": 0.9834776182268724, "z": -0.4658129705250651, "time": "2025-11-27T08:50:00.000036"}, {"x": 2.693709080448205, "y": 0.9924920135443897, "z": -0.4648317473466408, "time": "2025-11-28T08:50:00.000036"}, {"x": 2.68989950952612, "y": 1.001494462790008, "z": -0.4638449308067074, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.281944', '2025-11-29 08:50:47.006997');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('399:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '399', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 0.7948102318969024, "y": 0.5953233642851582, "z": -0.00003826007715890125, "time": "2025-10-30T08:50:00.000036"}, {"x": 0.784093764838198, "y": 0.6089324905530166, "z": -0.00003961004786108617, "time": "2025-10-31T08:50:00.000036"}, {"x": 0.7731416026996247, "y": 0.6223565802430822, "z": -0.00004099603706326209, "time": "2025-11-01T08:50:00.000036"}, {"x": 0.761957092711287, "y": 0.6355917636996957, "z": -0.00004238330270855749, "time": "2025-11-02T08:50:00.000036"}, {"x": 0.750543576613109, "y": 0.6486342940908376, "z": -0.00004373272558127661, "time": "2025-11-03T08:50:00.000036"}, {"x": 0.7389043596290632, "y": 0.6614805271820547, "z": -0.00004500337686416797, "time": "2025-11-04T08:50:00.000036"}, {"x": 0.7270426867482634, "y": 0.6741268847588753, "z": -0.00004615634665881549, "time": "2025-11-05T08:50:00.000036"}, {"x": 0.714961736684845, "y": 0.6865698056670141, "z": -0.00004715926209790738, "time": "2025-11-06T08:50:00.000036"}, {"x": 0.7026646403210312, "y": 0.698805695719758, "z": -0.0000479903672141926, "time": "2025-11-07T08:50:00.000036"}, {"x": 0.6901545215608701, "y": 0.7108308909087859, "z": -0.00004864095155250383, "time": "2025-11-08T08:50:00.000036"}, {"x": 0.6774345493715634, "y": 0.7226416439924679, "z": -0.00004911549258091701, "time": "2025-11-09T08:50:00.000036"}, {"x": 0.664507986564644, "y": 0.7342341350225856, "z": -0.00004942977552740795, "time": "2025-11-10T08:50:00.000036"}, {"x": 0.651378225008064, "y": 0.7456044981276942, "z": -0.00004960788313291486, "time": "2025-11-11T08:50:00.000036"}, {"x": 0.6380488043785895, "y": 0.7567488542567601, "z": -0.00004967901566924265, "time": "2025-11-12T08:50:00.000036"}, {"x": 0.6245234173397787, "y": 0.767663341977298, "z": -0.00004967476886765188, "time": "2025-11-13T08:50:00.000036"}, {"x": 0.6108059062243015, "y": 0.7783441425658636, "z": -0.00004962708926103865, "time": "2025-11-14T08:50:00.000036"}, {"x": 0.5969002557638426, "y": 0.7887874989613596, "z": -0.00004956684776850356, "time": "2025-11-15T08:50:00.000036"}, {"x": 0.5828105847840431, "y": 0.7989897298730421, "z": -0.00004952285747033527, "time": "2025-11-16T08:50:00.000036"}, {"x": 0.5685411382001285, "y": 0.8089472407586649, "z": -0.00004952115877742986, "time": "2025-11-17T08:50:00.000036"}, {"x": 0.5540962795553478, "y": 0.8186565330989704, "z": -0.00004958444391958571, "time": "2025-11-18T08:50:00.000036"}, {"x": 0.5394804837766786, "y": 0.8281142128478471, "z": -0.00004973155238973527, "time": "2025-11-19T08:50:00.000036"}, {"x": 0.5246983296669944, "y": 0.837316998401256, "z": -0.00004997701871057411, "time": "2025-11-20T08:50:00.000036"}, {"x": 0.5097544917658847, "y": 0.846261728042102, "z": -0.00005033068460849111, "time": "2025-11-21T08:50:00.000036"}, {"x": 0.4946537314483818, "y": 0.8549453666424734, "z": -0.00005079739743014301, "time": "2025-11-22T08:50:00.000036"}, {"x": 0.4794008873555398, "y": 0.863365011435766, "z": -0.00005137680882026947, "time": "2025-11-23T08:50:00.000036"}, {"x": 0.4640008653504972, "y": 0.8715178968466123, "z": -0.00005206327035729556, "time": "2025-11-24T08:50:00.000036"}, {"x": 0.4484586281030026, "y": 0.8794013985763902, "z": -0.00005284580704352978, "time": "2025-11-25T08:50:00.000036"}, {"x": 0.432779184123225, "y": 0.8870130372541852, "z": -0.00005370814669941765, "time": "2025-11-26T08:50:00.000036"}, {"x": 0.416967575658186, "y": 0.8943504818489745, "z": -0.00005462880282125342, "time": "2025-11-27T08:50:00.000036"}, {"x": 0.4010288644660019, "y": 0.9014115525923146, "z": -0.00005558125607019488, "time": "2025-11-28T08:50:00.000036"}, {"x": 0.3849681143138619, "y": 0.9081942223216476, "z": -0.00005653435483706485, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.345965', '2025-11-29 08:50:47.35202');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '136108', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": -37.1091843861562, "y": -23.4979190906007, "z": 23.55862087535775, "time": "2025-10-30T08:50:00.000036"}, {"x": -37.10780845372735, "y": -23.4996746273867, "z": 23.55848982117204, "time": "2025-10-31T08:50:00.000036"}, {"x": -37.10643243050436, "y": -23.50143011851885, "z": 23.55835871060158, "time": "2025-11-01T08:50:00.000036"}, {"x": -37.10505631648302, "y": -23.50318556397095, "z": 23.55822754364679, "time": "2025-11-02T08:50:00.000036"}, {"x": -37.10368011166034, "y": -23.50494096371833, "z": 23.55809632030803, "time": "2025-11-03T08:50:00.000036"}, {"x": -37.10230381603442, "y": -23.50669631773805, "z": 23.5579650405856, "time": "2025-11-04T08:50:00.000036"}, {"x": -37.10092742960438, "y": -23.50845162600915, "z": 23.55783370447971, "time": "2025-11-05T08:50:00.000036"}, {"x": -37.0995509523701, "y": -23.51020688851285, "z": 23.5577023119904, "time": "2025-11-06T08:50:00.000036"}, {"x": -37.09817438433202, "y": -23.51196210523284, "z": 23.55757086311761, "time": "2025-11-07T08:50:00.000036"}, {"x": -37.09679772549076, "y": -23.51371727615546, "z": 23.55743935786099, "time": "2025-11-08T08:50:00.000036"}, {"x": -37.09542097584689, "y": -23.51547240126991, "z": 23.55730779621996, "time": "2025-11-09T08:50:00.000036"}, {"x": -37.09404413540032, "y": -23.51722748056844, "z": 23.55717617819363, "time": "2025-11-10T08:50:00.000036"}, {"x": -37.09266720414989, "y": -23.51898251404644, "z": 23.55704450378071, "time": "2025-11-11T08:50:00.000036"}, {"x": -37.09129018209271, "y": -23.52073750170247, "z": 23.55691277297948, "time": "2025-11-12T08:50:00.000036"}, {"x": -37.08991306922351, "y": -23.52249244353815, "z": 23.55678098578776, "time": "2025-11-13T08:50:00.000036"}, {"x": -37.0885358655339, "y": -23.52424733955795, "z": 23.55664914220283, "time": "2025-11-14T08:50:00.000036"}, {"x": -37.08715857101167, "y": -23.5260021897688, "z": 23.55651724222142, "time": "2025-11-15T08:50:00.000036"}, {"x": -37.08578118564002, "y": -23.52775699417944, "z": 23.55638528583965, "time": "2025-11-16T08:50:00.000036"}, {"x": -37.08440370939694, "y": -23.52951175279971, "z": 23.55625327305312, "time": "2025-11-17T08:50:00.000036"}, {"x": -37.08302614225472, "y": -23.53126646563942, "z": 23.55612120385685, "time": "2025-11-18T08:50:00.000036"}, {"x": -37.08164848417957, "y": -23.53302113270727, "z": 23.55598907824544, "time": "2025-11-19T08:50:00.000036"}, {"x": -37.08027073513172, "y": -23.53477575400948, "z": 23.55585689621311, "time": "2025-11-20T08:50:00.000036"}, {"x": -37.07889289506556, "y": -23.53653032954841, "z": 23.55572465775388, "time": "2025-11-21T08:50:00.000036"}, {"x": -37.07751496393043, "y": -23.53828485932129, "z": 23.55559236286173, "time": "2025-11-22T08:50:00.000036"}, {"x": -37.07613694167156, "y": -23.54003934331897, "z": 23.55546001153077, "time": "2025-11-23T08:50:00.000036"}, {"x": -37.07475882823132, "y": -23.54179378152508, "z": 23.55532760375547, "time": "2025-11-24T08:50:00.000036"}, {"x": -37.0733806235508, "y": -23.54354817391544, "z": 23.55519513953082, "time": "2025-11-25T08:50:00.000036"}, {"x": -37.07200232757135, "y": -23.54530252045786, "z": 23.55506261885247, "time": "2025-11-26T08:50:00.000036"}, {"x": -37.07062394023622, "y": -23.54705682111244, "z": 23.55493004171694, "time": "2025-11-27T08:50:00.000036"}, {"x": -37.06924546149197, "y": -23.54881107583209, "z": 23.55479740812161, "time": "2025-11-28T08:50:00.000036"}, {"x": -37.06786689128973, "y": -23.55056528456353, "z": 23.55466471806481, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.458602', '2025-11-29 08:50:47.461255');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136108:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '136108', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": -37.1091843861562, "y": -23.4979190906007, "z": 23.55862087535775, "time": "2025-10-30T08:50:00.000036"}, {"x": -37.10780845372735, "y": -23.4996746273867, "z": 23.55848982117204, "time": "2025-10-31T08:50:00.000036"}, {"x": -37.10643243050436, "y": -23.50143011851885, "z": 23.55835871060158, "time": "2025-11-01T08:50:00.000036"}, {"x": -37.10505631648302, "y": -23.50318556397095, "z": 23.55822754364679, "time": "2025-11-02T08:50:00.000036"}, {"x": -37.10368011166034, "y": -23.50494096371833, "z": 23.55809632030803, "time": "2025-11-03T08:50:00.000036"}, {"x": -37.10230381603442, "y": -23.50669631773805, "z": 23.5579650405856, "time": "2025-11-04T08:50:00.000036"}, {"x": -37.10092742960438, "y": -23.50845162600915, "z": 23.55783370447971, "time": "2025-11-05T08:50:00.000036"}, {"x": -37.0995509523701, "y": -23.51020688851285, "z": 23.5577023119904, "time": "2025-11-06T08:50:00.000036"}, {"x": -37.09817438433202, "y": -23.51196210523284, "z": 23.55757086311761, "time": "2025-11-07T08:50:00.000036"}, {"x": -37.09679772549076, "y": -23.51371727615546, "z": 23.55743935786099, "time": "2025-11-08T08:50:00.000036"}, {"x": -37.09542097584689, "y": -23.51547240126991, "z": 23.55730779621996, "time": "2025-11-09T08:50:00.000036"}, {"x": -37.09404413540032, "y": -23.51722748056844, "z": 23.55717617819363, "time": "2025-11-10T08:50:00.000036"}, {"x": -37.09266720414989, "y": -23.51898251404644, "z": 23.55704450378071, "time": "2025-11-11T08:50:00.000036"}, {"x": -37.09129018209271, "y": -23.52073750170247, "z": 23.55691277297948, "time": "2025-11-12T08:50:00.000036"}, {"x": -37.08991306922351, "y": -23.52249244353815, "z": 23.55678098578776, "time": "2025-11-13T08:50:00.000036"}, {"x": -37.0885358655339, "y": -23.52424733955795, "z": 23.55664914220283, "time": "2025-11-14T08:50:00.000036"}, {"x": -37.08715857101167, "y": -23.5260021897688, "z": 23.55651724222142, "time": "2025-11-15T08:50:00.000036"}, {"x": -37.08578118564002, "y": -23.52775699417944, "z": 23.55638528583965, "time": "2025-11-16T08:50:00.000036"}, {"x": -37.08440370939694, "y": -23.52951175279971, "z": 23.55625327305312, "time": "2025-11-17T08:50:00.000036"}, {"x": -37.08302614225472, "y": -23.53126646563942, "z": 23.55612120385685, "time": "2025-11-18T08:50:00.000036"}, {"x": -37.08164848417957, "y": -23.53302113270727, "z": 23.55598907824544, "time": "2025-11-19T08:50:00.000036"}, {"x": -37.08027073513172, "y": -23.53477575400948, "z": 23.55585689621311, "time": "2025-11-20T08:50:00.000036"}, {"x": -37.07889289506556, "y": -23.53653032954841, "z": 23.55572465775388, "time": "2025-11-21T08:50:00.000036"}, {"x": -37.07751496393043, "y": -23.53828485932129, "z": 23.55559236286173, "time": "2025-11-22T08:50:00.000036"}, {"x": -37.07613694167156, "y": -23.54003934331897, "z": 23.55546001153077, "time": "2025-11-23T08:50:00.000036"}, {"x": -37.07475882823132, "y": -23.54179378152508, "z": 23.55532760375547, "time": "2025-11-24T08:50:00.000036"}, {"x": -37.0733806235508, "y": -23.54354817391544, "z": 23.55519513953082, "time": "2025-11-25T08:50:00.000036"}, {"x": -37.07200232757135, "y": -23.54530252045786, "z": 23.55506261885247, "time": "2025-11-26T08:50:00.000036"}, {"x": -37.07062394023622, "y": -23.54705682111244, "z": 23.55493004171694, "time": "2025-11-27T08:50:00.000036"}, {"x": -37.06924546149197, "y": -23.54881107583209, "z": 23.55479740812161, "time": "2025-11-28T08:50:00.000036"}, {"x": -37.06786689128973, "y": -23.55056528456353, "z": 23.55466471806481, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.493769', '2025-11-29 08:50:47.496714');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136199:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '136199', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 85.24401597321388, "y": 39.40976140402279, "z": -17.5584063026002, "time": "2025-10-30T08:50:00.000036"}, {"x": 85.24353928391685, "y": 39.41062031721308, "z": -17.55746924455961, "time": "2025-10-31T08:50:00.000036"}, {"x": 85.24306256766332, "y": 39.41147920643191, "z": -17.55653218057342, "time": "2025-11-01T08:50:00.000036"}, {"x": 85.24258582445935, "y": 39.41233807169998, "z": -17.55559511064093, "time": "2025-11-02T08:50:00.000036"}, {"x": 85.24210905430976, "y": 39.41319691303649, "z": -17.55465803476144, "time": "2025-11-03T08:50:00.000036"}, {"x": 85.24163225721833, "y": 39.4140557304589, "z": -17.55372095293437, "time": "2025-11-04T08:50:00.000036"}, {"x": 85.24115543318777, "y": 39.41491452398266, "z": -17.5527838651592, "time": "2025-11-05T08:50:00.000036"}, {"x": 85.24067858222003, "y": 39.41577329362107, "z": -17.55184677143556, "time": "2025-11-06T08:50:00.000036"}, {"x": 85.24020170431652, "y": 39.41663203938497, "z": -17.55090967176325, "time": "2025-11-07T08:50:00.000036"}, {"x": 85.23972479947848, "y": 39.41749076128252, "z": -17.54997256614228, "time": "2025-11-08T08:50:00.000036"}, {"x": 85.23924786770719, "y": 39.41834945931903, "z": -17.54903545457293, "time": "2025-11-09T08:50:00.000036"}, {"x": 85.23877090900461, "y": 39.41920813349676, "z": -17.5480983370558, "time": "2025-11-10T08:50:00.000036"}, {"x": 85.23829392337367, "y": 39.42006678381485, "z": -17.54716121359187, "time": "2025-11-11T08:50:00.000036"}, {"x": 85.2378169108192, "y": 39.42092541026925, "z": -17.54622408418255, "time": "2025-11-12T08:50:00.000036"}, {"x": 85.23733987134827, "y": 39.42178401285283, "z": -17.54528694882971, "time": "2025-11-13T08:50:00.000036"}, {"x": 85.23686280497111, "y": 39.42264259155567, "z": -17.54434980753578, "time": "2025-11-14T08:50:00.000036"}, {"x": 85.23638571170181, "y": 39.42350114636533, "z": -17.54341266030373, "time": "2025-11-15T08:50:00.000036"}, {"x": 85.23590859155898, "y": 39.42435967726757, "z": -17.5424755071371, "time": "2025-11-16T08:50:00.000036"}, {"x": 85.2354314445665, "y": 39.4252181842471, "z": -17.54153834804004, "time": "2025-11-17T08:50:00.000036"}, {"x": 85.23495427075397, "y": 39.42607666728858, "z": -17.54060118301717, "time": "2025-11-18T08:50:00.000036"}, {"x": 85.23447707015696, "y": 39.42693512637784, "z": -17.53966401207362, "time": "2025-11-19T08:50:00.000036"}, {"x": 85.23399984281714, "y": 39.42779356150319, "z": -17.53872683521486, "time": "2025-11-20T08:50:00.000036"}, {"x": 85.23352258878195, "y": 39.42865197265676, "z": -17.53778965244656, "time": "2025-11-21T08:50:00.000036"}, {"x": 85.23304530810387, "y": 39.42951035983584, "z": -17.53685246377444, "time": "2025-11-22T08:50:00.000036"}, {"x": 85.23256800083956, "y": 39.43036872304408, "z": -17.53591526920408, "time": "2025-11-23T08:50:00.000036"}, {"x": 85.23209066704848, "y": 39.43122706229238, "z": -17.53497806874072, "time": "2025-11-24T08:50:00.000036"}, {"x": 85.23161330679144, "y": 39.43208537759943, "z": -17.53404086238906, "time": "2025-11-25T08:50:00.000036"}, {"x": 85.23113592012886, "y": 39.43294366899191, "z": -17.53310365015313, "time": "2025-11-26T08:50:00.000036"}, {"x": 85.23065850711939, "y": 39.43380193650425, "z": -17.53216643203613, "time": "2025-11-27T08:50:00.000036"}, {"x": 85.23018106781832, "y": 39.43466018017806, "z": -17.53122920804037, "time": "2025-11-28T08:50:00.000036"}, {"x": 85.22970360227635, "y": 39.43551840006111, "z": -17.5302919781672, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.442802', '2025-11-29 08:50:47.448089');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '599', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": -1.234780828063019, "y": 5.040023924836316, "z": 0.00669031493123069, "time": "2025-10-30T08:50:00.000036"}, {"x": -1.242203002398711, "y": 5.038575228785731, "z": 0.006862414572938999, "time": "2025-10-31T08:50:00.000036"}, {"x": -1.249622633397981, "y": 5.037116555164602, "z": 0.007034522191554832, "time": "2025-11-01T08:50:00.000036"}, {"x": -1.257040478536941, "y": 5.035646549968546, "z": 0.007206580090765316, "time": "2025-11-02T08:50:00.000036"}, {"x": -1.264455628151817, "y": 5.034165985263575, "z": 0.007378628816442179, "time": "2025-11-03T08:50:00.000036"}, {"x": -1.271868035690239, "y": 5.032674026324266, "z": 0.007550634758695348, "time": "2025-11-04T08:50:00.000036"}, {"x": -1.279277950033302, "y": 5.031171408703584, "z": 0.007722620233555708, "time": "2025-11-05T08:50:00.000036"}, {"x": -1.286684151917719, "y": 5.02965762270161, "z": 0.007894587649468075, "time": "2025-11-06T08:50:00.000036"}, {"x": -1.294087641921348, "y": 5.028133743507172, "z": 0.008066559852415134, "time": "2025-11-07T08:50:00.000036"}, {"x": -1.301488161693072, "y": 5.026599876721281, "z": 0.008238540233525913, "time": "2025-11-08T08:50:00.000036"}, {"x": -1.308886745602106, "y": 5.025054970779479, "z": 0.008410477339474056, "time": "2025-11-09T08:50:00.000036"}, {"x": -1.316282312739717, "y": 5.023499633605604, "z": 0.008582408522564592, "time": "2025-11-10T08:50:00.000036"}, {"x": -1.32367510680013, "y": 5.021933119152112, "z": 0.008754299213415192, "time": "2025-11-11T08:50:00.000036"}, {"x": -1.331065228628686, "y": 5.020356246539929, "z": 0.00892617608323131, "time": "2025-11-12T08:50:00.000036"}, {"x": -1.338451735638154, "y": 5.018768246813003, "z": 0.009098028481032864, "time": "2025-11-13T08:50:00.000036"}, {"x": -1.345835447867803, "y": 5.017170392339868, "z": 0.009269889757165459, "time": "2025-11-14T08:50:00.000036"}, {"x": -1.353216160491796, "y": 5.015562582624964, "z": 0.0094417552973312, "time": "2025-11-15T08:50:00.000036"}, {"x": -1.360595114510877, "y": 5.013943977294195, "z": 0.009613578187778807, "time": "2025-11-16T08:50:00.000036"}, {"x": -1.367971063934956, "y": 5.012314836205254, "z": 0.009785386411839814, "time": "2025-11-17T08:50:00.000036"}, {"x": -1.37534442018934, "y": 5.010674463176858, "z": 0.009957145274397769, "time": "2025-11-18T08:50:00.000036"}, {"x": -1.382714995764516, "y": 5.009023639299541, "z": 0.01012888361907754, "time": "2025-11-19T08:50:00.000036"}, {"x": -1.39008203422596, "y": 5.007361395878943, "z": 0.01030058094829231, "time": "2025-11-20T08:50:00.000036"}, {"x": -1.397445986654609, "y": 5.005689187348906, "z": 0.01047228294997013, "time": "2025-11-21T08:50:00.000036"}, {"x": -1.404806647616401, "y": 5.004006811578243, "z": 0.01064398112701128, "time": "2025-11-22T08:50:00.000036"}, {"x": -1.412165323760338, "y": 5.002313793467171, "z": 0.0108156399687101, "time": "2025-11-23T08:50:00.000036"}, {"x": -1.419520663085336, "y": 5.000610146311224, "z": 0.01098728018901696, "time": "2025-11-24T08:50:00.000036"}, {"x": -1.426873241421247, "y": 4.998895410667036, "z": 0.01115887322515364, "time": "2025-11-25T08:50:00.000036"}, {"x": -1.434222672822047, "y": 4.99717037619201, "z": 0.01133045008388416, "time": "2025-11-26T08:50:00.000036"}, {"x": -1.441568536559753, "y": 4.995434022776056, "z": 0.01150198324580135, "time": "2025-11-27T08:50:00.000036"}, {"x": -1.448911012998539, "y": 4.99368793683086, "z": 0.01167352752433027, "time": "2025-11-28T08:50:00.000036"}, {"x": -1.456250078556546, "y": 4.991931815415886, "z": 0.01184506831322691, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.556539', '2025-11-29 08:50:47.559857');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '499', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": -0.5528669307102327, "y": -1.399286004382256, "z": -0.0157657903062894, "time": "2025-10-30T08:50:00.000036"}, {"x": -0.5392996214660225, "y": -1.403165621002695, "z": -0.01617978768106832, "time": "2025-10-31T08:50:00.000036"}, {"x": -0.525685339175871, "y": -1.406923029216032, "z": -0.01659237584088534, "time": "2025-11-01T08:50:00.000036"}, {"x": -0.5120251500347751, "y": -1.410557581683602, "z": -0.01700351507418377, "time": "2025-11-02T08:50:00.000036"}, {"x": -0.4983201301120491, "y": -1.414068639176902, "z": -0.01741316559730311, "time": "2025-11-03T08:50:00.000036"}, {"x": -0.4845713653250691, "y": -1.417455570735488, "z": -0.01782128755815734, "time": "2025-11-04T08:50:00.000036"}, {"x": -0.4707799514095817, "y": -1.42071775382685, "z": -0.01822784104045767, "time": "2025-11-05T08:50:00.000036"}, {"x": -0.456946993887371, "y": -1.423854574508719, "z": -0.01863278606816206, "time": "2025-11-06T08:50:00.000036"}, {"x": -0.4430736080320679, "y": -1.426865427592529, "z": -0.01903608260968543, "time": "2025-11-07T08:50:00.000036"}, {"x": -0.4291609188324496, "y": -1.429749716806678, "z": -0.01943769058204719, "time": "2025-11-08T08:50:00.000036"}, {"x": -0.415210060952077, "y": -1.432506854959773, "z": -0.01983756985544286, "time": "2025-11-09T08:50:00.000036"}, {"x": -0.4012221786855161, "y": -1.435136264105211, "z": -0.02023568025818794, "time": "2025-11-10T08:50:00.000036"}, {"x": -0.3871984259124777, "y": -1.437637375707679, "z": -0.02063198158145427, "time": "2025-11-11T08:50:00.000036"}, {"x": -0.3731399660502488, "y": -1.440009630810668, "z": -0.02102643358356253, "time": "2025-11-12T08:50:00.000036"}, {"x": -0.3590479720031285, "y": -1.442252480203886, "z": -0.02141899599434339, "time": "2025-11-13T08:50:00.000036"}, {"x": -0.3449236261076577, "y": -1.444365384590912, "z": -0.02180962852011681, "time": "2025-11-14T08:50:00.000036"}, {"x": -0.3307681200740494, "y": -1.446347814758181, "z": -0.022198290849173, "time": "2025-11-15T08:50:00.000036"}, {"x": -0.316582654925153, "y": -1.448199251745122, "z": -0.02258494265714276, "time": "2025-11-16T08:50:00.000036"}, {"x": -0.302368440933478, "y": -1.44991918701399, "z": -0.02296954361190542, "time": "2025-11-17T08:50:00.000036"}, {"x": -0.288126697555432, "y": -1.451507122618854, "z": -0.02335205337836655, "time": "2025-11-18T08:50:00.000036"}, {"x": -0.2738586533618716, "y": -1.452962571375039, "z": -0.02373243162360802, "time": "2025-11-19T08:50:00.000036"}, {"x": -0.2595655459652923, "y": -1.454285057030344, "z": -0.02411063802238896, "time": "2025-11-20T08:50:00.000036"}, {"x": -0.2452486219446693, "y": -1.455474114437476, "z": -0.02448663226253401, "time": "2025-11-21T08:50:00.000036"}, {"x": -0.2309091367679714, "y": -1.456529289726165, "z": -0.02486037405007755, "time": "2025-11-22T08:50:00.000036"}, {"x": -0.2165483547111603, "y": -1.457450140474483, "z": -0.02523182311463998, "time": "2025-11-23T08:50:00.000036"}, {"x": -0.2021675487731003, "y": -1.458236235880469, "z": -0.02560093921532411, "time": "2025-11-24T08:50:00.000036"}, {"x": -0.1877680005873831, "y": -1.458887156935187, "z": -0.02596768214670299, "time": "2025-11-25T08:50:00.000036"}, {"x": -0.1733510003321193, "y": -1.459402496596904, "z": -0.02633201174435713, "time": "2025-11-26T08:50:00.000036"}, {"x": -0.1589178466369675, "y": -1.459781859965267, "z": -0.02669388789017128, "time": "2025-11-27T08:50:00.000036"}, {"x": -0.1444698464856748, "y": -1.460024864455177, "z": -0.0270532705181041, "time": "2025-11-28T08:50:00.000036"}, {"x": -0.1300083151136172, "y": -1.460131139971242, "z": -0.02741011962067376, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.711231', '2025-11-29 08:50:47.715037');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '899', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 29.87659745719112, "y": 0.3211744469505708, "z": -0.6950960329112065, "time": "2025-10-30T08:50:00.000036"}, {"x": 29.87653606381716, "y": 0.3243328157574735, "z": -0.6951593164318284, "time": "2025-10-31T08:50:00.000036"}, {"x": 29.87647474040311, "y": 0.3274911801974023, "z": -0.6952229159136927, "time": "2025-11-01T08:50:00.000036"}, {"x": 29.87641312277825, "y": 0.3306491649790631, "z": -0.6952868677730276, "time": "2025-11-02T08:50:00.000036"}, {"x": 29.87635081000497, "y": 0.3338067743958414, "z": -0.6953508345555889, "time": "2025-11-03T08:50:00.000036"}, {"x": 29.87628778060819, "y": 0.3369643878771599, "z": -0.6954144552872246, "time": "2025-11-04T08:50:00.000036"}, {"x": 29.87622441486873, "y": 0.3401223659428919, "z": -0.6954777202824098, "time": "2025-11-05T08:50:00.000036"}, {"x": 29.87616110012567, "y": 0.3432806758613551, "z": -0.6955409812507326, "time": "2025-11-06T08:50:00.000036"}, {"x": 29.87609782856456, "y": 0.3464389256008545, "z": -0.695604586120295, "time": "2025-11-07T08:50:00.000036"}, {"x": 29.87603420525003, "y": 0.3495967706912, "z": -0.6956685177976135, "time": "2025-11-08T08:50:00.000036"}, {"x": 29.87596985818015, "y": 0.3527542719431783, "z": -0.6957324118773017, "time": "2025-11-09T08:50:00.000036"}, {"x": 29.87590482445377, "y": 0.3559118322648255, "z": -0.695795934986251, "time": "2025-11-10T08:50:00.000036"}, {"x": 29.87583951175156, "y": 0.3590697783898485, "z": -0.6958591308724118, "time": "2025-11-11T08:50:00.000036"}, {"x": 29.87577427511116, "y": 0.3622280216335495, "z": -0.6959223749919491, "time": "2025-11-12T08:50:00.000036"}, {"x": 29.87570904835206, "y": 0.3653861499638449, "z": -0.6959859847030543, "time": "2025-11-13T08:50:00.000036"}, {"x": 29.8756434128126, "y": 0.3685438556625395, "z": -0.6960498897847294, "time": "2025-11-14T08:50:00.000036"}, {"x": 29.87557703215726, "y": 0.3717012548520579, "z": -0.6961137053683791, "time": "2025-11-15T08:50:00.000036"}, {"x": 29.87551000144244, "y": 0.3748587667592661, "z": -0.6961771315333726, "time": "2025-11-16T08:50:00.000036"}, {"x": 29.87544274848586, "y": 0.3780166783187504, "z": -0.6962402647403122, "time": "2025-11-17T08:50:00.000036"}, {"x": 29.87537558971096, "y": 0.3811748463249711, "z": -0.6963034976495062, "time": "2025-11-18T08:50:00.000036"}, {"x": 29.87530840147552, "y": 0.3843328460490268, "z": -0.6963671113776075, "time": "2025-11-19T08:50:00.000036"}, {"x": 29.87524074853117, "y": 0.3874904120830056, "z": -0.6964309836612913, "time": "2025-11-20T08:50:00.000036"}, {"x": 29.87517233613604, "y": 0.3906477141227973, "z": -0.6964947157820333, "time": "2025-11-21T08:50:00.000036"}, {"x": 29.8751033159093, "y": 0.393805180643415, "z": -0.6965580465066673, "time": "2025-11-22T08:50:00.000036"}, {"x": 29.87503412865288, "y": 0.3969630538955114, "z": -0.6966211234218055, "time": "2025-11-23T08:50:00.000036"}, {"x": 29.87496504683175, "y": 0.4001211385017525, "z": -0.6966843496957527, "time": "2025-11-24T08:50:00.000036"}, {"x": 29.87489589160492, "y": 0.4032790041871308, "z": -0.6967479654684496, "time": "2025-11-25T08:50:00.000036"}, {"x": 29.87482621854545, "y": 0.4064364323207914, "z": -0.6968117985617571, "time": "2025-11-26T08:50:00.000036"}, {"x": 29.87475577927417, "y": 0.4095936430210076, "z": -0.6968754432724089, "time": "2025-11-27T08:50:00.000036"}, {"x": 29.87468477913711, "y": 0.4127510666684496, "z": -0.6969386814883087, "time": "2025-11-28T08:50:00.000036"}, {"x": 29.87461366406082, "y": 0.4159088969647053, "z": -0.6970017091671161, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.848555', '2025-11-29 08:50:47.852615');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '-96', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 0.5997193089711974, "y": -0.4162250655443592, "z": -0.04032045680178729, "time": "2025-10-30T08:50:00.000036"}, {"x": 0.6033060650278395, "y": -0.4103028167729695, "z": -0.0404459664206806, "time": "2025-10-31T08:50:00.000036"}, {"x": 0.6064352258456944, "y": -0.4040693660278272, "z": -0.04054079861215276, "time": "2025-11-01T08:50:00.000036"}, {"x": 0.6091027538454303, "y": -0.397528334471302, "z": -0.04060477022321957, "time": "2025-11-02T08:50:00.000036"}, {"x": 0.6113039988002545, "y": -0.3906829936795579, "z": -0.0406376579499954, "time": "2025-11-03T08:50:00.000036"}, {"x": 0.6130336703930571, "y": -0.3835362820808241, "z": -0.04063919698067355, "time": "2025-11-04T08:50:00.000036"}, {"x": 0.6142858058648661, "y": -0.3760908193609222, "z": -0.04060907932745163, "time": "2025-11-05T08:50:00.000036"}, {"x": 0.6150537317306374, "y": -0.3683489190559833, "z": -0.04054695179129405, "time": "2025-11-06T08:50:00.000036"}, {"x": 0.615330019170788, "y": -0.3603125997261586, "z": -0.04045241354228716, "time": "2025-11-07T08:50:00.000036"}, {"x": 0.6151064328673175, "y": -0.3519835949209029, "z": -0.04032501330514, "time": "2025-11-08T08:50:00.000036"}, {"x": 0.6143738718397661, "y": -0.3433633619935446, "z": -0.04016424606725827, "time": "2025-11-09T08:50:00.000036"}, {"x": 0.6131223013243404, "y": -0.3344530899844759, "z": -0.0399695492572228, "time": "2025-11-10T08:50:00.000036"}, {"x": 0.6113406741786387, "y": -0.3252537067576971, "z": -0.0397402983086776, "time": "2025-11-11T08:50:00.000036"}, {"x": 0.6090168404019618, "y": -0.3157658856135593, "z": -0.03947580153135955, "time": "2025-11-12T08:50:00.000036"}, {"x": 0.6061374426234433, "y": -0.3059900516116771, "z": -0.03917529416858996, "time": "2025-11-13T08:50:00.000036"}, {"x": 0.6026877951738597, "y": -0.2959263879027967, "z": -0.03883793150780157, "time": "2025-11-14T08:50:00.000036"}, {"x": 0.5986517437252181, "y": -0.2855748424388009, "z": -0.03846278087518626, "time": "2025-11-15T08:50:00.000036"}, {"x": 0.5940115018197708, "y": -0.2749351355330537, "z": -0.03804881230874987, "time": "2025-11-16T08:50:00.000036"}, {"x": 0.588747459708102, "y": -0.2640067688878655, "z": -0.03759488765400483, "time": "2025-11-17T08:50:00.000036"}, {"x": 0.582837959763002, "y": -0.2527890369079402, "z": -0.03709974776279854, "time": "2025-11-18T08:50:00.000036"}, {"x": 0.5762590312588158, "y": -0.241281041401883, "z": -0.0365619973944543, "time": "2025-11-19T08:50:00.000036"}, {"x": 0.5689840751670593, "y": -0.2294817111988832, "z": -0.03598008730085601, "time": "2025-11-20T08:50:00.000036"}, {"x": 0.5609834880897889, "y": -0.2173898286333946, "z": -0.03535229289472892, "time": "2025-11-21T08:50:00.000036"}, {"x": 0.5522242084346246, "y": -0.2050040659992885, "z": -0.03467668856900839, "time": "2025-11-22T08:50:00.000036"}, {"x": 0.542669166429075, "y": -0.1923230358617278, "z": -0.03395111665910142, "time": "2025-11-23T08:50:00.000036"}, {"x": 0.5322766105322664, "y": -0.1793453611990061, "z": -0.03317314954700242, "time": "2025-11-24T08:50:00.000036"}, {"x": 0.5209992765293492, "y": -0.1660697734599259, "z": -0.03234004307338578, "time": "2025-11-25T08:50:00.000036"}, {"x": 0.5087833483281491, "y": -0.1524952514408861, "z": -0.03144867849396499, "time": "2025-11-26T08:50:00.000036"}, {"x": 0.4955671454220766, "y": -0.1386212191839923, "z": -0.03049548947834813, "time": "2025-11-27T08:50:00.000036"}, {"x": 0.4812794448566035, "y": -0.1244478305167018, "z": -0.02947636921413389, "time": "2025-11-28T08:50:00.000036"}, {"x": 0.4658372987884147, "y": -0.1099763849203815, "z": -0.02838655021666307, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.010872', '2025-11-29 08:50:48.014891');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('599:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '599', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": -1.234780828063019, "y": 5.040023924836316, "z": 0.00669031493123069, "time": "2025-10-30T08:50:00.000036"}, {"x": -1.242203002398711, "y": 5.038575228785731, "z": 0.006862414572938999, "time": "2025-10-31T08:50:00.000036"}, {"x": -1.249622633397981, "y": 5.037116555164602, "z": 0.007034522191554832, "time": "2025-11-01T08:50:00.000036"}, {"x": -1.257040478536941, "y": 5.035646549968546, "z": 0.007206580090765316, "time": "2025-11-02T08:50:00.000036"}, {"x": -1.264455628151817, "y": 5.034165985263575, "z": 0.007378628816442179, "time": "2025-11-03T08:50:00.000036"}, {"x": -1.271868035690239, "y": 5.032674026324266, "z": 0.007550634758695348, "time": "2025-11-04T08:50:00.000036"}, {"x": -1.279277950033302, "y": 5.031171408703584, "z": 0.007722620233555708, "time": "2025-11-05T08:50:00.000036"}, {"x": -1.286684151917719, "y": 5.02965762270161, "z": 0.007894587649468075, "time": "2025-11-06T08:50:00.000036"}, {"x": -1.294087641921348, "y": 5.028133743507172, "z": 0.008066559852415134, "time": "2025-11-07T08:50:00.000036"}, {"x": -1.301488161693072, "y": 5.026599876721281, "z": 0.008238540233525913, "time": "2025-11-08T08:50:00.000036"}, {"x": -1.308886745602106, "y": 5.025054970779479, "z": 0.008410477339474056, "time": "2025-11-09T08:50:00.000036"}, {"x": -1.316282312739717, "y": 5.023499633605604, "z": 0.008582408522564592, "time": "2025-11-10T08:50:00.000036"}, {"x": -1.32367510680013, "y": 5.021933119152112, "z": 0.008754299213415192, "time": "2025-11-11T08:50:00.000036"}, {"x": -1.331065228628686, "y": 5.020356246539929, "z": 0.00892617608323131, "time": "2025-11-12T08:50:00.000036"}, {"x": -1.338451735638154, "y": 5.018768246813003, "z": 0.009098028481032864, "time": "2025-11-13T08:50:00.000036"}, {"x": -1.345835447867803, "y": 5.017170392339868, "z": 0.009269889757165459, "time": "2025-11-14T08:50:00.000036"}, {"x": -1.353216160491796, "y": 5.015562582624964, "z": 0.0094417552973312, "time": "2025-11-15T08:50:00.000036"}, {"x": -1.360595114510877, "y": 5.013943977294195, "z": 0.009613578187778807, "time": "2025-11-16T08:50:00.000036"}, {"x": -1.367971063934956, "y": 5.012314836205254, "z": 0.009785386411839814, "time": "2025-11-17T08:50:00.000036"}, {"x": -1.37534442018934, "y": 5.010674463176858, "z": 0.009957145274397769, "time": "2025-11-18T08:50:00.000036"}, {"x": -1.382714995764516, "y": 5.009023639299541, "z": 0.01012888361907754, "time": "2025-11-19T08:50:00.000036"}, {"x": -1.39008203422596, "y": 5.007361395878943, "z": 0.01030058094829231, "time": "2025-11-20T08:50:00.000036"}, {"x": -1.397445986654609, "y": 5.005689187348906, "z": 0.01047228294997013, "time": "2025-11-21T08:50:00.000036"}, {"x": -1.404806647616401, "y": 5.004006811578243, "z": 0.01064398112701128, "time": "2025-11-22T08:50:00.000036"}, {"x": -1.412165323760338, "y": 5.002313793467171, "z": 0.0108156399687101, "time": "2025-11-23T08:50:00.000036"}, {"x": -1.419520663085336, "y": 5.000610146311224, "z": 0.01098728018901696, "time": "2025-11-24T08:50:00.000036"}, {"x": -1.426873241421247, "y": 4.998895410667036, "z": 0.01115887322515364, "time": "2025-11-25T08:50:00.000036"}, {"x": -1.434222672822047, "y": 4.99717037619201, "z": 0.01133045008388416, "time": "2025-11-26T08:50:00.000036"}, {"x": -1.441568536559753, "y": 4.995434022776056, "z": 0.01150198324580135, "time": "2025-11-27T08:50:00.000036"}, {"x": -1.448911012998539, "y": 4.99368793683086, "z": 0.01167352752433027, "time": "2025-11-28T08:50:00.000036"}, {"x": -1.456250078556546, "y": 4.991931815415886, "z": 0.01184506831322691, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.599245', '2025-11-29 08:50:47.602359');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '199', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 0.3002274965005027, "y": -0.2805558647573678, "z": -0.05046439095533043, "time": "2025-10-30T08:50:00.000036"}, {"x": 0.3132226962229649, "y": -0.2580978322703048, "z": -0.04982098255326182, "time": "2025-10-31T08:50:00.000036"}, {"x": 0.3248620611714915, "y": -0.2345234915445481, "z": -0.04896199014713459, "time": "2025-11-01T08:50:00.000036"}, {"x": 0.3350396065223402, "y": -0.2098947897840261, "z": -0.04788275533766183, "time": "2025-11-02T08:50:00.000036"}, {"x": 0.34364738582672, "y": -0.1842836638555017, "z": -0.04657925618643243, "time": "2025-11-03T08:50:00.000036"}, {"x": 0.3505761281332669, "y": -0.1577731930668998, "z": -0.04504825986028976, "time": "2025-11-04T08:50:00.000036"}, {"x": 0.3557161002393114, "y": -0.1304588159295855, "z": -0.04328750115333201, "time": "2025-11-05T08:50:00.000036"}, {"x": 0.3589582384151142, "y": -0.1024495852330059, "z": -0.04129588885581472, "time": "2025-11-06T08:50:00.000036"}, {"x": 0.3601955970962705, "y": -0.07386942259586117, "z": -0.03907374115243294, "time": "2025-11-07T08:50:00.000036"}, {"x": 0.3593251627480317, "y": -0.04485831706871323, "z": -0.03662304994173282, "time": "2025-11-08T08:50:00.000036"}, {"x": 0.3562500778352345, "y": -0.01557339225995759, "z": -0.03394777202561003, "time": "2025-11-09T08:50:00.000036"}, {"x": 0.3508823106212207, "y": 0.01381025675840772, "z": -0.03105414237586096, "time": "2025-11-10T08:50:00.000036"}, {"x": 0.3431457890522966, "y": 0.04309908064730387, "z": -0.0279510010283209, "time": "2025-11-11T08:50:00.000036"}, {"x": 0.3329799888147328, "y": 0.07208109571381587, "z": -0.02465012055023889, "time": "2025-11-12T08:50:00.000036"}, {"x": 0.3203439246566973, "y": 0.1005265756696509, "z": -0.02116651559007384, "time": "2025-11-13T08:50:00.000036"}, {"x": 0.3052204391951537, "y": 0.1281895951549115, "z": -0.01751871010411252, "time": "2025-11-14T08:50:00.000036"}, {"x": 0.2876206157384815, "y": 0.1548105989451414, "z": -0.01372893213639283, "time": "2025-11-15T08:50:00.000036"}, {"x": 0.2675880655502436, "y": 0.18012014003994, "z": -0.009823201558558281, "time": "2025-11-16T08:50:00.000036"}, {"x": 0.2452027642877497, "y": 0.2038438671660403, "z": -0.005831274355029619, "time": "2025-11-17T08:50:00.000036"}, {"x": 0.2205840507420599, "y": 0.2257087435402822, "z": -0.001786409453301244, "time": "2025-11-18T08:50:00.000036"}, {"x": 0.1938923710090584, "y": 0.2454503461824214, "z": 0.002275067819374577, "time": "2025-11-19T08:50:00.000036"}, {"x": 0.1653293712300452, "y": 0.2628209398806206, "z": 0.006314417054175816, "time": "2025-11-20T08:50:00.000036"}, {"x": 0.1351360262561466, "y": 0.2775978636645642, "z": 0.01029133976182996, "time": "2025-11-21T08:50:00.000036"}, {"x": 0.1035886438182496, "y": 0.2895916403580669, "z": 0.01416500860061651, "time": "2025-11-22T08:50:00.000036"}, {"x": 0.0709927922073193, "y": 0.298653154071018, "z": 0.01789521088860234, "time": "2025-11-23T08:50:00.000036"}, {"x": 0.03767543515874778, "y": 0.3046792623926458, "z": 0.02144352863011339, "time": "2025-11-24T08:50:00.000036"}, {"x": 0.003975778884616232, "y": 0.3076163293845148, "z": 0.02477446674597149, "time": "2025-11-25T08:50:00.000036"}, {"x": -0.02976450137724806, "y": 0.3074613696814151, "z": 0.02785644298801981, "time": "2025-11-26T08:50:00.000036"}, {"x": -0.06321091856061478, "y": 0.3042607489546264, "z": 0.0306625674909085, "time": "2025-11-27T08:50:00.000036"}, {"x": -0.09604501509600678, "y": 0.2981066444284047, "z": 0.03317116443862317, "time": "2025-11-28T08:50:00.000036"}, {"x": -0.1279718210398435, "y": 0.2891316840088258, "z": 0.0353660180167934, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.726315', '2025-11-29 08:50:47.730916');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('899:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '899', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 29.87659745719112, "y": 0.3211744469505708, "z": -0.6950960329112065, "time": "2025-10-30T08:50:00.000036"}, {"x": 29.87653606381716, "y": 0.3243328157574735, "z": -0.6951593164318284, "time": "2025-10-31T08:50:00.000036"}, {"x": 29.87647474040311, "y": 0.3274911801974023, "z": -0.6952229159136927, "time": "2025-11-01T08:50:00.000036"}, {"x": 29.87641312277825, "y": 0.3306491649790631, "z": -0.6952868677730276, "time": "2025-11-02T08:50:00.000036"}, {"x": 29.87635081000497, "y": 0.3338067743958414, "z": -0.6953508345555889, "time": "2025-11-03T08:50:00.000036"}, {"x": 29.87628778060819, "y": 0.3369643878771599, "z": -0.6954144552872246, "time": "2025-11-04T08:50:00.000036"}, {"x": 29.87622441486873, "y": 0.3401223659428919, "z": -0.6954777202824098, "time": "2025-11-05T08:50:00.000036"}, {"x": 29.87616110012567, "y": 0.3432806758613551, "z": -0.6955409812507326, "time": "2025-11-06T08:50:00.000036"}, {"x": 29.87609782856456, "y": 0.3464389256008545, "z": -0.695604586120295, "time": "2025-11-07T08:50:00.000036"}, {"x": 29.87603420525003, "y": 0.3495967706912, "z": -0.6956685177976135, "time": "2025-11-08T08:50:00.000036"}, {"x": 29.87596985818015, "y": 0.3527542719431783, "z": -0.6957324118773017, "time": "2025-11-09T08:50:00.000036"}, {"x": 29.87590482445377, "y": 0.3559118322648255, "z": -0.695795934986251, "time": "2025-11-10T08:50:00.000036"}, {"x": 29.87583951175156, "y": 0.3590697783898485, "z": -0.6958591308724118, "time": "2025-11-11T08:50:00.000036"}, {"x": 29.87577427511116, "y": 0.3622280216335495, "z": -0.6959223749919491, "time": "2025-11-12T08:50:00.000036"}, {"x": 29.87570904835206, "y": 0.3653861499638449, "z": -0.6959859847030543, "time": "2025-11-13T08:50:00.000036"}, {"x": 29.8756434128126, "y": 0.3685438556625395, "z": -0.6960498897847294, "time": "2025-11-14T08:50:00.000036"}, {"x": 29.87557703215726, "y": 0.3717012548520579, "z": -0.6961137053683791, "time": "2025-11-15T08:50:00.000036"}, {"x": 29.87551000144244, "y": 0.3748587667592661, "z": -0.6961771315333726, "time": "2025-11-16T08:50:00.000036"}, {"x": 29.87544274848586, "y": 0.3780166783187504, "z": -0.6962402647403122, "time": "2025-11-17T08:50:00.000036"}, {"x": 29.87537558971096, "y": 0.3811748463249711, "z": -0.6963034976495062, "time": "2025-11-18T08:50:00.000036"}, {"x": 29.87530840147552, "y": 0.3843328460490268, "z": -0.6963671113776075, "time": "2025-11-19T08:50:00.000036"}, {"x": 29.87524074853117, "y": 0.3874904120830056, "z": -0.6964309836612913, "time": "2025-11-20T08:50:00.000036"}, {"x": 29.87517233613604, "y": 0.3906477141227973, "z": -0.6964947157820333, "time": "2025-11-21T08:50:00.000036"}, {"x": 29.8751033159093, "y": 0.393805180643415, "z": -0.6965580465066673, "time": "2025-11-22T08:50:00.000036"}, {"x": 29.87503412865288, "y": 0.3969630538955114, "z": -0.6966211234218055, "time": "2025-11-23T08:50:00.000036"}, {"x": 29.87496504683175, "y": 0.4001211385017525, "z": -0.6966843496957527, "time": "2025-11-24T08:50:00.000036"}, {"x": 29.87489589160492, "y": 0.4032790041871308, "z": -0.6967479654684496, "time": "2025-11-25T08:50:00.000036"}, {"x": 29.87482621854545, "y": 0.4064364323207914, "z": -0.6968117985617571, "time": "2025-11-26T08:50:00.000036"}, {"x": 29.87475577927417, "y": 0.4095936430210076, "z": -0.6968754432724089, "time": "2025-11-27T08:50:00.000036"}, {"x": 29.87468477913711, "y": 0.4127510666684496, "z": -0.6969386814883087, "time": "2025-11-28T08:50:00.000036"}, {"x": 29.87461366406082, "y": 0.4159088969647053, "z": -0.6970017091671161, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.893305', '2025-11-29 08:50:47.89694');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '-168', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": -0.552844523588557, "y": -1.399284347799235, "z": -0.01576883767350028, "time": "2025-10-30T08:50:00.000036"}, {"x": -0.5392772491751062, "y": -1.403167373792619, "z": -0.01618303105540145, "time": "2025-10-31T08:50:00.000036"}, {"x": -0.5256634850753042, "y": -1.406928157309583, "z": -0.01659557167278383, "time": "2025-11-01T08:50:00.000036"}, {"x": -0.5120042844171491, "y": -1.410565965897507, "z": -0.01700642101303331, "time": "2025-11-02T08:50:00.000036"}, {"x": -0.4983006983437334, "y": -1.414080078219347, "z": -0.01741554660270538, "time": "2025-11-03T08:50:00.000036"}, {"x": -0.4845537766155483, "y": -1.417469786282026, "z": -0.01782292182686161, "time": "2025-11-04T08:50:00.000036"}, {"x": -0.4707645684925458, "y": -1.420734397538824, "z": -0.01822852559949702, "time": "2025-11-05T08:50:00.000036"}, {"x": -0.456934123873774, "y": -1.423873236817209, "z": -0.01863234189315259, "time": "2025-11-06T08:50:00.000036"}, {"x": -0.4430634946658051, "y": -1.42688564802632, "z": -0.01903435913922306, "time": "2025-11-07T08:50:00.000036"}, {"x": -0.4291537363439447, "y": -1.429770995603818, "z": -0.01943456951436226, "time": "2025-11-08T08:50:00.000036"}, {"x": -0.4152059096647668, "y": -1.432528665669915, "z": -0.01983296813157557, "time": "2025-11-09T08:50:00.000036"}, {"x": -0.4012210824860263, "y": -1.435158066864942, "z": -0.02022955215645692, "time": "2025-11-10T08:50:00.000036"}, {"x": -0.3872003316482805, "y": -1.437658630854088, "z": -0.02062431987040435, "time": "2025-11-11T08:50:00.000036"}, {"x": -0.373144744869996, "y": -1.440029812489852, "z": -0.0210172697043194, "time": "2025-11-12T08:50:00.000036"}, {"x": -0.3590554226058527, "y": -1.442271089631242, "z": -0.02140839926777135, "time": "2025-11-13T08:50:00.000036"}, {"x": -0.3449334798189188, "y": -1.444381962628835, "z": -0.02179770439877838, "time": "2025-11-14T08:50:00.000036"}, {"x": -0.3307800476210126, "y": -1.446361953493986, "z": -0.02218517825817012, "time": "2025-11-15T08:50:00.000036"}, {"x": -0.3165962747397611, "y": -1.448210604777253, "z": -0.02257081049088747, "time": "2025-11-16T08:50:00.000036"}, {"x": -0.3023833287743343, "y": -1.449927478187119, "z": -0.02295458647516934, "time": "2025-11-17T08:50:00.000036"}, {"x": -0.2881423972057627, "y": -1.451512152987599, "z": -0.02333648667899726, "time": "2025-11-18T08:50:00.000036"}, {"x": -0.2738746881338037, "y": -1.452964224220712, "z": -0.02371648614066479, "time": "2025-11-19T08:50:00.000036"}, {"x": -0.259581430720344, "y": -1.454283300804205, "z": -0.02409455408666651, "time": "2025-11-20T08:50:00.000036"}, {"x": -0.2452638753273361, "y": -1.455469003556289, "z": -0.02447065369622031, "time": "2025-11-21T08:50:00.000036"}, {"x": -0.2309232933439176, "y": -1.456520963199992, "z": -0.0248447420183756, "time": "2025-11-22T08:50:00.000036"}, {"x": -0.2165609767039339, "y": -1.457438818401306, "z": -0.02521677004438726, "time": "2025-11-23T08:50:00.000036"}, {"x": -0.2021782371034051, "y": -1.458222213896055, "z": -0.02558668293396385, "time": "2025-11-24T08:50:00.000036"}, {"x": -0.187776404936537, "y": -1.458870798758133, "z": -0.02595442038940325, "time": "2025-11-25T08:50:00.000036"}, {"x": -0.1733568279759337, "y": -1.459384224856859, "z": -0.02631991716779161, "time": "2025-11-26T08:50:00.000036"}, {"x": -0.1589208698272812, "y": -1.459762145545616, "z": -0.02668310371869372, "time": "2025-11-27T08:50:00.000036"}, {"x": -0.1444699081934092, "y": -1.460004214618929, "z": -0.02704390693210822, "time": "2025-11-28T08:50:00.000036"}, {"x": -0.1300053329885316, "y": -1.460110085569536, "z": -0.0274022509782128, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.028659', '2025-11-29 08:50:48.032326');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '699', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 9.529956001699523, "y": -0.09090055797012521, "z": -0.3777632124628855, "time": "2025-10-30T08:50:00.000036"}, {"x": 9.529695442432336, "y": -0.08533418312863837, "z": -0.3778494630298805, "time": "2025-10-31T08:50:00.000036"}, {"x": 9.529431927329197, "y": -0.07976765330353464, "z": -0.3779356838885168, "time": "2025-11-01T08:50:00.000036"}, {"x": 9.529165322776791, "y": -0.07420086266610378, "z": -0.3780219174697965, "time": "2025-11-02T08:50:00.000036"}, {"x": 9.528895519239326, "y": -0.06863381582787444, "z": -0.3781081514054659, "time": "2025-11-03T08:50:00.000036"}, {"x": 9.528622407776638, "y": -0.06306649687511193, "z": -0.3781943836884613, "time": "2025-11-04T08:50:00.000036"}, {"x": 9.528345903551267, "y": -0.0574989696611357, "z": -0.3782805737780573, "time": "2025-11-05T08:50:00.000036"}, {"x": 9.528065949192118, "y": -0.0519312579763452, "z": -0.3783667049419553, "time": "2025-11-06T08:50:00.000036"}, {"x": 9.527782460298505, "y": -0.04636343698882072, "z": -0.3784527313687543, "time": "2025-11-07T08:50:00.000036"}, {"x": 9.527495405157609, "y": -0.04079564215281036, "z": -0.3785385806321231, "time": "2025-11-08T08:50:00.000036"}, {"x": 9.5272048763014, "y": -0.03522797046654584, "z": -0.3786242124486853, "time": "2025-11-09T08:50:00.000036"}, {"x": 9.526910910361854, "y": -0.02966047243066332, "z": -0.3787096058826593, "time": "2025-11-10T08:50:00.000036"}, {"x": 9.526613612742546, "y": -0.02409321408919481, "z": -0.3787947382619229, "time": "2025-11-11T08:50:00.000036"}, {"x": 9.526313064546677, "y": -0.01852620966271673, "z": -0.378879611727845, "time": "2025-11-12T08:50:00.000036"}, {"x": 9.526009386811097, "y": -0.01295947166660078, "z": -0.3789642321327669, "time": "2025-11-13T08:50:00.000036"}, {"x": 9.525702720910806, "y": -0.007392950001375181, "z": -0.3790486403831804, "time": "2025-11-14T08:50:00.000036"}, {"x": 9.525393128296683, "y": -0.001826488129448203, "z": -0.3791329245606663, "time": "2025-11-15T08:50:00.000036"}, {"x": 9.525080557656546, "y": 0.003739998865159087, "z": -0.3792171247667944, "time": "2025-11-16T08:50:00.000036"}, {"x": 9.52476499100102, "y": 0.009306607314168089, "z": -0.3793012892582296, "time": "2025-11-17T08:50:00.000036"}, {"x": 9.524446335852378, "y": 0.01487340339456503, "z": -0.3793854440207458, "time": "2025-11-18T08:50:00.000036"}, {"x": 9.524124503607736, "y": 0.02044043405493259, "z": -0.3794696051527736, "time": "2025-11-19T08:50:00.000036"}, {"x": 9.523799380420389, "y": 0.0260077210407902, "z": -0.3795537741667329, "time": "2025-11-20T08:50:00.000036"}, {"x": 9.523470810442404, "y": 0.0315752302313619, "z": -0.379637918911854, "time": "2025-11-21T08:50:00.000036"}, {"x": 9.523138754662492, "y": 0.03714283389236153, "z": -0.3797219700175667, "time": "2025-11-22T08:50:00.000036"}, {"x": 9.522803195258373, "y": 0.04271049014128523, "z": -0.3798059051313327, "time": "2025-11-23T08:50:00.000036"}, {"x": 9.522464111057674, "y": 0.04827810792083247, "z": -0.3798896764016903, "time": "2025-11-24T08:50:00.000036"}, {"x": 9.522121518033519, "y": 0.05384560014184891, "z": -0.3799732417091561, "time": "2025-11-25T08:50:00.000036"}, {"x": 9.521775473749768, "y": 0.05941287680828247, "z": -0.3800565610835448, "time": "2025-11-26T08:50:00.000036"}, {"x": 9.521426071632977, "y": 0.06497984774915536, "z": -0.3801395979917249, "time": "2025-11-27T08:50:00.000036"}, {"x": 9.521073492366133, "y": 0.07054651560575365, "z": -0.3802223725486826, "time": "2025-11-28T08:50:00.000036"}, {"x": 9.520717793428084, "y": 0.07611293524829689, "z": -0.3803049205850257, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.181758', '2025-11-29 08:50:48.18514');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('136472:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '136472', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": -45.99671163373894, "y": -8.91655262857634, "z": 24.16231275918106, "time": "2025-10-30T08:50:00.000036"}, {"x": -45.99652991775703, "y": -8.918694546210652, "z": 24.16199224996191, "time": "2025-10-31T08:50:00.000036"}, {"x": -45.99634810674514, "y": -8.920836456378595, "z": 24.16167169185978, "time": "2025-11-01T08:50:00.000036"}, {"x": -45.99616620069781, "y": -8.922978359054804, "z": 24.16135108487646, "time": "2025-11-02T08:50:00.000036"}, {"x": -45.9959841996108, "y": -8.925120254215404, "z": 24.16103042901368, "time": "2025-11-03T08:50:00.000036"}, {"x": -45.99580210348095, "y": -8.92726214183827, "z": 24.1607097242731, "time": "2025-11-04T08:50:00.000036"}, {"x": -45.99561991230616, "y": -8.929404021903247, "z": 24.16038897065629, "time": "2025-11-05T08:50:00.000036"}, {"x": -45.99543762608501, "y": -8.931545894392382, "z": 24.1600681681647, "time": "2025-11-06T08:50:00.000036"}, {"x": -45.99525524481671, "y": -8.933687759290173, "z": 24.15974731679959, "time": "2025-11-07T08:50:00.000036"}, {"x": -45.99507276850066, "y": -8.935829616583762, "z": 24.15942641656201, "time": "2025-11-08T08:50:00.000036"}, {"x": -45.99489019713613, "y": -8.937971466263177, "z": 24.15910546745275, "time": "2025-11-09T08:50:00.000036"}, {"x": -45.9947075307218, "y": -8.940113308321479, "z": 24.15878446947226, "time": "2025-11-10T08:50:00.000036"}, {"x": -45.99452476925526, "y": -8.942255142754862, "z": 24.15846342262063, "time": "2025-11-11T08:50:00.000036"}, {"x": -45.99434191273236, "y": -8.944396969562705, "z": 24.15814232689753, "time": "2025-11-12T08:50:00.000036"}, {"x": -45.99415896114658, "y": -8.946538788747446, "z": 24.15782118230213, "time": "2025-11-13T08:50:00.000036"}, {"x": -45.9939759144883, "y": -8.948680600314358, "z": 24.15749998883308, "time": "2025-11-14T08:50:00.000036"}, {"x": -45.99379277274402, "y": -8.950822404271186, "z": 24.15717874648847, "time": "2025-11-15T08:50:00.000036"}, {"x": -45.99360953589573, "y": -8.952964200627504, "z": 24.1568574552658, "time": "2025-11-16T08:50:00.000036"}, {"x": -45.99342620392014, "y": -8.955105989393923, "z": 24.15653611516204, "time": "2025-11-17T08:50:00.000036"}, {"x": -45.99324277678829, "y": -8.957247770581114, "z": 24.15621472617357, "time": "2025-11-18T08:50:00.000036"}, {"x": -45.99305925446514, "y": -8.959389544198567, "z": 24.15589328829637, "time": "2025-11-19T08:50:00.000036"}, {"x": -45.99287563690964, "y": -8.961531310253319, "z": 24.15557180152601, "time": "2025-11-20T08:50:00.000036"}, {"x": -45.992691924075, "y": -8.963673068748554, "z": 24.1552502658579, "time": "2025-11-21T08:50:00.000036"}, {"x": -45.99250811590925, "y": -8.96581481968229, "z": 24.15492868128737, "time": "2025-11-22T08:50:00.000036"}, {"x": -45.99232421235637, "y": -8.967956563046224, "z": 24.15460704780991, "time": "2025-11-23T08:50:00.000036"}, {"x": -45.99214021335749, "y": -8.97009829882479, "z": 24.15428536542135, "time": "2025-11-24T08:50:00.000036"}, {"x": -45.99195611885246, "y": -8.972240026994614, "z": 24.15396363411805, "time": "2025-11-25T08:50:00.000036"}, {"x": -45.99177192878135, "y": -8.974381747524337, "z": 24.15364185389704, "time": "2025-11-26T08:50:00.000036"}, {"x": -45.99158764308616, "y": -8.976523460374848, "z": 24.15332002475619, "time": "2025-11-27T08:50:00.000036"}, {"x": -45.99140326171222, "y": -8.978665165499907, "z": 24.15299814669426, "time": "2025-11-28T08:50:00.000036"}, {"x": -45.99121878460937, "y": -8.980806862847016, "z": 24.15267621971095, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.610025', '2025-11-29 08:50:47.613417');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('199:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '199', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 0.3002274965005027, "y": -0.2805558647573678, "z": -0.05046439095533043, "time": "2025-10-30T08:50:00.000036"}, {"x": 0.3132226962229649, "y": -0.2580978322703048, "z": -0.04982098255326182, "time": "2025-10-31T08:50:00.000036"}, {"x": 0.3248620611714915, "y": -0.2345234915445481, "z": -0.04896199014713459, "time": "2025-11-01T08:50:00.000036"}, {"x": 0.3350396065223402, "y": -0.2098947897840261, "z": -0.04788275533766183, "time": "2025-11-02T08:50:00.000036"}, {"x": 0.34364738582672, "y": -0.1842836638555017, "z": -0.04657925618643243, "time": "2025-11-03T08:50:00.000036"}, {"x": 0.3505761281332669, "y": -0.1577731930668998, "z": -0.04504825986028976, "time": "2025-11-04T08:50:00.000036"}, {"x": 0.3557161002393114, "y": -0.1304588159295855, "z": -0.04328750115333201, "time": "2025-11-05T08:50:00.000036"}, {"x": 0.3589582384151142, "y": -0.1024495852330059, "z": -0.04129588885581472, "time": "2025-11-06T08:50:00.000036"}, {"x": 0.3601955970962705, "y": -0.07386942259586117, "z": -0.03907374115243294, "time": "2025-11-07T08:50:00.000036"}, {"x": 0.3593251627480317, "y": -0.04485831706871323, "z": -0.03662304994173282, "time": "2025-11-08T08:50:00.000036"}, {"x": 0.3562500778352345, "y": -0.01557339225995759, "z": -0.03394777202561003, "time": "2025-11-09T08:50:00.000036"}, {"x": 0.3508823106212207, "y": 0.01381025675840772, "z": -0.03105414237586096, "time": "2025-11-10T08:50:00.000036"}, {"x": 0.3431457890522966, "y": 0.04309908064730387, "z": -0.0279510010283209, "time": "2025-11-11T08:50:00.000036"}, {"x": 0.3329799888147328, "y": 0.07208109571381587, "z": -0.02465012055023889, "time": "2025-11-12T08:50:00.000036"}, {"x": 0.3203439246566973, "y": 0.1005265756696509, "z": -0.02116651559007384, "time": "2025-11-13T08:50:00.000036"}, {"x": 0.3052204391951537, "y": 0.1281895951549115, "z": -0.01751871010411252, "time": "2025-11-14T08:50:00.000036"}, {"x": 0.2876206157384815, "y": 0.1548105989451414, "z": -0.01372893213639283, "time": "2025-11-15T08:50:00.000036"}, {"x": 0.2675880655502436, "y": 0.18012014003994, "z": -0.009823201558558281, "time": "2025-11-16T08:50:00.000036"}, {"x": 0.2452027642877497, "y": 0.2038438671660403, "z": -0.005831274355029619, "time": "2025-11-17T08:50:00.000036"}, {"x": 0.2205840507420599, "y": 0.2257087435402822, "z": -0.001786409453301244, "time": "2025-11-18T08:50:00.000036"}, {"x": 0.1938923710090584, "y": 0.2454503461824214, "z": 0.002275067819374577, "time": "2025-11-19T08:50:00.000036"}, {"x": 0.1653293712300452, "y": 0.2628209398806206, "z": 0.006314417054175816, "time": "2025-11-20T08:50:00.000036"}, {"x": 0.1351360262561466, "y": 0.2775978636645642, "z": 0.01029133976182996, "time": "2025-11-21T08:50:00.000036"}, {"x": 0.1035886438182496, "y": 0.2895916403580669, "z": 0.01416500860061651, "time": "2025-11-22T08:50:00.000036"}, {"x": 0.0709927922073193, "y": 0.298653154071018, "z": 0.01789521088860234, "time": "2025-11-23T08:50:00.000036"}, {"x": 0.03767543515874778, "y": 0.3046792623926458, "z": 0.02144352863011339, "time": "2025-11-24T08:50:00.000036"}, {"x": 0.003975778884616232, "y": 0.3076163293845148, "z": 0.02477446674597149, "time": "2025-11-25T08:50:00.000036"}, {"x": -0.02976450137724806, "y": 0.3074613696814151, "z": 0.02785644298801981, "time": "2025-11-26T08:50:00.000036"}, {"x": -0.06321091856061478, "y": 0.3042607489546264, "z": 0.0306625674909085, "time": "2025-11-27T08:50:00.000036"}, {"x": -0.09604501509600678, "y": 0.2981066444284047, "z": 0.03317116443862317, "time": "2025-11-28T08:50:00.000036"}, {"x": -0.1279718210398435, "y": 0.2891316840088258, "z": 0.0353660180167934, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.772044', '2025-11-29 08:50:47.775939');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '-98', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 19.81727818161275, "y": -59.85155089333789, "z": 2.195105668280709, "time": "2025-10-30T08:50:00.000036"}, {"x": 19.82034996032922, "y": -59.85878389617356, "z": 2.195390390294856, "time": "2025-10-31T08:50:00.000036"}, {"x": 19.82342171766345, "y": -59.86601683891756, "z": 2.195675109695841, "time": "2025-11-01T08:50:00.000036"}, {"x": 19.82649345362662, "y": -59.87324972156658, "z": 2.1959598264853, "time": "2025-11-02T08:50:00.000036"}, {"x": 19.82956516822871, "y": -59.88048254411881, "z": 2.196244540664796, "time": "2025-11-03T08:50:00.000036"}, {"x": 19.83263686147857, "y": -59.88771530657419, "z": 2.196529252235844, "time": "2025-11-04T08:50:00.000036"}, {"x": 19.83570853338408, "y": -59.89494800893461, "z": 2.196813961199853, "time": "2025-11-05T08:50:00.000036"}, {"x": 19.8387801839523, "y": -59.90218065120416, "z": 2.197098667558101, "time": "2025-11-06T08:50:00.000036"}, {"x": 19.84185181318978, "y": -59.90941323338935, "z": 2.197383371311695, "time": "2025-11-07T08:50:00.000036"}, {"x": 19.84492342110283, "y": -59.91664575549939, "z": 2.197668072461525, "time": "2025-11-08T08:50:00.000036"}, {"x": 19.8479950076979, "y": -59.92387821754628, "z": 2.197952771008203, "time": "2025-11-09T08:50:00.000036"}, {"x": 19.85106657298199, "y": -59.93111061954514, "z": 2.198237466952036, "time": "2025-11-10T08:50:00.000036"}, {"x": 19.85413811696326, "y": -59.93834296151417, "z": 2.198522160292964, "time": "2025-11-11T08:50:00.000036"}, {"x": 19.85720963965153, "y": -59.94557524347471, "z": 2.198806851030458, "time": "2025-11-12T08:50:00.000036"}, {"x": 19.86028114105904, "y": -59.95280746545119, "z": 2.199091539163545, "time": "2025-11-13T08:50:00.000036"}, {"x": 19.86335262120113, "y": -59.96003962747093, "z": 2.199376224690716, "time": "2025-11-14T08:50:00.000036"}, {"x": 19.86642408009697, "y": -59.96727172956361, "z": 2.199660907609888, "time": "2025-11-15T08:50:00.000036"}, {"x": 19.86949551777029, "y": -59.97450377176077, "z": 2.19994558791842, "time": "2025-11-16T08:50:00.000036"}, {"x": 19.87256693425007, "y": -59.98173575409503, "z": 2.200230265613081, "time": "2025-11-17T08:50:00.000036"}, {"x": 19.87563832957098, "y": -59.98896767659897, "z": 2.200514940690127, "time": "2025-11-18T08:50:00.000036"}, {"x": 19.87870970377372, "y": -59.99619953930407, "z": 2.200799613145348, "time": "2025-11-19T08:50:00.000036"}, {"x": 19.88178105690506, "y": -60.00343134223932, "z": 2.201084282974172, "time": "2025-11-20T08:50:00.000036"}, {"x": 19.8848523890175, "y": -60.0106630854298, "z": 2.201368950171819, "time": "2025-11-21T08:50:00.000036"}, {"x": 19.88792370016866, "y": -60.0178947688955, "z": 2.201653614733461, "time": "2025-11-22T08:50:00.000036"}, {"x": 19.89099499042025, "y": -60.02512639265001, "z": 2.201938276654434, "time": "2025-11-23T08:50:00.000036"}, {"x": 19.89406625983684, "y": -60.03235795669969, "z": 2.202222935930393, "time": "2025-11-24T08:50:00.000036"}, {"x": 19.89713750848428, "y": -60.0395894610431, "z": 2.202507592557534, "time": "2025-11-25T08:50:00.000036"}, {"x": 19.90020873642815, "y": -60.04682090567079, "z": 2.202792246532721, "time": "2025-11-26T08:50:00.000036"}, {"x": 19.90327994373212, "y": -60.05405229056553, "z": 2.203076897853667, "time": "2025-11-27T08:50:00.000036"}, {"x": 19.90635113045658, "y": -60.06128361570296, "z": 2.203361546518946, "time": "2025-11-28T08:50:00.000036"}, {"x": 19.90942229665734, "y": -60.0685148810525, "z": 2.203646192528101, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.909099', '2025-11-29 08:50:47.912735');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-168:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '-168', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": -0.552844523588557, "y": -1.399284347799235, "z": -0.01576883767350028, "time": "2025-10-30T08:50:00.000036"}, {"x": -0.5392772491751062, "y": -1.403167373792619, "z": -0.01618303105540145, "time": "2025-10-31T08:50:00.000036"}, {"x": -0.5256634850753042, "y": -1.406928157309583, "z": -0.01659557167278383, "time": "2025-11-01T08:50:00.000036"}, {"x": -0.5120042844171491, "y": -1.410565965897507, "z": -0.01700642101303331, "time": "2025-11-02T08:50:00.000036"}, {"x": -0.4983006983437334, "y": -1.414080078219347, "z": -0.01741554660270538, "time": "2025-11-03T08:50:00.000036"}, {"x": -0.4845537766155483, "y": -1.417469786282026, "z": -0.01782292182686161, "time": "2025-11-04T08:50:00.000036"}, {"x": -0.4707645684925458, "y": -1.420734397538824, "z": -0.01822852559949702, "time": "2025-11-05T08:50:00.000036"}, {"x": -0.456934123873774, "y": -1.423873236817209, "z": -0.01863234189315259, "time": "2025-11-06T08:50:00.000036"}, {"x": -0.4430634946658051, "y": -1.42688564802632, "z": -0.01903435913922306, "time": "2025-11-07T08:50:00.000036"}, {"x": -0.4291537363439447, "y": -1.429770995603818, "z": -0.01943456951436226, "time": "2025-11-08T08:50:00.000036"}, {"x": -0.4152059096647668, "y": -1.432528665669915, "z": -0.01983296813157557, "time": "2025-11-09T08:50:00.000036"}, {"x": -0.4012210824860263, "y": -1.435158066864942, "z": -0.02022955215645692, "time": "2025-11-10T08:50:00.000036"}, {"x": -0.3872003316482805, "y": -1.437658630854088, "z": -0.02062431987040435, "time": "2025-11-11T08:50:00.000036"}, {"x": -0.373144744869996, "y": -1.440029812489852, "z": -0.0210172697043194, "time": "2025-11-12T08:50:00.000036"}, {"x": -0.3590554226058527, "y": -1.442271089631242, "z": -0.02140839926777135, "time": "2025-11-13T08:50:00.000036"}, {"x": -0.3449334798189188, "y": -1.444381962628835, "z": -0.02179770439877838, "time": "2025-11-14T08:50:00.000036"}, {"x": -0.3307800476210126, "y": -1.446361953493986, "z": -0.02218517825817012, "time": "2025-11-15T08:50:00.000036"}, {"x": -0.3165962747397611, "y": -1.448210604777253, "z": -0.02257081049088747, "time": "2025-11-16T08:50:00.000036"}, {"x": -0.3023833287743343, "y": -1.449927478187119, "z": -0.02295458647516934, "time": "2025-11-17T08:50:00.000036"}, {"x": -0.2881423972057627, "y": -1.451512152987599, "z": -0.02333648667899726, "time": "2025-11-18T08:50:00.000036"}, {"x": -0.2738746881338037, "y": -1.452964224220712, "z": -0.02371648614066479, "time": "2025-11-19T08:50:00.000036"}, {"x": -0.259581430720344, "y": -1.454283300804205, "z": -0.02409455408666651, "time": "2025-11-20T08:50:00.000036"}, {"x": -0.2452638753273361, "y": -1.455469003556289, "z": -0.02447065369622031, "time": "2025-11-21T08:50:00.000036"}, {"x": -0.2309232933439176, "y": -1.456520963199992, "z": -0.0248447420183756, "time": "2025-11-22T08:50:00.000036"}, {"x": -0.2165609767039339, "y": -1.457438818401306, "z": -0.02521677004438726, "time": "2025-11-23T08:50:00.000036"}, {"x": -0.2021782371034051, "y": -1.458222213896055, "z": -0.02558668293396385, "time": "2025-11-24T08:50:00.000036"}, {"x": -0.187776404936537, "y": -1.458870798758133, "z": -0.02595442038940325, "time": "2025-11-25T08:50:00.000036"}, {"x": -0.1733568279759337, "y": -1.459384224856859, "z": -0.02631991716779161, "time": "2025-11-26T08:50:00.000036"}, {"x": -0.1589208698272812, "y": -1.459762145545616, "z": -0.02668310371869372, "time": "2025-11-27T08:50:00.000036"}, {"x": -0.1444699081934092, "y": -1.460004214618929, "z": -0.02704390693210822, "time": "2025-11-28T08:50:00.000036"}, {"x": -0.1300053329885316, "y": -1.460110085569536, "z": -0.0274022509782128, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.06707', '2025-11-29 08:50:48.070658');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '10', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-10-30T08:50:11.594000+00:00"}, {"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T08:50:11.594000+00:00"}]}', '2025-12-06 08:50:48.196423', '2025-11-29 08:50:48.198967');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '299', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": -0.7175498187519866, "y": 0.03966183506684147, "z": 0.04194738191298856, "time": "2025-10-30T08:50:00.000036"}, {"x": -0.7184964967032954, "y": 0.01936401715896252, "z": 0.04172314507103417, "time": "2025-10-31T08:50:00.000036"}, {"x": -0.7188735070096602, "y": -0.0009491542432243006, "z": 0.04146582754525946, "time": "2025-11-01T08:50:00.000036"}, {"x": -0.7186807921247272, "y": -0.02126157408434168, "z": 0.04117564727705138, "time": "2025-11-02T08:50:00.000036"}, {"x": -0.7179187520083338, "y": -0.04155715172128588, "z": 0.04085284840772574, "time": "2025-11-03T08:50:00.000036"}, {"x": -0.7165882430083692, "y": -0.06181982415372379, "z": 0.04049770103222263, "time": "2025-11-04T08:50:00.000036"}, {"x": -0.7146905763510919, "y": -0.08203356918557127, "z": 0.04011050093115663, "time": "2025-11-05T08:50:00.000036"}, {"x": -0.712227516243885, "y": -0.1021824185053311, "z": 0.03969156928161763, "time": "2025-11-06T08:50:00.000036"}, {"x": -0.7092012775948263, "y": -0.1222504706734002, "z": 0.03924125234713857, "time": "2025-11-07T08:50:00.000036"}, {"x": -0.7056145233538318, "y": -0.1422219040046962, "z": 0.03875992114726496, "time": "2025-11-08T08:50:00.000036"}, {"x": -0.7014703614805006, "y": -0.1620809893352105, "z": 0.03824797110717948, "time": "2025-11-09T08:50:00.000036"}, {"x": -0.6967723415441448, "y": -0.1818121026613591, "z": 0.03770582168785127, "time": "2025-11-10T08:50:00.000036"}, {"x": -0.6915244509618317, "y": -0.2013997376412876, "z": 0.03713391599719737, "time": "2025-11-11T08:50:00.000036"}, {"x": -0.6857311108805944, "y": -0.2208285179475728, "z": 0.03653272038275718, "time": "2025-11-12T08:50:00.000036"}, {"x": -0.6793971717102837, "y": -0.2400832094610753, "z": 0.0359027240063975, "time": "2025-11-13T08:50:00.000036"}, {"x": -0.6725279083138238, "y": -0.2591487322959667, "z": 0.03524443840157723, "time": "2025-11-14T08:50:00.000036"}, {"x": -0.6651290148619374, "y": -0.2780101726463219, "z": 0.03455839701371499, "time": "2025-11-15T08:50:00.000036"}, {"x": -0.6572065993596673, "y": -0.296652794445013, "z": 0.03384515472421133, "time": "2025-11-16T08:50:00.000036"}, {"x": -0.6487671778522844, "y": -0.3150620508258767, "z": 0.03310528735869315, "time": "2025-11-17T08:50:00.000036"}, {"x": -0.6398176683184048, "y": -0.3332235953806255, "z": 0.03233939118004723, "time": "2025-11-18T08:50:00.000036"}, {"x": -0.6303653842583483, "y": -0.3511232932022456, "z": 0.03154808236682295, "time": "2025-11-19T08:50:00.000036"}, {"x": -0.6204180279859742, "y": -0.3687472317070098, "z": 0.03073199647758493, "time": "2025-11-20T08:50:00.000036"}, {"x": -0.6099836836323855, "y": -0.3860817312276206, "z": 0.02989178790180051, "time": "2025-11-21T08:50:00.000036"}, {"x": -0.5990708098700321, "y": -0.4031133553703721, "z": 0.02902812929784408, "time": "2025-11-22T08:50:00.000036"}, {"x": -0.5876882323658518, "y": -0.4198289211295769, "z": 0.02814171101870339, "time": "2025-11-23T08:50:00.000036"}, {"x": -0.575845135972178, "y": -0.4362155087528431, "z": 0.02723324052596995, "time": "2025-11-24T08:50:00.000036"}, {"x": -0.563551056664229, "y": -0.4522604713511237, "z": 0.02630344179269712, "time": "2025-11-25T08:50:00.000036"}, {"x": -0.5508158732330564, "y": -0.4679514442477778, "z": 0.0253530546957108, "time": "2025-11-26T08:50:00.000036"}, {"x": -0.5376497987429103, "y": -0.4832763540611927, "z": 0.02438283439795782, "time": "2025-11-27T08:50:00.000036"}, {"x": -0.5240633717620458, "y": -0.4982234275158178, "z": 0.02339355072148252, "time": "2025-11-28T08:50:00.000036"}, {"x": -0.5100674473760799, "y": -0.5127811999767482, "z": 0.02238598751162642, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.306004', '2025-11-29 08:50:48.308798');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('499:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '499', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": -0.5528669307102327, "y": -1.399286004382256, "z": -0.0157657903062894, "time": "2025-10-30T08:50:00.000036"}, {"x": -0.5392996214660225, "y": -1.403165621002695, "z": -0.01617978768106832, "time": "2025-10-31T08:50:00.000036"}, {"x": -0.525685339175871, "y": -1.406923029216032, "z": -0.01659237584088534, "time": "2025-11-01T08:50:00.000036"}, {"x": -0.5120251500347751, "y": -1.410557581683602, "z": -0.01700351507418377, "time": "2025-11-02T08:50:00.000036"}, {"x": -0.4983201301120491, "y": -1.414068639176902, "z": -0.01741316559730311, "time": "2025-11-03T08:50:00.000036"}, {"x": -0.4845713653250691, "y": -1.417455570735488, "z": -0.01782128755815734, "time": "2025-11-04T08:50:00.000036"}, {"x": -0.4707799514095817, "y": -1.42071775382685, "z": -0.01822784104045767, "time": "2025-11-05T08:50:00.000036"}, {"x": -0.456946993887371, "y": -1.423854574508719, "z": -0.01863278606816206, "time": "2025-11-06T08:50:00.000036"}, {"x": -0.4430736080320679, "y": -1.426865427592529, "z": -0.01903608260968543, "time": "2025-11-07T08:50:00.000036"}, {"x": -0.4291609188324496, "y": -1.429749716806678, "z": -0.01943769058204719, "time": "2025-11-08T08:50:00.000036"}, {"x": -0.415210060952077, "y": -1.432506854959773, "z": -0.01983756985544286, "time": "2025-11-09T08:50:00.000036"}, {"x": -0.4012221786855161, "y": -1.435136264105211, "z": -0.02023568025818794, "time": "2025-11-10T08:50:00.000036"}, {"x": -0.3871984259124777, "y": -1.437637375707679, "z": -0.02063198158145427, "time": "2025-11-11T08:50:00.000036"}, {"x": -0.3731399660502488, "y": -1.440009630810668, "z": -0.02102643358356253, "time": "2025-11-12T08:50:00.000036"}, {"x": -0.3590479720031285, "y": -1.442252480203886, "z": -0.02141899599434339, "time": "2025-11-13T08:50:00.000036"}, {"x": -0.3449236261076577, "y": -1.444365384590912, "z": -0.02180962852011681, "time": "2025-11-14T08:50:00.000036"}, {"x": -0.3307681200740494, "y": -1.446347814758181, "z": -0.022198290849173, "time": "2025-11-15T08:50:00.000036"}, {"x": -0.316582654925153, "y": -1.448199251745122, "z": -0.02258494265714276, "time": "2025-11-16T08:50:00.000036"}, {"x": -0.302368440933478, "y": -1.44991918701399, "z": -0.02296954361190542, "time": "2025-11-17T08:50:00.000036"}, {"x": -0.288126697555432, "y": -1.451507122618854, "z": -0.02335205337836655, "time": "2025-11-18T08:50:00.000036"}, {"x": -0.2738586533618716, "y": -1.452962571375039, "z": -0.02373243162360802, "time": "2025-11-19T08:50:00.000036"}, {"x": -0.2595655459652923, "y": -1.454285057030344, "z": -0.02411063802238896, "time": "2025-11-20T08:50:00.000036"}, {"x": -0.2452486219446693, "y": -1.455474114437476, "z": -0.02448663226253401, "time": "2025-11-21T08:50:00.000036"}, {"x": -0.2309091367679714, "y": -1.456529289726165, "z": -0.02486037405007755, "time": "2025-11-22T08:50:00.000036"}, {"x": -0.2165483547111603, "y": -1.457450140474483, "z": -0.02523182311463998, "time": "2025-11-23T08:50:00.000036"}, {"x": -0.2021675487731003, "y": -1.458236235880469, "z": -0.02560093921532411, "time": "2025-11-24T08:50:00.000036"}, {"x": -0.1877680005873831, "y": -1.458887156935187, "z": -0.02596768214670299, "time": "2025-11-25T08:50:00.000036"}, {"x": -0.1733510003321193, "y": -1.459402496596904, "z": -0.02633201174435713, "time": "2025-11-26T08:50:00.000036"}, {"x": -0.1589178466369675, "y": -1.459781859965267, "z": -0.02669388789017128, "time": "2025-11-27T08:50:00.000036"}, {"x": -0.1444698464856748, "y": -1.460024864455177, "z": -0.0270532705181041, "time": "2025-11-28T08:50:00.000036"}, {"x": -0.1300083151136172, "y": -1.460131139971242, "z": -0.02741011962067376, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.663957', '2025-11-29 08:50:47.667189');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '301', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 0.7966339477369013, "y": 0.5934933994484929, "z": -0.0001602726653575258, "time": "2025-10-30T08:50:00.000036"}, {"x": 0.7862511537037982, "y": 0.6075842740685929, "z": -0.0001126488189469647, "time": "2025-10-31T08:50:00.000036"}, {"x": 0.775515265008918, "y": 0.6215640398249097, "z": -0.00006109271600466916, "time": "2025-11-01T08:50:00.000036"}, {"x": 0.7644115759471549, "y": 0.6354009021767733, "z": -0.000008409456250745328, "time": "2025-11-02T08:50:00.000036"}, {"x": 0.752932195718037, "y": 0.649057343105019, "z": 0.00004223974979213617, "time": "2025-11-03T08:50:00.000036"}, {"x": 0.7410785047721405, "y": 0.6624918902725749, "z": 0.00008754629974080232, "time": "2025-11-04T08:50:00.000036"}, {"x": 0.7288630144998034, "y": 0.6756622146527443, "z": 0.0001243654274703759, "time": "2025-11-05T08:50:00.000036"}, {"x": 0.7163097869616204, "y": 0.6885292338033732, "z": 0.0001500834928420416, "time": "2025-11-06T08:50:00.000036"}, {"x": 0.7034528613934855, "y": 0.7010613061132374, "z": 0.000162949646363831, "time": "2025-11-07T08:50:00.000036"}, {"x": 0.6903328559325123, "y": 0.7132373422904063, "z": 0.0001622732556190762, "time": "2025-11-08T08:50:00.000036"}, {"x": 0.676992656988899, "y": 0.7250480150488443, "z": 0.0001484354754186258, "time": "2025-11-09T08:50:00.000036"}, {"x": 0.6634733708985788, "y": 0.7364950213938751, "z": 0.0001227363936906081, "time": "2025-11-10T08:50:00.000036"}, {"x": 0.6498113760408527, "y": 0.7475890220439891, "z": 0.0000871503088011222, "time": "2025-11-11T08:50:00.000036"}, {"x": 0.636036710508173, "y": 0.7583470950711345, "z": 0.00004406720899410067, "time": "2025-11-12T08:50:00.000036"}, {"x": 0.6221725608198039, "y": 0.7687903464557979, "z": -0.000003928522821106599, "time": "2025-11-13T08:50:00.000036"}, {"x": 0.6082354388240754, "y": 0.7789419833524036, "z": -0.00005422433644905265, "time": "2025-11-14T08:50:00.000036"}, {"x": 0.5942356774697448, "y": 0.7888258848939989, "z": -0.000104295487195656, "time": "2025-11-15T08:50:00.000036"}, {"x": 0.5801780082637519, "y": 0.7984655654100262, "z": -0.0001517849029688429, "time": "2025-11-16T08:50:00.000036"}, {"x": 0.5660621118429482, "y": 0.8078833904897489, "z": -0.0001945613179821897, "time": "2025-11-17T08:50:00.000036"}, {"x": 0.551883121975116, "y": 0.8170999298365059, "z": -0.0002307660829244264, "time": "2025-11-18T08:50:00.000036"}, {"x": 0.5376321094558737, "y": 0.8261333753261405, "z": -0.0002588542061122745, "time": "2025-11-19T08:50:00.000036"}, {"x": 0.5232965849898261, "y": 0.834998996282085, "z": -0.0002776311374289111, "time": "2025-11-20T08:50:00.000036"}, {"x": 0.5088610509606585, "y": 0.8437086353603538, "z": -0.0002862843095372208, "time": "2025-11-21T08:50:00.000036"}, {"x": 0.4943076127278113, "y": 0.8522702627370125, "z": -0.0002844076592491311, "time": "2025-11-22T08:50:00.000036"}, {"x": 0.4796166418290945, "y": 0.8606876037723695, "z": -0.0002720179883740152, "time": "2025-11-23T08:50:00.000036"}, {"x": 0.4647674753766309, "y": 0.8689598410783669, "z": -0.0002495634331130194, "time": "2025-11-24T08:50:00.000036"}, {"x": 0.449739143315208, "y": 0.8770813748649872, "z": -0.0002179255968619923, "time": "2025-11-25T08:50:00.000036"}, {"x": 0.4345111381652606, "y": 0.8850416163375167, "z": -0.0001784171341383297, "time": "2025-11-26T08:50:00.000036"}, {"x": 0.4190642750121047, "y": 0.8928247982006577, "z": -0.0001327749877211025, "time": "2025-11-27T08:50:00.000036"}, {"x": 0.4033817218813463, "y": 0.9004098226297426, "z": -0.00008314561108780897, "time": "2025-11-28T08:50:00.000036"}, {"x": 0.3874502944074003, "y": 0.9077702352967751, "z": -0.00003205238758759175, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.831023', '2025-11-29 08:50:47.83509');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-96:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '-96', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 0.5997193089711974, "y": -0.4162250655443592, "z": -0.04032045680178729, "time": "2025-10-30T08:50:00.000036"}, {"x": 0.6033060650278395, "y": -0.4103028167729695, "z": -0.0404459664206806, "time": "2025-10-31T08:50:00.000036"}, {"x": 0.6064352258456944, "y": -0.4040693660278272, "z": -0.04054079861215276, "time": "2025-11-01T08:50:00.000036"}, {"x": 0.6091027538454303, "y": -0.397528334471302, "z": -0.04060477022321957, "time": "2025-11-02T08:50:00.000036"}, {"x": 0.6113039988002545, "y": -0.3906829936795579, "z": -0.0406376579499954, "time": "2025-11-03T08:50:00.000036"}, {"x": 0.6130336703930571, "y": -0.3835362820808241, "z": -0.04063919698067355, "time": "2025-11-04T08:50:00.000036"}, {"x": 0.6142858058648661, "y": -0.3760908193609222, "z": -0.04060907932745163, "time": "2025-11-05T08:50:00.000036"}, {"x": 0.6150537317306374, "y": -0.3683489190559833, "z": -0.04054695179129405, "time": "2025-11-06T08:50:00.000036"}, {"x": 0.615330019170788, "y": -0.3603125997261586, "z": -0.04045241354228716, "time": "2025-11-07T08:50:00.000036"}, {"x": 0.6151064328673175, "y": -0.3519835949209029, "z": -0.04032501330514, "time": "2025-11-08T08:50:00.000036"}, {"x": 0.6143738718397661, "y": -0.3433633619935446, "z": -0.04016424606725827, "time": "2025-11-09T08:50:00.000036"}, {"x": 0.6131223013243404, "y": -0.3344530899844759, "z": -0.0399695492572228, "time": "2025-11-10T08:50:00.000036"}, {"x": 0.6113406741786387, "y": -0.3252537067576971, "z": -0.0397402983086776, "time": "2025-11-11T08:50:00.000036"}, {"x": 0.6090168404019618, "y": -0.3157658856135593, "z": -0.03947580153135955, "time": "2025-11-12T08:50:00.000036"}, {"x": 0.6061374426234433, "y": -0.3059900516116771, "z": -0.03917529416858996, "time": "2025-11-13T08:50:00.000036"}, {"x": 0.6026877951738597, "y": -0.2959263879027967, "z": -0.03883793150780157, "time": "2025-11-14T08:50:00.000036"}, {"x": 0.5986517437252181, "y": -0.2855748424388009, "z": -0.03846278087518626, "time": "2025-11-15T08:50:00.000036"}, {"x": 0.5940115018197708, "y": -0.2749351355330537, "z": -0.03804881230874987, "time": "2025-11-16T08:50:00.000036"}, {"x": 0.588747459708102, "y": -0.2640067688878655, "z": -0.03759488765400483, "time": "2025-11-17T08:50:00.000036"}, {"x": 0.582837959763002, "y": -0.2527890369079402, "z": -0.03709974776279854, "time": "2025-11-18T08:50:00.000036"}, {"x": 0.5762590312588158, "y": -0.241281041401883, "z": -0.0365619973944543, "time": "2025-11-19T08:50:00.000036"}, {"x": 0.5689840751670593, "y": -0.2294817111988832, "z": -0.03598008730085601, "time": "2025-11-20T08:50:00.000036"}, {"x": 0.5609834880897889, "y": -0.2173898286333946, "z": -0.03535229289472892, "time": "2025-11-21T08:50:00.000036"}, {"x": 0.5522242084346246, "y": -0.2050040659992885, "z": -0.03467668856900839, "time": "2025-11-22T08:50:00.000036"}, {"x": 0.542669166429075, "y": -0.1923230358617278, "z": -0.03395111665910142, "time": "2025-11-23T08:50:00.000036"}, {"x": 0.5322766105322664, "y": -0.1793453611990061, "z": -0.03317314954700242, "time": "2025-11-24T08:50:00.000036"}, {"x": 0.5209992765293492, "y": -0.1660697734599259, "z": -0.03234004307338578, "time": "2025-11-25T08:50:00.000036"}, {"x": 0.5087833483281491, "y": -0.1524952514408861, "z": -0.03144867849396499, "time": "2025-11-26T08:50:00.000036"}, {"x": 0.4955671454220766, "y": -0.1386212191839923, "z": -0.03049548947834813, "time": "2025-11-27T08:50:00.000036"}, {"x": 0.4812794448566035, "y": -0.1244478305167018, "z": -0.02947636921413389, "time": "2025-11-28T08:50:00.000036"}, {"x": 0.4658372987884147, "y": -0.1099763849203815, "z": -0.02838655021666307, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.968757', '2025-11-29 08:50:47.972174');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '999', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 19.05768100788804, "y": -29.71519050197704, "z": -2.331428214470922, "time": "2025-10-30T08:50:00.000036"}, {"x": 19.06040893445112, "y": -29.71419434623938, "z": -2.33233625460741, "time": "2025-10-31T08:50:00.000036"}, {"x": 19.0631275008359, "y": -29.71320624099577, "z": -2.33324139038825, "time": "2025-11-01T08:50:00.000036"}, {"x": 19.06583965636255, "y": -29.71221789168434, "z": -2.33413546295706, "time": "2025-11-02T08:50:00.000036"}, {"x": 19.06855396028721, "y": -29.71122104899512, "z": -2.335020166520848, "time": "2025-11-03T08:50:00.000036"}, {"x": 19.07127694556054, "y": -29.71021487379642, "z": -2.335905545198216, "time": "2025-11-04T08:50:00.000036"}, {"x": 19.07400728394958, "y": -29.70920668872382, "z": -2.336801025562694, "time": "2025-11-05T08:50:00.000036"}, {"x": 19.0767369763996, "y": -29.70820543766379, "z": -2.337707003875301, "time": "2025-11-06T08:50:00.000036"}, {"x": 19.07945849165683, "y": -29.70721370971719, "z": -2.33861450172624, "time": "2025-11-07T08:50:00.000036"}, {"x": 19.08217147778496, "y": -29.70622543482794, "z": -2.339513171872405, "time": "2025-11-08T08:50:00.000036"}, {"x": 19.08488307933303, "y": -29.70523129180519, "z": -2.340400523251927, "time": "2025-11-09T08:50:00.000036"}, {"x": 19.08760156830933, "y": -29.70422702419818, "z": -2.341284152023301, "time": "2025-11-10T08:50:00.000036"}, {"x": 19.0903289575611, "y": -29.70321724470437, "z": -2.342174964123401, "time": "2025-11-11T08:50:00.000036"}, {"x": 19.09305920557763, "y": -29.70221131441368, "z": -2.343077437620518, "time": "2025-11-12T08:50:00.000036"}, {"x": 19.09578361280012, "y": -29.70121498880668, "z": -2.34398563467735, "time": "2025-11-13T08:50:00.000036"}, {"x": 19.0984985771994, "y": -29.70022529089835, "z": -2.344888501623487, "time": "2025-11-14T08:50:00.000036"}, {"x": 19.1012088055096, "y": -29.69923316386897, "z": -2.345779721136437, "time": "2025-11-15T08:50:00.000036"}, {"x": 19.10392312150006, "y": -29.69823154567301, "z": -2.346663352352946, "time": "2025-11-16T08:50:00.000036"}, {"x": 19.10664659068054, "y": -29.69722167662561, "z": -2.347550215443185, "time": "2025-11-17T08:50:00.000036"}, {"x": 19.10937599655173, "y": -29.69621199252203, "z": -2.348448229851262, "time": "2025-11-18T08:50:00.000036"}, {"x": 19.11210271716526, "y": -29.69521059183644, "z": -2.349355350106764, "time": "2025-11-19T08:50:00.000036"}, {"x": 19.11482041626821, "y": -29.69421801671832, "z": -2.350261398694051, "time": "2025-11-20T08:50:00.000036"}, {"x": 19.11753068965593, "y": -29.69322677184638, "z": -2.351157138502583, "time": "2025-11-21T08:50:00.000036"}, {"x": 19.12024164727085, "y": -29.69222800347837, "z": -2.352042511045062, "time": "2025-11-22T08:50:00.000036"}, {"x": 19.1229606801222, "y": -29.69121940164255, "z": -2.352926697722508, "time": "2025-11-23T08:50:00.000036"}, {"x": 19.12568785935159, "y": -29.69020726598433, "z": -2.353819924292047, "time": "2025-11-24T08:50:00.000036"}, {"x": 19.1284158764035, "y": -29.6892008782998, "z": -2.354724332613674, "time": "2025-11-25T08:50:00.000036"}, {"x": 19.13113656770009, "y": -29.68820422263809, "z": -2.355632078667759, "time": "2025-11-26T08:50:00.000036"}, {"x": 19.13384819059394, "y": -29.68721243789986, "z": -2.356532329183385, "time": "2025-11-27T08:50:00.000036"}, {"x": 19.13655697902332, "y": -29.68621614858402, "z": -2.357420918395663, "time": "2025-11-28T08:50:00.000036"}, {"x": 19.13927158840621, "y": -29.68520982660929, "z": -2.358304071771556, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.126788', '2025-11-29 08:50:48.129472');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('10:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '10', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-10-30T08:50:16.375000+00:00"}, {"x": 0.0, "y": 0.0, "z": 0.0, "time": "2025-11-29T08:50:16.375000+00:00"}]}', '2025-12-06 08:50:48.236837', '2025-11-29 08:50:48.239921');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '-31', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": -31.7614247146586, "y": -134.186133164808, "z": 97.08904487006821, "time": "2025-10-30T08:50:00.000036"}, {"x": -31.76262215202818, "y": -134.1939941356404, "z": 97.09472524179424, "time": "2025-10-31T08:50:00.000036"}, {"x": -31.76381958528996, "y": -134.2018551087191, "z": 97.10040560761945, "time": "2025-11-01T08:50:00.000036"}, {"x": -31.76501701443809, "y": -134.2097160840238, "z": 97.10608596754551, "time": "2025-11-02T08:50:00.000036"}, {"x": -31.76621443946794, "y": -134.2175770615359, "z": 97.11176632157402, "time": "2025-11-03T08:50:00.000036"}, {"x": -31.76741186037599, "y": -134.2254380412387, "z": 97.11744666970661, "time": "2025-11-04T08:50:00.000036"}, {"x": -31.76860927715969, "y": -134.233299023117, "z": 97.12312701194469, "time": "2025-11-05T08:50:00.000036"}, {"x": -31.76980668981729, "y": -134.2411600071583, "z": 97.1288073482896, "time": "2025-11-06T08:50:00.000036"}, {"x": -31.77100409834759, "y": -134.2490209933521, "z": 97.1344876787425, "time": "2025-11-07T08:50:00.000036"}, {"x": -31.77220150274958, "y": -134.2568819816911, "z": 97.14016800330434, "time": "2025-11-08T08:50:00.000036"}, {"x": -31.77339890302217, "y": -134.2647429721702, "z": 97.14584832197582, "time": "2025-11-09T08:50:00.000036"}, {"x": -31.77459629916364, "y": -134.272603964788, "z": 97.15152863475723, "time": "2025-11-10T08:50:00.000036"}, {"x": -31.77579369117119, "y": -134.2804649595457, "z": 97.15720894164862, "time": "2025-11-11T08:50:00.000036"}, {"x": -31.77699107904027, "y": -134.288325956448, "z": 97.16288924264951, "time": "2025-11-12T08:50:00.000036"}, {"x": -31.77818846276399, "y": -134.2961869555025, "z": 97.16856953775896, "time": "2025-11-13T08:50:00.000036"}, {"x": -31.77938584233231, "y": -134.3040479567198, "z": 97.17424982697551, "time": "2025-11-14T08:50:00.000036"}, {"x": -31.78058321773138, "y": -134.3119089601128, "z": 97.17993011029715, "time": "2025-11-15T08:50:00.000036"}, {"x": -31.78178058894274, "y": -134.3197699656963, "z": 97.18561038772131, "time": "2025-11-16T08:50:00.000036"}, {"x": -31.78297795594278, "y": -134.3276309734862, "z": 97.19129065924476, "time": "2025-11-17T08:50:00.000036"}, {"x": -31.78417531870209, "y": -134.3354919834984, "z": 97.19697092486383, "time": "2025-11-18T08:50:00.000036"}, {"x": -31.78537267718528, "y": -134.3433529957475, "z": 97.20265118457438, "time": "2025-11-19T08:50:00.000036"}, {"x": -31.78657003135088, "y": -134.3512140102459, "z": 97.20833143837189, "time": "2025-11-20T08:50:00.000036"}, {"x": -31.78776738115171, "y": -134.3590750270018, "z": 97.21401168625162, "time": "2025-11-21T08:50:00.000036"}, {"x": -31.78896472653542, "y": -134.3669360460188, "z": 97.21969192820882, "time": "2025-11-22T08:50:00.000036"}, {"x": -31.79016206744559, "y": -134.3747970672934, "z": 97.22537216423883, "time": "2025-11-23T08:50:00.000036"}, {"x": -31.79135940382297, "y": -134.3826580908156, "z": 97.23105239433742, "time": "2025-11-24T08:50:00.000036"}, {"x": -31.79255673560698, "y": -134.390519116567, "z": 97.2367326185008, "time": "2025-11-25T08:50:00.000036"}, {"x": -31.79375406273736, "y": -134.3983801445216, "z": 97.24241283672588, "time": "2025-11-26T08:50:00.000036"}, {"x": -31.79495138515568, "y": -134.4062411746455, "z": 97.24809304901046, "time": "2025-11-27T08:50:00.000036"}, {"x": -31.79614870280686, "y": -134.4141022068978, "z": 97.25377325535317, "time": "2025-11-28T08:50:00.000036"}, {"x": -31.79734601564037, "y": -134.4219632412309, "z": 97.25945345575356, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.351891', '2025-11-29 08:50:48.354914');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('301:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '301', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 0.7966339477369013, "y": 0.5934933994484929, "z": -0.0001602726653575258, "time": "2025-10-30T08:50:00.000036"}, {"x": 0.7862511537037982, "y": 0.6075842740685929, "z": -0.0001126488189469647, "time": "2025-10-31T08:50:00.000036"}, {"x": 0.775515265008918, "y": 0.6215640398249097, "z": -0.00006109271600466916, "time": "2025-11-01T08:50:00.000036"}, {"x": 0.7644115759471549, "y": 0.6354009021767733, "z": -0.000008409456250745328, "time": "2025-11-02T08:50:00.000036"}, {"x": 0.752932195718037, "y": 0.649057343105019, "z": 0.00004223974979213617, "time": "2025-11-03T08:50:00.000036"}, {"x": 0.7410785047721405, "y": 0.6624918902725749, "z": 0.00008754629974080232, "time": "2025-11-04T08:50:00.000036"}, {"x": 0.7288630144998034, "y": 0.6756622146527443, "z": 0.0001243654274703759, "time": "2025-11-05T08:50:00.000036"}, {"x": 0.7163097869616204, "y": 0.6885292338033732, "z": 0.0001500834928420416, "time": "2025-11-06T08:50:00.000036"}, {"x": 0.7034528613934855, "y": 0.7010613061132374, "z": 0.000162949646363831, "time": "2025-11-07T08:50:00.000036"}, {"x": 0.6903328559325123, "y": 0.7132373422904063, "z": 0.0001622732556190762, "time": "2025-11-08T08:50:00.000036"}, {"x": 0.676992656988899, "y": 0.7250480150488443, "z": 0.0001484354754186258, "time": "2025-11-09T08:50:00.000036"}, {"x": 0.6634733708985788, "y": 0.7364950213938751, "z": 0.0001227363936906081, "time": "2025-11-10T08:50:00.000036"}, {"x": 0.6498113760408527, "y": 0.7475890220439891, "z": 0.0000871503088011222, "time": "2025-11-11T08:50:00.000036"}, {"x": 0.636036710508173, "y": 0.7583470950711345, "z": 0.00004406720899410067, "time": "2025-11-12T08:50:00.000036"}, {"x": 0.6221725608198039, "y": 0.7687903464557979, "z": -0.000003928522821106599, "time": "2025-11-13T08:50:00.000036"}, {"x": 0.6082354388240754, "y": 0.7789419833524036, "z": -0.00005422433644905265, "time": "2025-11-14T08:50:00.000036"}, {"x": 0.5942356774697448, "y": 0.7888258848939989, "z": -0.000104295487195656, "time": "2025-11-15T08:50:00.000036"}, {"x": 0.5801780082637519, "y": 0.7984655654100262, "z": -0.0001517849029688429, "time": "2025-11-16T08:50:00.000036"}, {"x": 0.5660621118429482, "y": 0.8078833904897489, "z": -0.0001945613179821897, "time": "2025-11-17T08:50:00.000036"}, {"x": 0.551883121975116, "y": 0.8170999298365059, "z": -0.0002307660829244264, "time": "2025-11-18T08:50:00.000036"}, {"x": 0.5376321094558737, "y": 0.8261333753261405, "z": -0.0002588542061122745, "time": "2025-11-19T08:50:00.000036"}, {"x": 0.5232965849898261, "y": 0.834998996282085, "z": -0.0002776311374289111, "time": "2025-11-20T08:50:00.000036"}, {"x": 0.5088610509606585, "y": 0.8437086353603538, "z": -0.0002862843095372208, "time": "2025-11-21T08:50:00.000036"}, {"x": 0.4943076127278113, "y": 0.8522702627370125, "z": -0.0002844076592491311, "time": "2025-11-22T08:50:00.000036"}, {"x": 0.4796166418290945, "y": 0.8606876037723695, "z": -0.0002720179883740152, "time": "2025-11-23T08:50:00.000036"}, {"x": 0.4647674753766309, "y": 0.8689598410783669, "z": -0.0002495634331130194, "time": "2025-11-24T08:50:00.000036"}, {"x": 0.449739143315208, "y": 0.8770813748649872, "z": -0.0002179255968619923, "time": "2025-11-25T08:50:00.000036"}, {"x": 0.4345111381652606, "y": 0.8850416163375167, "z": -0.0001784171341383297, "time": "2025-11-26T08:50:00.000036"}, {"x": 0.4190642750121047, "y": 0.8928247982006577, "z": -0.0001327749877211025, "time": "2025-11-27T08:50:00.000036"}, {"x": 0.4033817218813463, "y": 0.9004098226297426, "z": -0.00008314561108780897, "time": "2025-11-28T08:50:00.000036"}, {"x": 0.3874502944074003, "y": 0.9077702352967751, "z": -0.00003205238758759175, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.788102', '2025-11-29 08:50:47.790996');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-98:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '-98', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 19.81727818161275, "y": -59.85155089333789, "z": 2.195105668280709, "time": "2025-10-30T08:50:00.000036"}, {"x": 19.82034996032922, "y": -59.85878389617356, "z": 2.195390390294856, "time": "2025-10-31T08:50:00.000036"}, {"x": 19.82342171766345, "y": -59.86601683891756, "z": 2.195675109695841, "time": "2025-11-01T08:50:00.000036"}, {"x": 19.82649345362662, "y": -59.87324972156658, "z": 2.1959598264853, "time": "2025-11-02T08:50:00.000036"}, {"x": 19.82956516822871, "y": -59.88048254411881, "z": 2.196244540664796, "time": "2025-11-03T08:50:00.000036"}, {"x": 19.83263686147857, "y": -59.88771530657419, "z": 2.196529252235844, "time": "2025-11-04T08:50:00.000036"}, {"x": 19.83570853338408, "y": -59.89494800893461, "z": 2.196813961199853, "time": "2025-11-05T08:50:00.000036"}, {"x": 19.8387801839523, "y": -59.90218065120416, "z": 2.197098667558101, "time": "2025-11-06T08:50:00.000036"}, {"x": 19.84185181318978, "y": -59.90941323338935, "z": 2.197383371311695, "time": "2025-11-07T08:50:00.000036"}, {"x": 19.84492342110283, "y": -59.91664575549939, "z": 2.197668072461525, "time": "2025-11-08T08:50:00.000036"}, {"x": 19.8479950076979, "y": -59.92387821754628, "z": 2.197952771008203, "time": "2025-11-09T08:50:00.000036"}, {"x": 19.85106657298199, "y": -59.93111061954514, "z": 2.198237466952036, "time": "2025-11-10T08:50:00.000036"}, {"x": 19.85413811696326, "y": -59.93834296151417, "z": 2.198522160292964, "time": "2025-11-11T08:50:00.000036"}, {"x": 19.85720963965153, "y": -59.94557524347471, "z": 2.198806851030458, "time": "2025-11-12T08:50:00.000036"}, {"x": 19.86028114105904, "y": -59.95280746545119, "z": 2.199091539163545, "time": "2025-11-13T08:50:00.000036"}, {"x": 19.86335262120113, "y": -59.96003962747093, "z": 2.199376224690716, "time": "2025-11-14T08:50:00.000036"}, {"x": 19.86642408009697, "y": -59.96727172956361, "z": 2.199660907609888, "time": "2025-11-15T08:50:00.000036"}, {"x": 19.86949551777029, "y": -59.97450377176077, "z": 2.19994558791842, "time": "2025-11-16T08:50:00.000036"}, {"x": 19.87256693425007, "y": -59.98173575409503, "z": 2.200230265613081, "time": "2025-11-17T08:50:00.000036"}, {"x": 19.87563832957098, "y": -59.98896767659897, "z": 2.200514940690127, "time": "2025-11-18T08:50:00.000036"}, {"x": 19.87870970377372, "y": -59.99619953930407, "z": 2.200799613145348, "time": "2025-11-19T08:50:00.000036"}, {"x": 19.88178105690506, "y": -60.00343134223932, "z": 2.201084282974172, "time": "2025-11-20T08:50:00.000036"}, {"x": 19.8848523890175, "y": -60.0106630854298, "z": 2.201368950171819, "time": "2025-11-21T08:50:00.000036"}, {"x": 19.88792370016866, "y": -60.0178947688955, "z": 2.201653614733461, "time": "2025-11-22T08:50:00.000036"}, {"x": 19.89099499042025, "y": -60.02512639265001, "z": 2.201938276654434, "time": "2025-11-23T08:50:00.000036"}, {"x": 19.89406625983684, "y": -60.03235795669969, "z": 2.202222935930393, "time": "2025-11-24T08:50:00.000036"}, {"x": 19.89713750848428, "y": -60.0395894610431, "z": 2.202507592557534, "time": "2025-11-25T08:50:00.000036"}, {"x": 19.90020873642815, "y": -60.04682090567079, "z": 2.202792246532721, "time": "2025-11-26T08:50:00.000036"}, {"x": 19.90327994373212, "y": -60.05405229056553, "z": 2.203076897853667, "time": "2025-11-27T08:50:00.000036"}, {"x": 19.90635113045658, "y": -60.06128361570296, "z": 2.203361546518946, "time": "2025-11-28T08:50:00.000036"}, {"x": 19.90942229665734, "y": -60.0685148810525, "z": 2.203646192528101, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:47.952238', '2025-11-29 08:50:47.955971');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('999:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '999', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 19.05768100788804, "y": -29.71519050197704, "z": -2.331428214470922, "time": "2025-10-30T08:50:00.000036"}, {"x": 19.06040893445112, "y": -29.71419434623938, "z": -2.33233625460741, "time": "2025-10-31T08:50:00.000036"}, {"x": 19.0631275008359, "y": -29.71320624099577, "z": -2.33324139038825, "time": "2025-11-01T08:50:00.000036"}, {"x": 19.06583965636255, "y": -29.71221789168434, "z": -2.33413546295706, "time": "2025-11-02T08:50:00.000036"}, {"x": 19.06855396028721, "y": -29.71122104899512, "z": -2.335020166520848, "time": "2025-11-03T08:50:00.000036"}, {"x": 19.07127694556054, "y": -29.71021487379642, "z": -2.335905545198216, "time": "2025-11-04T08:50:00.000036"}, {"x": 19.07400728394958, "y": -29.70920668872382, "z": -2.336801025562694, "time": "2025-11-05T08:50:00.000036"}, {"x": 19.0767369763996, "y": -29.70820543766379, "z": -2.337707003875301, "time": "2025-11-06T08:50:00.000036"}, {"x": 19.07945849165683, "y": -29.70721370971719, "z": -2.33861450172624, "time": "2025-11-07T08:50:00.000036"}, {"x": 19.08217147778496, "y": -29.70622543482794, "z": -2.339513171872405, "time": "2025-11-08T08:50:00.000036"}, {"x": 19.08488307933303, "y": -29.70523129180519, "z": -2.340400523251927, "time": "2025-11-09T08:50:00.000036"}, {"x": 19.08760156830933, "y": -29.70422702419818, "z": -2.341284152023301, "time": "2025-11-10T08:50:00.000036"}, {"x": 19.0903289575611, "y": -29.70321724470437, "z": -2.342174964123401, "time": "2025-11-11T08:50:00.000036"}, {"x": 19.09305920557763, "y": -29.70221131441368, "z": -2.343077437620518, "time": "2025-11-12T08:50:00.000036"}, {"x": 19.09578361280012, "y": -29.70121498880668, "z": -2.34398563467735, "time": "2025-11-13T08:50:00.000036"}, {"x": 19.0984985771994, "y": -29.70022529089835, "z": -2.344888501623487, "time": "2025-11-14T08:50:00.000036"}, {"x": 19.1012088055096, "y": -29.69923316386897, "z": -2.345779721136437, "time": "2025-11-15T08:50:00.000036"}, {"x": 19.10392312150006, "y": -29.69823154567301, "z": -2.346663352352946, "time": "2025-11-16T08:50:00.000036"}, {"x": 19.10664659068054, "y": -29.69722167662561, "z": -2.347550215443185, "time": "2025-11-17T08:50:00.000036"}, {"x": 19.10937599655173, "y": -29.69621199252203, "z": -2.348448229851262, "time": "2025-11-18T08:50:00.000036"}, {"x": 19.11210271716526, "y": -29.69521059183644, "z": -2.349355350106764, "time": "2025-11-19T08:50:00.000036"}, {"x": 19.11482041626821, "y": -29.69421801671832, "z": -2.350261398694051, "time": "2025-11-20T08:50:00.000036"}, {"x": 19.11753068965593, "y": -29.69322677184638, "z": -2.351157138502583, "time": "2025-11-21T08:50:00.000036"}, {"x": 19.12024164727085, "y": -29.69222800347837, "z": -2.352042511045062, "time": "2025-11-22T08:50:00.000036"}, {"x": 19.1229606801222, "y": -29.69121940164255, "z": -2.352926697722508, "time": "2025-11-23T08:50:00.000036"}, {"x": 19.12568785935159, "y": -29.69020726598433, "z": -2.353819924292047, "time": "2025-11-24T08:50:00.000036"}, {"x": 19.1284158764035, "y": -29.6892008782998, "z": -2.354724332613674, "time": "2025-11-25T08:50:00.000036"}, {"x": 19.13113656770009, "y": -29.68820422263809, "z": -2.355632078667759, "time": "2025-11-26T08:50:00.000036"}, {"x": 19.13384819059394, "y": -29.68721243789986, "z": -2.356532329183385, "time": "2025-11-27T08:50:00.000036"}, {"x": 19.13655697902332, "y": -29.68621614858402, "z": -2.357420918395663, "time": "2025-11-28T08:50:00.000036"}, {"x": 19.13927158840621, "y": -29.68520982660929, "z": -2.358304071771556, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.086073', '2025-11-29 08:50:48.089483');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '799', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 10.09413730562647, "y": 16.68529020416105, "z": -0.06891818221386256, "time": "2025-10-30T08:50:00.000036"}, {"x": 10.09073561030531, "y": 16.68714281694825, "z": -0.0688671179537954, "time": "2025-10-31T08:50:00.000036"}, {"x": 10.08733352909425, "y": 16.68899474882019, "z": -0.06881605037739973, "time": "2025-11-01T08:50:00.000036"}, {"x": 10.08393116152937, "y": 16.69084597163535, "z": -0.06876502420374617, "time": "2025-11-02T08:50:00.000036"}, {"x": 10.08052833658526, "y": 16.69269650404826, "z": -0.06871417528475916, "time": "2025-11-03T08:50:00.000036"}, {"x": 10.07712497349116, "y": 16.69454639244775, "z": -0.06866329663417764, "time": "2025-11-04T08:50:00.000036"}, {"x": 10.07372120427325, "y": 16.6963956061321, "z": -0.06861240078497453, "time": "2025-11-05T08:50:00.000036"}, {"x": 10.07031694973933, "y": 16.69824416342384, "z": -0.06856148148101783, "time": "2025-11-06T08:50:00.000036"}, {"x": 10.06691229779361, "y": 16.70009205388962, "z": -0.06851047600984617, "time": "2025-11-07T08:50:00.000036"}, {"x": 10.06350721798942, "y": 16.70193927567712, "z": -0.06845944392304402, "time": "2025-11-08T08:50:00.000036"}, {"x": 10.06010177995582, "y": 16.70378583151912, "z": -0.06840825482733412, "time": "2025-11-09T08:50:00.000036"}, {"x": 10.05669612924878, "y": 16.70563166520165, "z": -0.06835708542029635, "time": "2025-11-10T08:50:00.000036"}, {"x": 10.05329007322728, "y": 16.70747680585646, "z": -0.06830602796045575, "time": "2025-11-11T08:50:00.000036"}, {"x": 10.04988362750052, "y": 16.70932126323858, "z": -0.06825498497644904, "time": "2025-11-12T08:50:00.000036"}, {"x": 10.04647675675728, "y": 16.71116503695511, "z": -0.06820401557124409, "time": "2025-11-13T08:50:00.000036"}, {"x": 10.04306944361931, "y": 16.71300814520971, "z": -0.06815301671444779, "time": "2025-11-14T08:50:00.000036"}, {"x": 10.03966175224725, "y": 16.71485056194972, "z": -0.06810207310354709, "time": "2025-11-15T08:50:00.000036"}, {"x": 10.03625352888754, "y": 16.7166923278596, "z": -0.06805113279616051, "time": "2025-11-16T08:50:00.000036"}, {"x": 10.03284492784523, "y": 16.71853342971379, "z": -0.06800004901132037, "time": "2025-11-17T08:50:00.000036"}, {"x": 10.02943600324753, "y": 16.72037383176179, "z": -0.06794899365956111, "time": "2025-11-18T08:50:00.000036"}, {"x": 10.02602667825748, "y": 16.72221355388695, "z": -0.06789794287819886, "time": "2025-11-19T08:50:00.000036"}, {"x": 10.02261697964682, "y": 16.72405258373335, "z": -0.06784694395241639, "time": "2025-11-20T08:50:00.000036"}, {"x": 10.01920678031391, "y": 16.72589095502824, "z": -0.06779595457914252, "time": "2025-11-21T08:50:00.000036"}, {"x": 10.01579621575393, "y": 16.7277286516337, "z": -0.0677448764457741, "time": "2025-11-22T08:50:00.000036"}, {"x": 10.01238526544153, "y": 16.72956565627578, "z": -0.06769386647692413, "time": "2025-11-23T08:50:00.000036"}, {"x": 10.00897382652529, "y": 16.73140200992807, "z": -0.06764279176080717, "time": "2025-11-24T08:50:00.000036"}, {"x": 10.00556205661441, "y": 16.7332376805714, "z": -0.06759163310557083, "time": "2025-11-25T08:50:00.000036"}, {"x": 10.00214993454436, "y": 16.73507266368386, "z": -0.0675404555010916, "time": "2025-11-26T08:50:00.000036"}, {"x": 9.998737537000276, "y": 16.73690694128904, "z": -0.06748926838272779, "time": "2025-11-27T08:50:00.000036"}, {"x": 9.995324769639485, "y": 16.7387405099606, "z": -0.06743824439812501, "time": "2025-11-28T08:50:00.000036"}, {"x": 9.991911506537726, "y": 16.74057341745204, "z": -0.06738723622245213, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.211461', '2025-11-29 08:50:48.21426');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-31:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '-31', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": -31.7614247146586, "y": -134.186133164808, "z": 97.08904487006821, "time": "2025-10-30T08:50:00.000036"}, {"x": -31.76262215202818, "y": -134.1939941356404, "z": 97.09472524179424, "time": "2025-10-31T08:50:00.000036"}, {"x": -31.76381958528996, "y": -134.2018551087191, "z": 97.10040560761945, "time": "2025-11-01T08:50:00.000036"}, {"x": -31.76501701443809, "y": -134.2097160840238, "z": 97.10608596754551, "time": "2025-11-02T08:50:00.000036"}, {"x": -31.76621443946794, "y": -134.2175770615359, "z": 97.11176632157402, "time": "2025-11-03T08:50:00.000036"}, {"x": -31.76741186037599, "y": -134.2254380412387, "z": 97.11744666970661, "time": "2025-11-04T08:50:00.000036"}, {"x": -31.76860927715969, "y": -134.233299023117, "z": 97.12312701194469, "time": "2025-11-05T08:50:00.000036"}, {"x": -31.76980668981729, "y": -134.2411600071583, "z": 97.1288073482896, "time": "2025-11-06T08:50:00.000036"}, {"x": -31.77100409834759, "y": -134.2490209933521, "z": 97.1344876787425, "time": "2025-11-07T08:50:00.000036"}, {"x": -31.77220150274958, "y": -134.2568819816911, "z": 97.14016800330434, "time": "2025-11-08T08:50:00.000036"}, {"x": -31.77339890302217, "y": -134.2647429721702, "z": 97.14584832197582, "time": "2025-11-09T08:50:00.000036"}, {"x": -31.77459629916364, "y": -134.272603964788, "z": 97.15152863475723, "time": "2025-11-10T08:50:00.000036"}, {"x": -31.77579369117119, "y": -134.2804649595457, "z": 97.15720894164862, "time": "2025-11-11T08:50:00.000036"}, {"x": -31.77699107904027, "y": -134.288325956448, "z": 97.16288924264951, "time": "2025-11-12T08:50:00.000036"}, {"x": -31.77818846276399, "y": -134.2961869555025, "z": 97.16856953775896, "time": "2025-11-13T08:50:00.000036"}, {"x": -31.77938584233231, "y": -134.3040479567198, "z": 97.17424982697551, "time": "2025-11-14T08:50:00.000036"}, {"x": -31.78058321773138, "y": -134.3119089601128, "z": 97.17993011029715, "time": "2025-11-15T08:50:00.000036"}, {"x": -31.78178058894274, "y": -134.3197699656963, "z": 97.18561038772131, "time": "2025-11-16T08:50:00.000036"}, {"x": -31.78297795594278, "y": -134.3276309734862, "z": 97.19129065924476, "time": "2025-11-17T08:50:00.000036"}, {"x": -31.78417531870209, "y": -134.3354919834984, "z": 97.19697092486383, "time": "2025-11-18T08:50:00.000036"}, {"x": -31.78537267718528, "y": -134.3433529957475, "z": 97.20265118457438, "time": "2025-11-19T08:50:00.000036"}, {"x": -31.78657003135088, "y": -134.3512140102459, "z": 97.20833143837189, "time": "2025-11-20T08:50:00.000036"}, {"x": -31.78776738115171, "y": -134.3590750270018, "z": 97.21401168625162, "time": "2025-11-21T08:50:00.000036"}, {"x": -31.78896472653542, "y": -134.3669360460188, "z": 97.21969192820882, "time": "2025-11-22T08:50:00.000036"}, {"x": -31.79016206744559, "y": -134.3747970672934, "z": 97.22537216423883, "time": "2025-11-23T08:50:00.000036"}, {"x": -31.79135940382297, "y": -134.3826580908156, "z": 97.23105239433742, "time": "2025-11-24T08:50:00.000036"}, {"x": -31.79255673560698, "y": -134.390519116567, "z": 97.2367326185008, "time": "2025-11-25T08:50:00.000036"}, {"x": -31.79375406273736, "y": -134.3983801445216, "z": 97.24241283672588, "time": "2025-11-26T08:50:00.000036"}, {"x": -31.79495138515568, "y": -134.4062411746455, "z": 97.24809304901046, "time": "2025-11-27T08:50:00.000036"}, {"x": -31.79614870280686, "y": -134.4141022068978, "z": 97.25377325535317, "time": "2025-11-28T08:50:00.000036"}, {"x": -31.79734601564037, "y": -134.4219632412309, "z": 97.25945345575356, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.318009', '2025-11-29 08:50:48.320621');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('699:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '699', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 9.529956001699523, "y": -0.09090055797012521, "z": -0.3777632124628855, "time": "2025-10-30T08:50:00.000036"}, {"x": 9.529695442432336, "y": -0.08533418312863837, "z": -0.3778494630298805, "time": "2025-10-31T08:50:00.000036"}, {"x": 9.529431927329197, "y": -0.07976765330353464, "z": -0.3779356838885168, "time": "2025-11-01T08:50:00.000036"}, {"x": 9.529165322776791, "y": -0.07420086266610378, "z": -0.3780219174697965, "time": "2025-11-02T08:50:00.000036"}, {"x": 9.528895519239326, "y": -0.06863381582787444, "z": -0.3781081514054659, "time": "2025-11-03T08:50:00.000036"}, {"x": 9.528622407776638, "y": -0.06306649687511193, "z": -0.3781943836884613, "time": "2025-11-04T08:50:00.000036"}, {"x": 9.528345903551267, "y": -0.0574989696611357, "z": -0.3782805737780573, "time": "2025-11-05T08:50:00.000036"}, {"x": 9.528065949192118, "y": -0.0519312579763452, "z": -0.3783667049419553, "time": "2025-11-06T08:50:00.000036"}, {"x": 9.527782460298505, "y": -0.04636343698882072, "z": -0.3784527313687543, "time": "2025-11-07T08:50:00.000036"}, {"x": 9.527495405157609, "y": -0.04079564215281036, "z": -0.3785385806321231, "time": "2025-11-08T08:50:00.000036"}, {"x": 9.5272048763014, "y": -0.03522797046654584, "z": -0.3786242124486853, "time": "2025-11-09T08:50:00.000036"}, {"x": 9.526910910361854, "y": -0.02966047243066332, "z": -0.3787096058826593, "time": "2025-11-10T08:50:00.000036"}, {"x": 9.526613612742546, "y": -0.02409321408919481, "z": -0.3787947382619229, "time": "2025-11-11T08:50:00.000036"}, {"x": 9.526313064546677, "y": -0.01852620966271673, "z": -0.378879611727845, "time": "2025-11-12T08:50:00.000036"}, {"x": 9.526009386811097, "y": -0.01295947166660078, "z": -0.3789642321327669, "time": "2025-11-13T08:50:00.000036"}, {"x": 9.525702720910806, "y": -0.007392950001375181, "z": -0.3790486403831804, "time": "2025-11-14T08:50:00.000036"}, {"x": 9.525393128296683, "y": -0.001826488129448203, "z": -0.3791329245606663, "time": "2025-11-15T08:50:00.000036"}, {"x": 9.525080557656546, "y": 0.003739998865159087, "z": -0.3792171247667944, "time": "2025-11-16T08:50:00.000036"}, {"x": 9.52476499100102, "y": 0.009306607314168089, "z": -0.3793012892582296, "time": "2025-11-17T08:50:00.000036"}, {"x": 9.524446335852378, "y": 0.01487340339456503, "z": -0.3793854440207458, "time": "2025-11-18T08:50:00.000036"}, {"x": 9.524124503607736, "y": 0.02044043405493259, "z": -0.3794696051527736, "time": "2025-11-19T08:50:00.000036"}, {"x": 9.523799380420389, "y": 0.0260077210407902, "z": -0.3795537741667329, "time": "2025-11-20T08:50:00.000036"}, {"x": 9.523470810442404, "y": 0.0315752302313619, "z": -0.379637918911854, "time": "2025-11-21T08:50:00.000036"}, {"x": 9.523138754662492, "y": 0.03714283389236153, "z": -0.3797219700175667, "time": "2025-11-22T08:50:00.000036"}, {"x": 9.522803195258373, "y": 0.04271049014128523, "z": -0.3798059051313327, "time": "2025-11-23T08:50:00.000036"}, {"x": 9.522464111057674, "y": 0.04827810792083247, "z": -0.3798896764016903, "time": "2025-11-24T08:50:00.000036"}, {"x": 9.522121518033519, "y": 0.05384560014184891, "z": -0.3799732417091561, "time": "2025-11-25T08:50:00.000036"}, {"x": 9.521775473749768, "y": 0.05941287680828247, "z": -0.3800565610835448, "time": "2025-11-26T08:50:00.000036"}, {"x": 9.521426071632977, "y": 0.06497984774915536, "z": -0.3801395979917249, "time": "2025-11-27T08:50:00.000036"}, {"x": 9.521073492366133, "y": 0.07054651560575365, "z": -0.3802223725486826, "time": "2025-11-28T08:50:00.000036"}, {"x": 9.520717793428084, "y": 0.07611293524829689, "z": -0.3803049205850257, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.139598', '2025-11-29 08:50:48.142658');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('799:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '799', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 10.09413730562647, "y": 16.68529020416105, "z": -0.06891818221386256, "time": "2025-10-30T08:50:00.000036"}, {"x": 10.09073561030531, "y": 16.68714281694825, "z": -0.0688671179537954, "time": "2025-10-31T08:50:00.000036"}, {"x": 10.08733352909425, "y": 16.68899474882019, "z": -0.06881605037739973, "time": "2025-11-01T08:50:00.000036"}, {"x": 10.08393116152937, "y": 16.69084597163535, "z": -0.06876502420374617, "time": "2025-11-02T08:50:00.000036"}, {"x": 10.08052833658526, "y": 16.69269650404826, "z": -0.06871417528475916, "time": "2025-11-03T08:50:00.000036"}, {"x": 10.07712497349116, "y": 16.69454639244775, "z": -0.06866329663417764, "time": "2025-11-04T08:50:00.000036"}, {"x": 10.07372120427325, "y": 16.6963956061321, "z": -0.06861240078497453, "time": "2025-11-05T08:50:00.000036"}, {"x": 10.07031694973933, "y": 16.69824416342384, "z": -0.06856148148101783, "time": "2025-11-06T08:50:00.000036"}, {"x": 10.06691229779361, "y": 16.70009205388962, "z": -0.06851047600984617, "time": "2025-11-07T08:50:00.000036"}, {"x": 10.06350721798942, "y": 16.70193927567712, "z": -0.06845944392304402, "time": "2025-11-08T08:50:00.000036"}, {"x": 10.06010177995582, "y": 16.70378583151912, "z": -0.06840825482733412, "time": "2025-11-09T08:50:00.000036"}, {"x": 10.05669612924878, "y": 16.70563166520165, "z": -0.06835708542029635, "time": "2025-11-10T08:50:00.000036"}, {"x": 10.05329007322728, "y": 16.70747680585646, "z": -0.06830602796045575, "time": "2025-11-11T08:50:00.000036"}, {"x": 10.04988362750052, "y": 16.70932126323858, "z": -0.06825498497644904, "time": "2025-11-12T08:50:00.000036"}, {"x": 10.04647675675728, "y": 16.71116503695511, "z": -0.06820401557124409, "time": "2025-11-13T08:50:00.000036"}, {"x": 10.04306944361931, "y": 16.71300814520971, "z": -0.06815301671444779, "time": "2025-11-14T08:50:00.000036"}, {"x": 10.03966175224725, "y": 16.71485056194972, "z": -0.06810207310354709, "time": "2025-11-15T08:50:00.000036"}, {"x": 10.03625352888754, "y": 16.7166923278596, "z": -0.06805113279616051, "time": "2025-11-16T08:50:00.000036"}, {"x": 10.03284492784523, "y": 16.71853342971379, "z": -0.06800004901132037, "time": "2025-11-17T08:50:00.000036"}, {"x": 10.02943600324753, "y": 16.72037383176179, "z": -0.06794899365956111, "time": "2025-11-18T08:50:00.000036"}, {"x": 10.02602667825748, "y": 16.72221355388695, "z": -0.06789794287819886, "time": "2025-11-19T08:50:00.000036"}, {"x": 10.02261697964682, "y": 16.72405258373335, "z": -0.06784694395241639, "time": "2025-11-20T08:50:00.000036"}, {"x": 10.01920678031391, "y": 16.72589095502824, "z": -0.06779595457914252, "time": "2025-11-21T08:50:00.000036"}, {"x": 10.01579621575393, "y": 16.7277286516337, "z": -0.0677448764457741, "time": "2025-11-22T08:50:00.000036"}, {"x": 10.01238526544153, "y": 16.72956565627578, "z": -0.06769386647692413, "time": "2025-11-23T08:50:00.000036"}, {"x": 10.00897382652529, "y": 16.73140200992807, "z": -0.06764279176080717, "time": "2025-11-24T08:50:00.000036"}, {"x": 10.00556205661441, "y": 16.7332376805714, "z": -0.06759163310557083, "time": "2025-11-25T08:50:00.000036"}, {"x": 10.00214993454436, "y": 16.73507266368386, "z": -0.0675404555010916, "time": "2025-11-26T08:50:00.000036"}, {"x": 9.998737537000276, "y": 16.73690694128904, "z": -0.06748926838272779, "time": "2025-11-27T08:50:00.000036"}, {"x": 9.995324769639485, "y": 16.7387405099606, "z": -0.06743824439812501, "time": "2025-11-28T08:50:00.000036"}, {"x": 9.991911506537726, "y": 16.74057341745204, "z": -0.06738723622245213, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.253519', '2025-11-29 08:50:48.256855');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '-32', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": 39.07547844161056, "y": -103.6536436150871, "z": -87.50912638965099, "time": "2025-10-30T08:50:00.000036"}, {"x": 39.07790623054861, "y": -103.659038742109, "z": -87.51566537181559, "time": "2025-10-31T08:50:00.000036"}, {"x": 39.08033401727753, "y": -103.6644338687508, "z": -87.52220434488568, "time": "2025-11-01T08:50:00.000036"}, {"x": 39.08276180180396, "y": -103.6698289949928, "z": -87.52874330886131, "time": "2025-11-02T08:50:00.000036"}, {"x": 39.08518958413331, "y": -103.6752241208169, "z": -87.53528226374259, "time": "2025-11-03T08:50:00.000036"}, {"x": 39.08761736426985, "y": -103.6806192462066, "z": -87.54182120952957, "time": "2025-11-04T08:50:00.000036"}, {"x": 39.09004514221689, "y": -103.6860143711477, "z": -87.54836014622258, "time": "2025-11-05T08:50:00.000036"}, {"x": 39.09247291797696, "y": -103.6914094956278, "z": -87.55489907382196, "time": "2025-11-06T08:50:00.000036"}, {"x": 39.09490069155191, "y": -103.6968046196371, "z": -87.56143799232818, "time": "2025-11-07T08:50:00.000036"}, {"x": 39.09732846294375, "y": -103.7021997431687, "z": -87.56797690174211, "time": "2025-11-08T08:50:00.000036"}, {"x": 39.09975623215423, "y": -103.7075948662182, "z": -87.57451580206474, "time": "2025-11-09T08:50:00.000036"}, {"x": 39.1021839991858, "y": -103.7129899887844, "z": -87.58105469329738, "time": "2025-11-10T08:50:00.000036"}, {"x": 39.10461176404208, "y": -103.7183851108693, "z": -87.5875935754418, "time": "2025-11-11T08:50:00.000036"}, {"x": 39.10703952672834, "y": -103.723780232478, "z": -87.5941324485001, "time": "2025-11-12T08:50:00.000036"}, {"x": 39.10946728725227, "y": -103.7291753536186, "z": -87.60067131247494, "time": "2025-11-13T08:50:00.000036"}, {"x": 39.11189504562464, "y": -103.7345704743022, "z": -87.60721016736949, "time": "2025-11-14T08:50:00.000036"}, {"x": 39.11432280186011, "y": -103.7399655945423, "z": -87.61374901318743, "time": "2025-11-15T08:50:00.000036"}, {"x": 39.11675055597786, "y": -103.7453607143541, "z": -87.62028784993309, "time": "2025-11-16T08:50:00.000036"}, {"x": 39.11917830800231, "y": -103.750755833754, "z": -87.6268266776113, "time": "2025-11-17T08:50:00.000036"}, {"x": 39.12160605796361, "y": -103.7561509527584, "z": -87.6333654962275, "time": "2025-11-18T08:50:00.000036"}, {"x": 39.12403380589792, "y": -103.7615460713825, "z": -87.6399043057875, "time": "2025-11-19T08:50:00.000036"}, {"x": 39.12646155184746, "y": -103.7669411896391, "z": -87.64644310629753, "time": "2025-11-20T08:50:00.000036"}, {"x": 39.1288892958602, "y": -103.7723363075372, "z": -87.65298189776402, "time": "2025-11-21T08:50:00.000036"}, {"x": 39.13131703798928, "y": -103.7777314250805, "z": -87.65952068019342, "time": "2025-11-22T08:50:00.000036"}, {"x": 39.13374477829177, "y": -103.7831265422662, "z": -87.66605945359208, "time": "2025-11-23T08:50:00.000036"}, {"x": 39.13617251682776, "y": -103.7885216590848, "z": -87.6725982179659, "time": "2025-11-24T08:50:00.000036"}, {"x": 39.1386002536586, "y": -103.7939167755185, "z": -87.67913697332038, "time": "2025-11-25T08:50:00.000036"}, {"x": 39.14102798884532, "y": -103.7993118915417, "z": -87.68567571966031, "time": "2025-11-26T08:50:00.000036"}, {"x": 39.14345572244709, "y": -103.804707007121, "z": -87.69221445698959, "time": "2025-11-27T08:50:00.000036"}, {"x": 39.14588345451976, "y": -103.8101021222159, "z": -87.69875318531129, "time": "2025-11-28T08:50:00.000036"}, {"x": 39.14831118511463, "y": -103.8154972367797, "z": -87.7052919046275, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.363007', '2025-11-29 08:50:48.365722');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('299:2025-10-30T08:50:11.594000+00:00:2025-11-29T08:50:11.594000+00:00:1d', '299', '2025-10-30 08:50:11.594', '2025-11-29 08:50:11.594', '1d', '{"positions": [{"x": -0.7175498187519866, "y": 0.03966183506684147, "z": 0.04194738191298856, "time": "2025-10-30T08:50:00.000036"}, {"x": -0.7184964967032954, "y": 0.01936401715896252, "z": 0.04172314507103417, "time": "2025-10-31T08:50:00.000036"}, {"x": -0.7188735070096602, "y": -0.0009491542432243006, "z": 0.04146582754525946, "time": "2025-11-01T08:50:00.000036"}, {"x": -0.7186807921247272, "y": -0.02126157408434168, "z": 0.04117564727705138, "time": "2025-11-02T08:50:00.000036"}, {"x": -0.7179187520083338, "y": -0.04155715172128588, "z": 0.04085284840772574, "time": "2025-11-03T08:50:00.000036"}, {"x": -0.7165882430083692, "y": -0.06181982415372379, "z": 0.04049770103222263, "time": "2025-11-04T08:50:00.000036"}, {"x": -0.7146905763510919, "y": -0.08203356918557127, "z": 0.04011050093115663, "time": "2025-11-05T08:50:00.000036"}, {"x": -0.712227516243885, "y": -0.1021824185053311, "z": 0.03969156928161763, "time": "2025-11-06T08:50:00.000036"}, {"x": -0.7092012775948263, "y": -0.1222504706734002, "z": 0.03924125234713857, "time": "2025-11-07T08:50:00.000036"}, {"x": -0.7056145233538318, "y": -0.1422219040046962, "z": 0.03875992114726496, "time": "2025-11-08T08:50:00.000036"}, {"x": -0.7014703614805006, "y": -0.1620809893352105, "z": 0.03824797110717948, "time": "2025-11-09T08:50:00.000036"}, {"x": -0.6967723415441448, "y": -0.1818121026613591, "z": 0.03770582168785127, "time": "2025-11-10T08:50:00.000036"}, {"x": -0.6915244509618317, "y": -0.2013997376412876, "z": 0.03713391599719737, "time": "2025-11-11T08:50:00.000036"}, {"x": -0.6857311108805944, "y": -0.2208285179475728, "z": 0.03653272038275718, "time": "2025-11-12T08:50:00.000036"}, {"x": -0.6793971717102837, "y": -0.2400832094610753, "z": 0.0359027240063975, "time": "2025-11-13T08:50:00.000036"}, {"x": -0.6725279083138238, "y": -0.2591487322959667, "z": 0.03524443840157723, "time": "2025-11-14T08:50:00.000036"}, {"x": -0.6651290148619374, "y": -0.2780101726463219, "z": 0.03455839701371499, "time": "2025-11-15T08:50:00.000036"}, {"x": -0.6572065993596673, "y": -0.296652794445013, "z": 0.03384515472421133, "time": "2025-11-16T08:50:00.000036"}, {"x": -0.6487671778522844, "y": -0.3150620508258767, "z": 0.03310528735869315, "time": "2025-11-17T08:50:00.000036"}, {"x": -0.6398176683184048, "y": -0.3332235953806255, "z": 0.03233939118004723, "time": "2025-11-18T08:50:00.000036"}, {"x": -0.6303653842583483, "y": -0.3511232932022456, "z": 0.03154808236682295, "time": "2025-11-19T08:50:00.000036"}, {"x": -0.6204180279859742, "y": -0.3687472317070098, "z": 0.03073199647758493, "time": "2025-11-20T08:50:00.000036"}, {"x": -0.6099836836323855, "y": -0.3860817312276206, "z": 0.02989178790180051, "time": "2025-11-21T08:50:00.000036"}, {"x": -0.5990708098700321, "y": -0.4031133553703721, "z": 0.02902812929784408, "time": "2025-11-22T08:50:00.000036"}, {"x": -0.5876882323658518, "y": -0.4198289211295769, "z": 0.02814171101870339, "time": "2025-11-23T08:50:00.000036"}, {"x": -0.575845135972178, "y": -0.4362155087528431, "z": 0.02723324052596995, "time": "2025-11-24T08:50:00.000036"}, {"x": -0.563551056664229, "y": -0.4522604713511237, "z": 0.02630344179269712, "time": "2025-11-25T08:50:00.000036"}, {"x": -0.5508158732330564, "y": -0.4679514442477778, "z": 0.0253530546957108, "time": "2025-11-26T08:50:00.000036"}, {"x": -0.5376497987429103, "y": -0.4832763540611927, "z": 0.02438283439795782, "time": "2025-11-27T08:50:00.000036"}, {"x": -0.5240633717620458, "y": -0.4982234275158178, "z": 0.02339355072148252, "time": "2025-11-28T08:50:00.000036"}, {"x": -0.5100674473760799, "y": -0.5127811999767482, "z": 0.02238598751162642, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.266109', '2025-11-29 08:50:48.27245');
INSERT INTO "public"."nasa_cache" ("cache_key", "body_id", "start_time", "end_time", "step", "data", "expires_at", "created_at") VALUES ('-32:2025-10-30T08:50:16.375000+00:00:2025-11-29T08:50:16.375000+00:00:1d', '-32', '2025-10-30 08:50:16.375', '2025-11-29 08:50:16.375', '1d', '{"positions": [{"x": 39.07547844161056, "y": -103.6536436150871, "z": -87.50912638965099, "time": "2025-10-30T08:50:00.000036"}, {"x": 39.07790623054861, "y": -103.659038742109, "z": -87.51566537181559, "time": "2025-10-31T08:50:00.000036"}, {"x": 39.08033401727753, "y": -103.6644338687508, "z": -87.52220434488568, "time": "2025-11-01T08:50:00.000036"}, {"x": 39.08276180180396, "y": -103.6698289949928, "z": -87.52874330886131, "time": "2025-11-02T08:50:00.000036"}, {"x": 39.08518958413331, "y": -103.6752241208169, "z": -87.53528226374259, "time": "2025-11-03T08:50:00.000036"}, {"x": 39.08761736426985, "y": -103.6806192462066, "z": -87.54182120952957, "time": "2025-11-04T08:50:00.000036"}, {"x": 39.09004514221689, "y": -103.6860143711477, "z": -87.54836014622258, "time": "2025-11-05T08:50:00.000036"}, {"x": 39.09247291797696, "y": -103.6914094956278, "z": -87.55489907382196, "time": "2025-11-06T08:50:00.000036"}, {"x": 39.09490069155191, "y": -103.6968046196371, "z": -87.56143799232818, "time": "2025-11-07T08:50:00.000036"}, {"x": 39.09732846294375, "y": -103.7021997431687, "z": -87.56797690174211, "time": "2025-11-08T08:50:00.000036"}, {"x": 39.09975623215423, "y": -103.7075948662182, "z": -87.57451580206474, "time": "2025-11-09T08:50:00.000036"}, {"x": 39.1021839991858, "y": -103.7129899887844, "z": -87.58105469329738, "time": "2025-11-10T08:50:00.000036"}, {"x": 39.10461176404208, "y": -103.7183851108693, "z": -87.5875935754418, "time": "2025-11-11T08:50:00.000036"}, {"x": 39.10703952672834, "y": -103.723780232478, "z": -87.5941324485001, "time": "2025-11-12T08:50:00.000036"}, {"x": 39.10946728725227, "y": -103.7291753536186, "z": -87.60067131247494, "time": "2025-11-13T08:50:00.000036"}, {"x": 39.11189504562464, "y": -103.7345704743022, "z": -87.60721016736949, "time": "2025-11-14T08:50:00.000036"}, {"x": 39.11432280186011, "y": -103.7399655945423, "z": -87.61374901318743, "time": "2025-11-15T08:50:00.000036"}, {"x": 39.11675055597786, "y": -103.7453607143541, "z": -87.62028784993309, "time": "2025-11-16T08:50:00.000036"}, {"x": 39.11917830800231, "y": -103.750755833754, "z": -87.6268266776113, "time": "2025-11-17T08:50:00.000036"}, {"x": 39.12160605796361, "y": -103.7561509527584, "z": -87.6333654962275, "time": "2025-11-18T08:50:00.000036"}, {"x": 39.12403380589792, "y": -103.7615460713825, "z": -87.6399043057875, "time": "2025-11-19T08:50:00.000036"}, {"x": 39.12646155184746, "y": -103.7669411896391, "z": -87.64644310629753, "time": "2025-11-20T08:50:00.000036"}, {"x": 39.1288892958602, "y": -103.7723363075372, "z": -87.65298189776402, "time": "2025-11-21T08:50:00.000036"}, {"x": 39.13131703798928, "y": -103.7777314250805, "z": -87.65952068019342, "time": "2025-11-22T08:50:00.000036"}, {"x": 39.13374477829177, "y": -103.7831265422662, "z": -87.66605945359208, "time": "2025-11-23T08:50:00.000036"}, {"x": 39.13617251682776, "y": -103.7885216590848, "z": -87.6725982179659, "time": "2025-11-24T08:50:00.000036"}, {"x": 39.1386002536586, "y": -103.7939167755185, "z": -87.67913697332038, "time": "2025-11-25T08:50:00.000036"}, {"x": 39.14102798884532, "y": -103.7993118915417, "z": -87.68567571966031, "time": "2025-11-26T08:50:00.000036"}, {"x": 39.14345572244709, "y": -103.804707007121, "z": -87.69221445698959, "time": "2025-11-27T08:50:00.000036"}, {"x": 39.14588345451976, "y": -103.8101021222159, "z": -87.69875318531129, "time": "2025-11-28T08:50:00.000036"}, {"x": 39.14831118511463, "y": -103.8154972367797, "z": -87.7052919046275, "time": "2025-11-29T08:50:00.000036"}]}', '2025-12-06 08:50:48.395832', '2025-11-29 08:50:48.398292');
COMMIT;
-- ----------------------------
-- Table structure for orbits
-- ----------------------------
DROP TABLE IF EXISTS "public"."orbits";
CREATE TABLE "public"."orbits" (
"id" int4 NOT NULL DEFAULT nextval('orbits_id_seq'::regclass),
"body_id" text COLLATE "pg_catalog"."default" NOT NULL,
"points" jsonb NOT NULL,
"num_points" int4 NOT NULL,
"period_days" float8,
"color" varchar(20) COLLATE "pg_catalog"."default",
"created_at" timestamp(6) DEFAULT now(),
"updated_at" timestamp(6) DEFAULT now()
)
;
ALTER TABLE "public"."orbits" OWNER TO "postgres";
COMMENT ON COLUMN "public"."orbits"."body_id" IS 'Foreign key to celestial_bodies.id';
COMMENT ON COLUMN "public"."orbits"."points" IS 'Array of 3D points (x,y,z in AU) defining the orbital path';
COMMENT ON COLUMN "public"."orbits"."num_points" IS 'Total number of points in the orbit';
COMMENT ON COLUMN "public"."orbits"."period_days" IS 'Orbital period in Earth days';
COMMENT ON COLUMN "public"."orbits"."color" IS 'Hex color code for rendering the orbit line';
COMMENT ON TABLE "public"."orbits" IS 'Precomputed orbital paths for celestial bodies';
-- ----------------------------
-- Records of orbits
-- ----------------------------
BEGIN;
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (1, '2000001', '[{"x": 2.689979205998869, "y": 1.001307034388306, "z": -0.463865546478344}, {"x": 2.560782340283782, "y": 1.265259880593539, "z": -0.4317078188994048}, {"x": 2.403318343109597, "y": 1.515231682918073, "z": -0.3947847798059391}, {"x": 2.218758335856416, "y": 1.748104211955918, "z": -0.3534110415446566}, {"x": 2.008609170306117, "y": 1.960797086035319, "z": -0.3079617985267387}, {"x": 1.774730821758883, "y": 2.150304416835525, "z": -0.2588749094966042}, {"x": 1.519351651838642, "y": 2.313736542451506, "z": -0.2066524920822919}, {"x": 1.245080095388396, "y": 2.448370145660464, "z": -0.1518614582056213}, {"x": 0.9549083578216307, "y": 2.55170559240339, "z": -0.09513248266751377}, {"x": 0.6522089409242974, "y": 2.621529358388679, "z": -0.0371574111788592}, {"x": 0.3407211303460428, "y": 2.655984025903985, "z": 0.02131562483598674}, {"x": 0.02452181859900089, "y": 2.653642532351669, "z": 0.07948994502966529}, {"x": -0.292018957051099, "y": 2.613582099703157, "z": 0.1365308597991131}, {"x": -0.6043003940738512, "y": 2.535456665658901, "z": 0.1915795272381484}, {"x": -0.9075744134952963, "y": 2.419560659667939, "z": 0.2437701818297048}, {"x": -1.197045859784966, "y": 2.266877125898694, "z": 0.2922500264832073}, {"x": -1.467987442525324, "y": 2.079107377755656, "z": 0.3362014443635127}, {"x": -1.715866965608364, "y": 1.858675286707601, "z": 0.3748655644184384}, {"x": -1.936477361151453, "y": 1.608702250086255, "z": 0.4075655825727066}, {"x": -2.126063574152046, "y": 1.33295369051726, "z": 0.4337287174574401}, {"x": -2.281440084321426, "y": 1.035755058264302, "z": 0.4529052211654374}, {"x": -2.400087671349532, "y": 0.7218806341086165, "z": 0.4647827205682283}, {"x": -2.48022428480222, "y": 0.3964234450631168, "z": 0.4691951703513015}, {"x": -2.520846539477837, "y": 0.06465160069319906, "z": 0.466125725255511}, {"x": -2.521736205171835, "y": -0.2681389014332545, "z": 0.4557032009132088}, {"x": -2.483435124115383, "y": -0.5967633126928659, "z": 0.4381930647287385}, {"x": -2.407193955976818, "y": -0.916274251061954, "z": 0.413983835268632}, {"x": -2.294897532202732, "y": -1.222068043332619, "z": 0.3835699390345426}, {"x": -2.148976079716596, "y": -1.509966261476765, "z": 0.3475327543246953}, {"x": -1.972309879944687, "y": -1.776274902353967, "z": 0.3065209443080602}, {"x": -1.768130278969862, "y": -2.01782079657075, "z": 0.2612310403930753}, {"x": -1.539924369324005, "y": -2.23196598090336, "z": 0.2123894927086133}, {"x": -1.291347286434941, "y": -2.416606074693908, "z": 0.1607365145549706}, {"x": -1.026142030588431, "y": -2.570153981580915, "z": 0.1070119846017182}, {"x": -0.7480713191909308, "y": -2.691511603246838, "z": 0.05194393167386877}, {"x": -0.4608618826358957, "y": -2.780036482666044, "z": -0.003760736653387576}, {"x": -0.1681584709978763, "y": -2.835504192048492, "z": -0.05942346929593294}, {"x": 0.1265106525674414, "y": -2.858068465120273, "z": -0.1143992073510381}, {"x": 0.419759171016846, "y": -2.848224349861954, "z": -0.1680800690880462}, {"x": 0.7083628836829061, "y": -2.806772687881533, "z": -0.2198978542447801}, {"x": 0.9892729735581778, "y": -2.734785979023525, "z": -0.2693253375904212}, {"x": 1.259624573541154, "y": -2.633579022081932, "z": -0.3158769483423737}, {"x": 1.516743104667039, "y": -2.504681606938668, "z": -0.3591089385143801}, {"x": 1.758146240081558, "y": -2.349813567689964, "z": -0.3986189602039018}, {"x": 1.981544063631357, "y": -2.170865328455625, "z": -0.4340456135455357}, {"x": 2.184839595403718, "y": -1.969880862921825, "z": -0.465067966195102}, {"x": 2.36612785527201, "y": -1.749043081131589, "z": -0.4914049475806764}, {"x": 2.523696318475849, "y": -1.510663429849241, "z": -0.5128151159506965}, {"x": 2.656027570415348, "y": -1.257171692561406, "z": -0.5290966337157901}, {"x": 2.761801264800385, "y": -0.9911063795344369, "z": -0.5400872986226036}, {"x": 2.839897905782138, "y": -0.7151077099322903, "z": -0.5456650705475198}, {"x": 2.889404762892049, "y": -0.431909842144061, "z": -0.5457488811048662}, {"x": 2.90962152104824, "y": -0.1443335185148771, "z": -0.5402996075514999}, {"x": 2.900069176699778, "y": 0.144719459030322, "z": -0.5293216509781222}, {"x": 2.860502372470377, "y": 0.4322740728589624, "z": -0.5128648412725064}, {"x": 2.790922482331297, "y": 0.715291836895678, "z": -0.4910265280210243}, {"x": 2.691594096712889, "y": 0.990682019845309, "z": -0.4639541950491448}, {"x": 2.56306361020972, "y": 1.255318071381362, "z": -0.4318482050700247}, {"x": 2.406176854512628, "y": 1.50605780551993, "z": -0.3949644933316839}, {"x": 2.222098445828475, "y": 1.739766965819033, "z": -0.3536174472832737}, {"x": 2.012331280399416, "y": 1.953349606942559, "z": -0.3081824985086582}, {"x": 1.778733414211895, "y": 2.143783867326167, "z": -0.2590982142115719}, {"x": 1.52353442762536, "y": 2.308163841924633, "z": -0.2068679327571359}, {"x": 1.249347649814466, "y": 2.443750894823415, "z": -0.1520602105396674}, {"x": 0.9591739396560529, "y": 2.548031854283424, "z": -0.09530772922625111}, {"x": 0.6563978755111276, "y": 2.618783569086107, "z": -0.03730453543992532}, {"x": 0.3447719071859132, "y": 2.6541446499774, "z": 0.02119919531021697}, {"x": 0.02838459225046096, "y": 2.652688964337548, "z": 0.07940516544962803}, {"x": -0.288385558269535, "y": 2.613498477905614, "z": 0.1364777652553105}, {"x": -0.6009339359881118, "y": 2.536233885025802, "z": 0.1915581984022636}, {"x": -0.9045130835300941, "y": 2.421195456701559, "z": 0.2437817230136641}, {"x": -1.194331602723506, "y": 2.269370023696645, "z": 0.2922974939807186}, {"x": -1.465668782022602, "y": 2.082460252255705, "z": 0.3362907200540373}, {"x": -1.714001229747875, "y": 1.862887766359749, "z": 0.3750059390272862}, {"x": -1.93513228432923, "y": 1.613767809947386, "z": 0.4077700056337989}, {"x": -2.12531880446683, "y": 1.33885496690611, "z": 0.4340136701881815}, {"x": -2.281386755821754, "y": 1.042457503621457, "z": 0.4532899631910418}, {"x": -2.400825034054288, "y": 0.7293266019482969, "z": 0.4652880357833297}, {"x": -2.481853984123363, "y": 0.4045280889515475, "z": 0.4698418113877745}, {"x": -2.523464292964936, "y": 0.07330119810144903, "z": 0.4669325843810348}, {"x": -2.525422765305063, "y": -0.2590845310904014, "z": 0.4566855999879696}, {"x": -2.488249261857329, "y": -0.5874651720434959, "z": 0.4393614596247086}, {"x": -2.413167447724881, "y": -0.9069073363035656, "z": 0.4153428978775089}, {"x": -2.302032514040328, "y": -1.212813839617263, "z": 0.3851181546106451}, {"x": -2.157244915471997, "y": -1.501005994690508, "z": 0.3492625093573859}, {"x": -1.981655397058739, "y": -1.76778400752493, "z": 0.3084188460617273}, {"x": -1.778466435114509, "y": -2.00996310410175, "z": 0.2632785138700792}, {"x": -1.5511385111499, "y": -2.2248878152432, "z": 0.2145636277147197}, {"x": -1.303303362693504, "y": -2.410430754200361, "z": 0.1630110072832263}, {"x": -1.038685695462756, "y": -2.564976754616102, "z": 0.1093582666403433}, {"x": -0.7610372538539057, "y": -2.68739680216942, "z": 0.05433239417638971}, {"x": -0.4740808415961639, "y": -2.777017512935842, "z": -0.001359655750055408}, {"x": -0.1814633052914749, "y": -2.833585354173735, "z": -0.05703830490072759}, {"x": 0.1132801810132825, "y": -2.857228457384732, "z": -0.112056658682479}, {"x": 0.4067539795819414, "y": -2.848419957150496, "z": -0.1658044514113785}, {"x": 0.6957230850625742, "y": -2.807941196678603, "z": -0.2177106311089934}, {"x": 0.9771259072165278, "y": -2.736847361840569, "z": -0.2672447098300045}, {"x": 1.248083095194317, "y": -2.636438194773877, "z": -0.3139175628072872}, {"x": 1.505903620955187, "y": -2.508230978879285, "z": -0.3572816323939175}, {"x": 1.74808694789044, "y": -2.35393716779454, "z": -0.396930645019753}, {"x": 1.972325288473102, "y": -2.175443386786748, "z": -0.4324993904400768}, {"x": 2.176505533150756, "y": -1.974793421482081, "z": -0.4636633505689491}, {"x": 2.358708855805261, "y": -1.754172951080913, "z": -0.4901382069723987}, {"x": 2.517211763149448, "y": -1.515897660630236, "z": -0.5116796889683671}, {"x": 2.650487810419757, "y": -1.26240187452718, "z": -0.5280835020367449}, {"x": 2.757208594783377, "y": -0.9962298931251311, "z": -0.5391854150984472}, {"x": 2.836248207724215, "y": -0.7200296404280836, "z": -0.5448619073384106}, {"x": 2.886689927465909, "y": -0.4365450344800522, "z": -0.5450310523162899}, {"x": 2.907833298363825, "y": -0.1486088746749289, "z": -0.5396537034567275}, {"x": 2.899204718421277, "y": 0.1408646090881654, "z": -0.5287352466142211}, {"x": 2.860569278531757, "y": 0.4288903176632177, "z": -0.5123274849433416}, {"x": 2.791942318679804, "y": 0.7124234078112905, "z": -0.4905307287942769}, {"x": 2.693604161216972, "y": 0.9883720436767621, "z": -0.4634962988081784}, {"x": 2.566116078902204, "y": 1.253614381016397, "z": -0.4314289887411309}, {"x": 2.410336553282683, "y": 1.505017759713776, "z": -0.3945895413868615}, {"x": 2.227440352747997, "y": 1.739462635602639, "z": -0.3532971742713903}, {"x": 2.018936832126873, "y": 1.953873848476711, "z": -0.3079316227822684}, {"x": 1.786685554019491, "y": 2.145256492807451, "z": -0.2589347331289735}, {"x": 1.532910587552277, "y": 2.310738371411363, "z": -0.2068114919722174}, {"x": 1.260209128310604, "y": 2.447620242297653, "z": -0.1521298425550539}, {"x": 0.971552865418113, "y": 2.553430270279558, "z": -0.09551924982469259}, {"x": 0.670283068687173, "y": 2.625984532601716, "z": -0.0376677193524088}, {"x": 0.3600944029611617, "y": 2.663453900826072, "z": 0.02068346703263492}, {"x": 0.04500538199900101, "y": 2.66443242378101, "z": 0.07874737108715506}, {"x": -0.2706846532220133, "y": 2.628006989534097, "z": 0.1357016935152307}, {"x": -0.5824566367620349, "y": 2.553824941440271, "z": 0.1907022237131956}, {"x": -0.8856506356206151, "y": 2.442151762399817, "z": 0.2428990469587854}, {"x": -1.175559644375791, "y": 2.293916446100092, "z": 0.2914552769568723}, {"x": -1.44753859395034, "y": 2.110739591037816, "z": 0.3355679970434349}, {"x": -1.697122918884326, "y": 1.894937057746434, "z": 0.3744901546599381}, {"x": -1.920149959130564, "y": 1.649499168198915, "z": 0.4075524173089903}, {"x": -2.112879827864312, "y": 1.378043526963457, "z": 0.4341839614827508}, {"x": -2.27210674049517, "y": 1.084738880172657, "z": 0.4539304512958153}, {"x": -2.39525285483982, "y": 0.7742056562452064, "z": 0.4664681420549258}, {"x": -2.480441290216642, "y": 0.4513972190239717, "z": 0.4716133341475301}, {"x": -2.52654116470928, "y": 0.1214659535582999, "z": 0.4693261461924213}, {"x": -2.533181508458879, "y": -0.2103745196444145, "z": 0.4597086399080835}, {"x": -2.500737105358232, "y": -0.5389835740452954, "z": 0.4429977947145657}, {"x": -2.430286615144212, "y": -0.8594186590831766, "z": 0.4195537142434612}, {"x": -2.323547918399546, "y": -1.167042145352132, "z": 0.3898443853407639}, {"x": -2.182799378699961, "y": -1.457607542585201, "z": 0.3544283104705752}, {"x": -2.01079023590843, "y": -1.727325141109632, "z": 0.3139357679063248}, {"x": -1.810646363242161, "y": -1.972904423410705, "z": 0.2690500877518911}, {"x": -1.585778677590176, "y": -2.19157668546064, "z": 0.2204899345862351}, {"x": -1.339794765344412, "y": -2.381101243643641, "z": 0.1689928533129121}, {"x": -1.076417595868981, "y": -2.539754937069417, "z": 0.1153008212788664}, {"x": -0.7994157070695082, "y": -2.666310370968716, "z": 0.06014808201171915}, {"x": -0.5125426679611911, "y": -2.760006995893092, "z": 0.004250960524355558}, {"x": -0.2194872827612732, "y": -2.820515445573828, "z": -0.05170009353161296}, {"x": 0.07616413463902584, "y": -2.847900474989767, "z": -0.1070464507865098}, {"x": 0.3709582504838742, "y": -2.842584874192249, "z": -0.1611658263036531}, {"x": 0.6615980291252874, "y": -2.805313096085698, "z": -0.2134753128842292}, {"x": 0.9449586075894714, "y": -2.737117858811049, "z": -0.2634332616820122}, {"x": 1.218100022788748, "y": -2.639289594524189, "z": -0.3105405154034279}, {"x": 1.478275602903913, "y": -2.51334674671185, "z": -0.3543408256344014}, {"x": 1.722935557726162, "y": -2.361010293061172, "z": -0.3944207798526431}, {"x": 1.94972982486857, "y": -2.184181859423729, "z": -0.4304096276692386}, {"x": 2.15650892321495, "y": -1.984923576153088, "z": -0.4619787786568937}, {"x": 2.341323165876968, "y": -1.76544264989117, "z": -0.4888413068654022}, {"x": 2.502424230323438, "y": -1.5280785260784, "z": -0.5107517474534027}, {"x": 2.638266931288237, "y": -1.275290185250143, "z": -0.5275058851306735}, {"x": 2.74751084616218, "y": -1.009646348495382, "z": -0.5389408068508509}, {"x": 2.829024635642686, "y": -0.7338163896199792, "z": -0.544935336627854}, {"x": 2.881890520619036, "y": -0.4505604219441723, "z": -0.5454105253238801}, {"x": 2.905409316915916, "y": -0.1627217834268117, "z": -0.5403305220838804}, {"x": 2.899109029865669, "y": 0.1267806735804572, "z": -0.5297038975568261}, {"x": 2.862754689276975, "y": 0.4149621790376815, "z": -0.5135850997359711}, {"x": 2.796360087902231, "y": 0.6987813282446879, "z": -0.4920763442927321}, {"x": 2.70020313538116, "y": 0.9751526639134055, "z": -0.4653298578444685}]', 169, 5040, '#9E9E9E', '2025-11-29 08:12:44.747708', '2025-11-29 08:20:09.080853');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (10, '999', '[{"x": 10.29713934174942, "y": 45.14571852860789, "z": -7.813887222999838}, {"x": 10.1025511118487, "y": 45.16405877759807, "z": -7.75941045758939}, {"x": 9.907776993598343, "y": 45.18142584903913, "z": -7.704757622849105}, {"x": 9.71279984333164, "y": 45.19783545521352, "z": -7.649930278558933}, {"x": 9.51760449460789, "y": 45.21326834608302, "z": -7.594929117766404}, {"x": 9.322199010392106, "y": 45.22772573151097, "z": -7.539754005642119}, {"x": 9.1265685071232, "y": 45.24121203724002, "z": -7.484402803463595}, {"x": 8.93070944281111, "y": 45.2537243813757, "z": -7.428874538906507}, {"x": 8.73460485624776, "y": 45.26526578650119, "z": -7.373167650532889}, {"x": 8.538251866300849, "y": 45.27581476275528, "z": -7.317282085978921}, {"x": 8.341660401260746, "y": 45.28537942148971, "z": -7.261219545777017}, {"x": 8.14480795680281, "y": 45.29395609569805, "z": -7.204981742090194}, {"x": 7.947694604707944, "y": 45.3015221803506, "z": -7.148572353996497}, {"x": 7.75031662628046, "y": 45.30806928768759, "z": -7.091993801510446}, {"x": 7.552673622982724, "y": 45.31357601980464, "z": -7.035248126719194}, {"x": 7.354766073923237, "y": 45.31804057698567, "z": -6.978336578235911}, {"x": 7.156573561011288, "y": 45.32144029065299, "z": -6.921258077728113}, {"x": 6.958112023250551, "y": 45.32374583910119, "z": -6.864012091776231}, {"x": 6.759387169377861, "y": 45.32495765605716, "z": -6.806596795358548}, {"x": 6.560398963126478, "y": 45.32505598711187, "z": -6.749011374400704}, {"x": 6.361159649936403, "y": 45.32403125419503, "z": -6.691256532197715}, {"x": 6.161673717028545, "y": 45.32186187352781, "z": -6.633333242363502}, {"x": 5.961973010645357, "y": 45.31853368552937, "z": -6.575245020906928}, {"x": 5.762062747849142, "y": 45.31405269183962, "z": -6.516994873374301}, {"x": 5.561947959817276, "y": 45.30839148436318, "z": -6.458586194999278}, {"x": 5.361655459960279, "y": 45.30154002339616, "z": -6.400021972191974}, {"x": 5.161195503715036, "y": 45.29349120570277, "z": -6.341302914325111}, {"x": 4.96059016114946, "y": 45.2842403042233, "z": -6.282429857681181}, {"x": 4.759841680478034, "y": 45.27379168976045, "z": -6.223401584602851}, {"x": 4.558966370860865, "y": 45.26212471825942, "z": -6.164217136232086}, {"x": 4.357996961064039, "y": 45.24925240843501, "z": -6.104876379055899}, {"x": 4.156934681749971, "y": 45.23518390462426, "z": -6.045379164183717}, {"x": 3.955798240888674, "y": 45.21991504660904, "z": -5.985728030695417}, {"x": 3.754598987628028, "y": 45.20345233600913, "z": -5.925925488382045}, {"x": 3.553356792867675, "y": 45.18578938128392, "z": -5.865975166816612}, {"x": 3.352089690381852, "y": 45.16694633152293, "z": -5.805880908412853}, {"x": 3.150787190241391, "y": 45.14692294374316, "z": -5.745644688605327}, {"x": 2.949469172316214, "y": 45.12570954686581, "z": -5.685268610932527}, {"x": 2.748144622493542, "y": 45.10332309783637, "z": -5.62475231368736}, {"x": 2.546816039291637, "y": 45.07976563844272, "z": -5.564095025318465}, {"x": 2.345489197483015, "y": 45.05505185004019, "z": -5.503296006314454}, {"x": 2.144158495929463, "y": 45.02917874193374, "z": -5.44235394342923}, {"x": 1.942849410908031, "y": 45.00214964379027, "z": -5.381269911651865}, {"x": 1.741560942299531, "y": 44.97399126772941, "z": -5.320045093874042}, {"x": 1.540287929737374, "y": 44.94469800006412, "z": -5.258682364559458}, {"x": 1.339041275253122, "y": 44.91427595827822, "z": -5.197185494800465}, {"x": 1.13781835993555, "y": 44.88272649682659, "z": -5.135557153401276}, {"x": 0.9366292301471945, "y": 44.85005569785766, "z": -5.073800575762939}, {"x": 0.7354570884095354, "y": 44.81627649891249, "z": -5.01191657735474}, {"x": 0.5342964806858247, "y": 44.78137041895195, "z": -4.949905281050307}, {"x": 0.3331604215912073, "y": 44.74534793694166, "z": -4.887766105462275}, {"x": 0.1320344555805398, "y": 44.70821752832615, "z": -4.825497163391327}, {"x": -0.06908143844330202, "y": 44.66997829038207, "z": -4.763098353980263}, {"x": -0.2701980777836688, "y": 44.6306347178224, "z": -4.700569376758321}, {"x": -0.471311264414727, "y": 44.59017349618465, "z": -4.637911835621582}, {"x": -0.6724149045910792, "y": 44.54861035966756, "z": -4.575128727911966}, {"x": -0.8735328389540638, "y": 44.50593990065013, "z": -4.512222735696318}, {"x": -1.074660891598112, "y": 44.46214277597974, "z": -4.449197859789352}, {"x": -1.275802894316332, "y": 44.41721806581727, "z": -4.386056122940076}, {"x": -1.476963134667037, "y": 44.37115141720555, "z": -4.322798968851846}, {"x": -1.678146923486328, "y": 44.32394361840254, "z": -4.259426790156443}, {"x": -1.879373231849918, "y": 44.27557237283204, "z": -4.195938082639491}, {"x": -2.080625058212944, "y": 44.22601799081061, "z": -4.132332406457464}, {"x": -2.281905395818423, "y": 44.1752860177726, "z": -4.068608545864425}, {"x": -2.483218901189347, "y": 44.12335437232903, "z": -4.004766998959151}, {"x": -2.684555457317004, "y": 44.07021150017223, "z": -3.940809805219718}, {"x": -2.885911208777708, "y": 44.01583560100079, "z": -3.876739283794159}, {"x": -3.087261370961524, "y": 43.96021442987529, "z": -3.812559832456503}, {"x": -3.288609375467531, "y": 43.90334607108354, "z": -3.748274627026268}, {"x": -3.489948737262437, "y": 43.84519560525843, "z": -3.683886836504232}, {"x": -3.691252767340163, "y": 43.78575318349108, "z": -3.61939864130042}, {"x": -3.892515098462861, "y": 43.72500934220562, "z": -3.554810060203125}, {"x": -4.093715677558196, "y": 43.66295400887852, "z": -3.490121545630831}, {"x": -4.294849187193652, "y": 43.59958329587988, "z": -3.425331976168288}, {"x": -4.495890588544318, "y": 43.53487522899623, "z": -3.360441335677017}, {"x": -4.696807614119893, "y": 43.46884401266215, "z": -3.295450766716686}, {"x": -4.897598144698413, "y": 43.40149047395983, "z": -3.230361798972495}, {"x": -5.098236452347358, "y": 43.33280481274195, "z": -3.165178514162239}, {"x": -5.298705073994962, "y": 43.26279146136763, "z": -3.099904433251397}, {"x": -5.498981184091337, "y": 43.19144490755178, "z": -3.034543781605324}, {"x": -5.699048021163165, "y": 43.11878190408734, "z": -2.969100205762619}, {"x": -5.898909292016077, "y": 43.04479545535049, "z": -2.903575242425236}, {"x": -6.098535370562679, "y": 42.96947939527823, "z": -2.837970466846454}, {"x": -6.297915510306123, "y": 42.89285475736599, "z": -2.772285186781056}, {"x": -6.49704365788107, "y": 42.81492283619903, "z": -2.70651903704787}, {"x": -6.69590811874277, "y": 42.73569713981119, "z": -2.640672114195068}, {"x": -6.894504418123272, "y": 42.65517576902389, "z": -2.57474461146733}, {"x": -7.092803151342327, "y": 42.57336911145784, "z": -2.508739334887372}, {"x": -7.290806547088748, "y": 42.49030191505167, "z": -2.442659007722489}, {"x": -7.48851268684144, "y": 42.40596511210153, "z": -2.376507796287212}, {"x": -7.685904102888878, "y": 42.32036809226106, "z": -2.310289942678256}, {"x": -7.882980664667346, "y": 42.23351671800944, "z": -2.24400813015268}, {"x": -8.079732446981732, "y": 42.14542008499262, "z": -2.1776651631371}, {"x": -8.276173116511504, "y": 42.05608925933628, "z": -2.11126125976412}, {"x": -8.472297810137652, "y": 41.96551011969288, "z": -2.044796404284494}, {"x": -8.668091261623406, "y": 41.87370293799511, "z": -1.978270223638745}, {"x": -8.863567191156687, "y": 41.78067772981948, "z": -1.911681834495913}, {"x": -9.058720035213783, "y": 41.68643514470828, "z": -1.845032627706306}, {"x": -9.253553706885826, "y": 41.59098278652638, "z": -1.778323970540047}, {"x": -9.448059348937527, "y": 41.49431593263612, "z": -1.711559214365298}, {"x": -9.642234642301915, "y": 41.39645506058002, "z": -1.644742468800121}, {"x": -9.83610143704771, "y": 41.29739312340197, "z": -1.577877061309057}, {"x": -10.02964979546002, "y": 41.19711713004612, "z": -1.510966977404648}, {"x": -10.22288438339293, "y": 41.0956353081035, "z": -1.444013726091658}, {"x": -10.41581190021516, "y": 40.99293954816795, "z": -1.377018316349101}, {"x": -10.60843925093018, "y": 40.88903414568932, "z": -1.309980751366825}, {"x": -10.80078066347814, "y": 40.7839013582776, "z": -1.242899817085565}, {"x": -10.9928189689588, "y": 40.67753451420414, "z": -1.175775931497843}, {"x": -11.18456527857127, "y": 40.56994425620693, "z": -1.108609175980571}, {"x": -11.37602640961603, "y": 40.46110872478285, "z": -1.041401774364538}, {"x": -11.56719388369503, "y": 40.35101942299253, "z": -0.9741571932216953}, {"x": -11.75806757813985, "y": 40.23965922585732, "z": -0.9068789197705708}, {"x": -11.94863275093309, "y": 40.12701923740733, "z": -0.8395718470958639}, {"x": -12.13890137854923, "y": 40.0130921079814, "z": -0.7722389553617373}, {"x": -12.32886667236799, "y": 39.89784097464453, "z": -0.7048829694274555}, {"x": -12.51850702392636, "y": 39.78126037373433, "z": -0.6375053210844779}, {"x": -12.70782401250686, "y": 39.66333861633881, "z": -0.5701057089188301}, {"x": -12.89680138255503, "y": 39.54406049214119, "z": -0.5026847606924296}, {"x": -13.08543276611656, "y": 39.42341554444361, "z": -0.4352421264882055}, {"x": -13.27369001006735, "y": 39.30138173932533, "z": -0.3677793068073712}, {"x": -13.46154659204721, "y": 39.17797069749984, "z": -0.3002990599623613}, {"x": -13.64900066501209, "y": 39.05317179433013, "z": -0.2328046549982683}, {"x": -13.83602091651923, "y": 38.92696922562978, "z": -0.165301476628949}, {"x": -14.0225874372631, "y": 38.79936511279839, "z": -0.09779369025309853}, {"x": -14.20867778060734, "y": 38.67035146939374, "z": -0.0302857388719287}, {"x": -14.39427590495745, "y": 38.53993816664936, "z": 0.03721912715971219}, {"x": -14.57937714113218, "y": 38.40811123965769, "z": 0.104719689581941}, {"x": -14.76394393967328, "y": 38.27486833926079, "z": 0.1722144936261189}, {"x": -14.94796536181788, "y": 38.14023056884909, "z": 0.2397038824642475}, {"x": -15.13142986908255, "y": 38.00419489181841, "z": 0.307187053928671}, {"x": -15.31431779466915, "y": 37.8667724952954, "z": 0.3746623916362729}, {"x": -15.49661538077518, "y": 37.72796286655492, "z": 0.4421277223456683}, {"x": -15.67829165826853, "y": 37.58778011852026, "z": 0.5095783746066199}, {"x": -15.85934828295047, "y": 37.44624325190654, "z": 0.5770101977403981}, {"x": -16.03977387581979, "y": 37.30333981477605, "z": 0.6444180271816873}, {"x": -16.21954496764923, "y": 37.15908350078488, "z": 0.7117974443149762}, {"x": -16.39865965732078, "y": 37.01348252451081, "z": 0.7791458556611208}, {"x": -16.57710568574934, "y": 36.86654624092545, "z": 0.8464607319038409}, {"x": -16.75488971792677, "y": 36.71828380148781, "z": 0.9137419516707259}, {"x": -16.93199597504951, "y": 36.56868728951606, "z": 0.9809889511243782}, {"x": -17.10840830601236, "y": 36.41778414122774, "z": 1.048201081819142}, {"x": -17.28413709133162, "y": 36.26558228738085, "z": 1.115377459877315}, {"x": -17.4591682059147, "y": 36.1120831543234, "z": 1.182514690828014}, {"x": -17.63349803918057, "y": 35.9572980259005, "z": 1.249609498965882}, {"x": -17.80711427895249, "y": 35.80122856245306, "z": 1.31665684184451}, {"x": -17.98001569419532, "y": 35.64389619004526, "z": 1.383651719278334}, {"x": -18.15221728240863, "y": 35.48529217885986, "z": 1.450590364142881}, {"x": -18.32370136687502, "y": 35.32541201172388, "z": 1.517468880990913}, {"x": -18.49447276674919, "y": 35.1642716880854, "z": 1.584286027203}, {"x": -18.66453616123603, "y": 35.00186683258521, "z": 1.651040674681266}, {"x": -18.83389404154683, "y": 34.8382051862429, "z": 1.717732402935167}, {"x": -19.00255186713539, "y": 34.67327595707945, "z": 1.784361201925355}, {"x": -19.17049119753926, "y": 34.50708510506001, "z": 1.850924953413279}, {"x": -19.33772634023263, "y": 34.33964620513293, "z": 1.917421619240403}, {"x": -19.50426002459032, "y": 34.17093962689729, "z": 1.983846915816729}, {"x": -19.67008197074257, "y": 34.00096440395226, "z": 2.050195910154253}, {"x": -19.83519475210428, "y": 33.82971094216656, "z": 2.116464068287067}, {"x": -19.99959017434021, "y": 33.65717502978113, "z": 2.182646171380172}, {"x": -20.16328324273194, "y": 33.48334828273563, "z": 2.248739429067475}, {"x": -20.32626416402237, "y": 33.30819943193712, "z": 2.314741310278482}, {"x": -20.48851730119626, "y": 33.13173202282838, "z": 2.380650581045929}, {"x": -20.65005047995863, "y": 32.95393436945132, "z": 2.446467062262773}, {"x": -20.81084898420487, "y": 32.77479053712145, "z": 2.512189100163706}, {"x": -20.97090561975233, "y": 32.59428934082907, "z": 2.577815475738025}, {"x": -21.13019321350228, "y": 32.41241218105289, "z": 2.643342619218997}, {"x": -21.28869294652213, "y": 32.22916767235233, "z": 2.70876591236394}, {"x": -21.44640259812088, "y": 32.04453560353436, "z": 2.774080381929833}, {"x": -21.60328663986294, "y": 31.85849818048426, "z": 2.83927959086185}, {"x": -21.75932629759644, "y": 31.67105696879484, "z": 2.904358962278896}, {"x": -21.91450039244438, "y": 31.48220060083221, "z": 2.969313933666473}, {"x": -22.0687917416249, "y": 31.29193264533853, "z": 3.034141475589954}, {"x": -22.22218615473674, "y": 31.10023528770598, "z": 3.098840173905463}, {"x": -22.37464043517173, "y": 30.90711127144446, "z": 3.163407946358241}, {"x": -22.52614310089972, "y": 30.71257922242314, "z": 3.227843889642324}, {"x": -22.67667419832834, "y": 30.51663145560176, "z": 3.292145212847004}, {"x": -22.82620442504753, "y": 30.31927871244469, "z": 3.356308164911551}, {"x": -22.97471190303058, "y": 30.12052326946628, "z": 3.420328254961233}, {"x": -23.12216407820281, "y": 29.92038134908652, "z": 3.484198935003109}, {"x": -23.26855863677096, "y": 29.71886642461471, "z": 3.547914782157663}, {"x": -23.41387229050146, "y": 29.51596644092096, "z": 3.611469831110401}, {"x": -23.55807629292606, "y": 29.31170228253558, "z": 3.674859534081396}, {"x": -23.70116590270468, "y": 29.1060843250027, "z": 3.738081149424378}, {"x": -23.84312278716175, "y": 28.89912332833234, "z": 3.801131904562574}, {"x": -23.98394319426581, "y": 28.69083021624544, "z": 3.864010972509693}, {"x": -24.12360081986937, "y": 28.48120700679657, "z": 3.926716313221762}, {"x": -24.26207871137352, "y": 28.27028777209029, "z": 3.989245425396621}, {"x": -24.39938081365956, "y": 28.05807911104527, "z": 4.051595027960894}, {"x": -24.53548250060786, "y": 27.84458679435611, "z": 4.11375941971588}, {"x": -24.67037368049104, "y": 27.6298292823989, "z": 4.175733380762503}, {"x": -24.80403933207415, "y": 27.41381496156834, "z": 4.237510362315935}, {"x": -24.93647645006157, "y": 27.19656706483492, "z": 4.299084689060891}, {"x": -25.06768986876299, "y": 26.97807959970192, "z": 4.360452213282463}, {"x": -25.19765446663039, "y": 26.75836135932421, "z": 4.421608952675043}, {"x": -25.32637505479391, "y": 26.53743682639164, "z": 4.482553420978135}, {"x": -25.45385083772858, "y": 26.31530663258444, "z": 4.54328362380067}, {"x": -25.58007647284056, "y": 26.09198552513681, "z": 4.603797845608902}, {"x": -25.70504828342676, "y": 25.86747408488515, "z": 4.664094011206564}, {"x": -25.82874708183251, "y": 25.64179136034489, "z": 4.724167695209564}, {"x": -25.95118672275754, "y": 25.41495450508941, "z": 4.784014561452412}, {"x": -26.07236201862411, "y": 25.186950820927, "z": 4.843628243031436}, {"x": -26.19226021689267, "y": 24.95779280286249, "z": 4.903002521098406}, {"x": -26.31088631347497, "y": 24.72748155074024, "z": 4.96213202882647}, {"x": -26.42823501312767, "y": 24.49602096076132, "z": 5.021011329228469}, {"x": -26.54431975465067, "y": 24.26340855026196, "z": 5.079637639973657}, {"x": -26.6591268462058, "y": 24.02962760238422, "z": 5.138008167083203}, {"x": -26.77264741570095, "y": 23.79469564245124, "z": 5.196121167982842}, {"x": -26.8848930717432, "y": 23.55860593877632, "z": 5.253975152975752}, {"x": -26.99584892110219, "y": 23.32134988942762, "z": 5.311566710177447}, {"x": -27.10550904108454, "y": 23.08292493110289, "z": 5.368892527054534}, {"x": -27.21385222675621, "y": 22.84332180316881, "z": 5.425946788708074}, {"x": -27.32086945906974, "y": 22.60255038458042, "z": 5.48272315763496}, {"x": -27.42655959861959, "y": 22.3605883926584, "z": 5.53921531621657}, {"x": -27.53088807363366, "y": 22.11742465361036, "z": 5.595416233553473}, {"x": -27.63384383276187, "y": 21.87306467779169, "z": 5.651321237744674}, {"x": -27.73541015800111, "y": 21.62749678682759, "z": 5.706925737897928}, {"x": -27.83557074221055, "y": 21.38072325246671, "z": 5.76222671800546}, {"x": -27.93430651376609, "y": 21.13272883044979, "z": 5.817222102651485}, {"x": -28.03157584824478, "y": 20.88352343349104, "z": 5.871908614102986}, {"x": -28.12736986624606, "y": 20.63312288291622, "z": 5.926283544444216}, {"x": -28.22166221684959, "y": 20.38151741253492, "z": 5.980341782323166}, {"x": -28.31441835739244, "y": 20.12872110926193, "z": 6.034077403542236}, {"x": -28.40561444441579, "y": 19.87474025423013, "z": 6.0874838488992}, {"x": -28.49521916375584, "y": 19.61959258179418, "z": 6.140553180922657}, {"x": -28.58322665855769, "y": 19.36328855960252, "z": 6.193279226037038}, {"x": -28.66960461272524, "y": 19.10582167879433, "z": 6.245655648601772}, {"x": -28.75432409400799, "y": 18.84722188520372, "z": 6.297677937522884}, {"x": -28.83737896273258, "y": 18.58750174035638, "z": 6.349343054048601}, {"x": -28.91874490785026, "y": 18.32667575964695, "z": 6.400647606071228}, {"x": -28.99840962932851, "y": 18.06476085285914, "z": 6.451589529051994}, {"x": -29.07634147875448, "y": 17.80177091957152, "z": 6.502164841912923}, {"x": -29.15252513976648, "y": 17.53774558910834, "z": 6.552368928925753}, {"x": -29.22695864822879, "y": 17.27269212463454, "z": 6.602196161505351}, {"x": -29.2996099935658, "y": 17.00662477495436, "z": 6.651638925031293}, {"x": -29.37046807100799, "y": 16.73957119249585, "z": 6.700690644485392}, {"x": -29.43951811011591, "y": 16.47154629121787, "z": 6.749343952766647}, {"x": -29.50675571947617, "y": 16.20257684263324, "z": 6.797593078409752}, {"x": -29.57217711914308, "y": 15.9326642295674, "z": 6.845433820589689}, {"x": -29.6357546625458, "y": 15.66183306223731, "z": 6.892862162266234}, {"x": -29.69749521126389, "y": 15.39011553433118, "z": 6.939876145470863}, {"x": -29.75739268945307, "y": 15.11751867793866, "z": 6.986472584220529}, {"x": -29.81543562904741, "y": 14.84406723705975, "z": 7.032648167490031}, {"x": -29.87161592827129, "y": 14.56977493680705, "z": 7.078398642269493}, {"x": -29.92591679205477, "y": 14.29467213142008, "z": 7.123717492015793}, {"x": -29.97835130797232, "y": 14.01877970657984, "z": 7.168598580901253}, {"x": -30.02890721188443, "y": 13.74209543094118, "z": 7.21303420711166}, {"x": -30.07757281829602, "y": 13.46464767473949, "z": 7.257017673722702}, {"x": -30.1243567999634, "y": 13.18644820322379, "z": 7.300543485384306}, {"x": -30.16925528192385, "y": 12.90751068563349, "z": 7.343606476143111}, {"x": -30.21227875555925, "y": 12.6278431063891, "z": 7.38620402358382}, {"x": -30.25341189261086, "y": 12.3474477757469, "z": 7.428332988206892}, {"x": -30.2926536502975, "y": 12.06635673567261, "z": 7.46999089370032}, {"x": -30.33001744099545, "y": 11.78457091674799, "z": 7.511174746039843}, {"x": -30.36548787298896, "y": 11.50209482464756, "z": 7.551879410621673}, {"x": -30.39906343844428, "y": 11.21894048193126, "z": 7.592099805507374}, {"x": -30.43073237992873, "y": 10.93511116502233, "z": 7.631828567634178}, {"x": -30.46049626150309, "y": 10.65062215195775, "z": 7.67105858310703}, {"x": -30.48835656249428, "y": 10.365456975657, "z": 7.709783228765475}, {"x": -30.51428564048036, "y": 10.0796187937631, "z": 7.747995878701019}, {"x": -30.53828563609274, "y": 9.793120612980076, "z": 7.785692527342282}, {"x": -30.56034718549206, "y": 9.505954686336661, "z": 7.822869072686759}, {"x": -30.58045838488551, "y": 9.218128028069307, "z": 7.8595227809315}, {"x": -30.59860255168383, "y": 8.92963405670088, "z": 7.89565106786938}, {"x": -30.61474794459599, "y": 8.64049085093389, "z": 7.931249693818728}, {"x": -30.62889276469388, "y": 8.350711928324843, "z": 7.966314555728723}, {"x": -30.64100919918504, "y": 8.060288805046193, "z": 8.000838973695268}, {"x": -30.65106552294557, "y": 7.769241952350597, "z": 8.034815925409779}, {"x": -30.65904365813915, "y": 7.477581119949238, "z": 8.068238102392387}, {"x": -30.66491750847076, "y": 7.185324958452092, "z": 8.101097616542198}, {"x": -30.66868028281651, "y": 6.892483540455292, "z": 8.133388872853654}, {"x": -30.67029657244884, "y": 6.599059903206814, "z": 8.16510630806014}, {"x": -30.66974354344513, "y": 6.30509245629409, "z": 8.196246290681731}, {"x": -30.66701572962697, "y": 6.010595469579263, "z": 8.226806059909654}, {"x": -30.66208493366445, "y": 5.715589426328004, "z": 8.256782066191619}, {"x": -30.65493515070904, "y": 5.42010029303677, "z": 8.286171471655788}, {"x": -30.64553579791079, "y": 5.12415344600976, "z": 8.314969042166885}, {"x": -30.63387584049564, "y": 4.82779275246943, "z": 8.343169030558098}, {"x": -30.61994924337969, "y": 4.531028812310696, "z": 8.370764776937525}, {"x": -30.6037221814481, "y": 4.233888429764592, "z": 8.39774836225181}, {"x": -30.58518888707603, "y": 3.936408950141419, "z": 8.42411354459633}, {"x": -30.56433767516068, "y": 3.638612050066012, "z": 8.449853791315695}, {"x": -30.54116452827432, "y": 3.34053089562679, "z": 8.474964673984642}, {"x": -30.51566148234245, "y": 3.042179022479221, "z": 8.499443105112501}, {"x": -30.48780506472554, "y": 2.743597641970971, "z": 8.523285982389982}, {"x": -30.45760687639845, "y": 2.444825969607721, "z": 8.546491674037396}, {"x": -30.42505799134414, "y": 2.145879996190988, "z": 8.569056686149706}, {"x": -30.39014641608016, "y": 1.846797895421719, "z": 8.590977201880436}, {"x": -30.35286722893818, "y": 1.547606940692661, "z": 8.61224819738957}, {"x": -30.313210628911, "y": 1.24834743790393, "z": 8.632862844288153}, {"x": -30.27119160109866, "y": 0.9490456461831686, "z": 8.65281523365101}, {"x": -30.22679615664624, "y": 0.6497138657420344, "z": 8.672098509352114}, {"x": -30.18002080185538, "y": 0.3503970039802071, "z": 8.690707606194424}, {"x": -30.13088101886013, "y": 0.05111701997248801, "z": 8.708638805898627}, {"x": -30.07937632255029, "y": -0.2481004689965127, "z": 8.72588887715319}, {"x": -30.02551800884708, "y": -0.5472330697414676, "z": 8.742456739900245}, {"x": -29.9692957161389, "y": -0.8462580749934339, "z": 8.758340178876091}, {"x": -29.91071960978356, "y": -1.145130251828878, "z": 8.773537268900526}, {"x": -29.84980643375433, "y": -1.443839016057039, "z": 8.788044991720934}, {"x": -29.78654453994745, "y": -1.742362469377024, "z": 8.801858305216674}, {"x": -29.72094335715536, "y": -2.040671600311593, "z": 8.814972482206182}, {"x": -29.65300471924294, "y": -2.338749406991254, "z": 8.82738104747454}, {"x": -29.58274317721537, "y": -2.636571252355024, "z": 8.839078673630183}, {"x": -29.51016723616613, "y": -2.934140487963234, "z": 8.850060947770585}, {"x": -29.43526436408651, "y": -3.231434320845904, "z": 8.860323999306559}, {"x": -29.35805552764143, "y": -3.528429600476152, "z": 8.869866553272857}, {"x": -29.27854333530321, "y": -3.825124987407754, "z": 8.878686860731603}, {"x": -29.19672741145009, "y": -4.121502033481282, "z": 8.886784199011538}, {"x": -29.11260447644434, "y": -4.417553786905108, "z": 8.894157247052568}, {"x": -29.02616290016149, "y": -4.713252967541174, "z": 8.900802822528107}, {"x": -28.93741618395229, "y": -5.008586013427749, "z": 8.906717751604338}, {"x": -28.84634562999847, "y": -5.303555607735835, "z": 8.911896494872497}, {"x": -28.75293621091288, "y": -5.598132908061438, "z": 8.916333915325087}, {"x": -28.65718724552481, "y": -5.892306033639302, "z": 8.920025079533845}, {"x": -28.55908693156105, "y": -6.186055661773808, "z": 8.922965258249999}, {"x": -28.45863690869322, "y": -6.479370203965386, "z": 8.925152320650799}, {"x": -28.35581143046172, "y": -6.77223638815023, "z": 8.92658412286393}, {"x": -28.25060469161566, "y": -7.064611165457134, "z": 8.92726030326512}, {"x": -28.14301972870613, "y": -7.35648097819207, "z": 8.927180622238552}, {"x": -28.03303364036499, "y": -7.647819852089052, "z": 8.926343653118545}, {"x": -27.92063884162598, "y": -7.938594371387229, "z": 8.924748223361044}, {"x": -27.80581707799241, "y": -8.228772846103446, "z": 8.922390621678558}, {"x": -27.68856949171257, "y": -8.518311417785778, "z": 8.91926706787098}, {"x": -27.56889423266214, "y": -8.80719682448378, "z": 8.915373237854459}, {"x": -27.44676760546723, "y": -9.095390733487557, "z": 8.910704429592686}, {"x": -27.32219965935042, "y": -9.382850829580407, "z": 8.90525818176895}, {"x": -27.19518916856285, "y": -9.669552114436819, "z": 8.899032061129954}, {"x": -27.06574006675311, "y": -9.955456176391905, "z": 8.89202593817812}, {"x": -26.93385113789743, "y": -10.2405384487485, "z": 8.884240518870898}, {"x": -26.79951403834681, "y": -10.52474693469904, "z": 8.875676144805094}, {"x": -26.66275230668247, "y": -10.80804084680926, "z": 8.866334001013145}, {"x": -26.52356230511563, "y": -11.09039770558813, "z": 8.856212969127386}, {"x": -26.38194332107331, "y": -11.37176884051831, "z": 8.845311691572691}, {"x": -26.23790541944718, "y": -11.65212018072591, "z": 8.833627669667374}, {"x": -26.09145432588184, "y": -11.93140823227875, "z": 8.821157344247684}, {"x": -25.94261482943188, "y": -12.20960513578187, "z": 8.807898716876414}, {"x": -25.79138267494757, "y": -12.48668725884586, "z": 8.793849448898435}, {"x": -25.63777373700642, "y": -12.76260109255088, "z": 8.779009561935428}, {"x": -25.48181736059736, "y": -13.03732210866608, "z": 8.763380284804441}, {"x": -25.32352357552936, "y": -13.31081796681473, "z": 8.746963241059822}, {"x": -25.16291457411776, "y": -13.58305683318624, "z": 8.729761621207217}, {"x": -24.99999613647113, "y": -13.85400496064317, "z": 8.711776876499046}, {"x": -24.8347967848993, "y": -14.12361433785139, "z": 8.693010504850106}, {"x": -24.6673431513813, "y": -14.39187178674138, "z": 8.673462610631047}, {"x": -24.49763720681332, "y": -14.65874445346364, "z": 8.653131719180191}, {"x": -24.32570920865997, "y": -14.92419637994188, "z": 8.632017148255049}, {"x": -24.15158058308613, "y": -15.18820668024432, "z": 8.610117134288311}, {"x": -23.97528365517034, "y": -15.45074800973136, "z": 8.587431876489454}, {"x": -23.79684153346205, "y": -15.71181524684539, "z": 8.56396268829009}, {"x": -23.61626583450498, "y": -15.97137455844481, "z": 8.539711665642852}, {"x": -23.43360118720479, "y": -16.22940186455811, "z": 8.514683135689426}, {"x": -23.24886699098437, "y": -16.48589269726406, "z": 8.48888039989642}, {"x": -23.0620824522841, "y": -16.74082227417583, "z": 8.46230737963815}, {"x": -22.87326793900568, "y": -16.99417839402206, "z": 8.434966773472762}, {"x": -22.6824395511959, "y": -17.24593440805447, "z": 8.406859485058725}, {"x": -22.48963298573957, "y": -17.49608357596805, "z": 8.377986575938392}, {"x": -22.29484934068038, "y": -17.74462821768093, "z": 8.348347223830693}, {"x": -22.09810284719428, "y": -17.99154083217408, "z": 8.317941829035384}, {"x": -21.89941918080331, "y": -18.23681867819446, "z": 8.286771407010278}, {"x": -21.6988087311922, "y": -18.48045131788519, "z": 8.254837737091547}, {"x": -21.49629122327865, "y": -18.72243426461532, "z": 8.222145134181757}, {"x": -21.29186253317667, "y": -18.96275652265467, "z": 8.18869754382612}, {"x": -21.08554191568781, "y": -19.2013860933703, "z": 8.154500285928174}, {"x": -20.87734726473307, "y": -19.43832351334098, "z": 8.11955797601354}, {"x": -20.66726967523945, "y": -19.67355005782069, "z": 8.083873736204284}, {"x": -20.45532012381831, "y": -19.90704088895598, "z": 8.04745065947381}, {"x": -20.24149951736233, "y": -20.13877626744316, "z": 8.01028944093461}, {"x": -20.02582524786519, "y": -20.36872851820154, "z": 7.972391331658922}, {"x": -19.80830491276344, "y": -20.59689515445725, "z": 7.933757472518377}, {"x": -19.58893232327353, "y": -20.82324243201749, "z": 7.894389410297499}, {"x": -19.36773658132139, "y": -21.04774128393176, "z": 7.854291206595002}, {"x": -19.14472816090121, "y": -21.27037904456705, "z": 7.813466940742198}, {"x": -18.91992128412397, "y": -21.49112612294257, "z": 7.771922806035394}, {"x": -18.6933263331786, "y": -21.70996286179725, "z": 7.729665057731215}, {"x": -18.4649524163273, "y": -21.9268458247556, "z": 7.686699137823682}, {"x": -18.23483439943284, "y": -22.14174973775748, "z": 7.643030727711217}, {"x": -18.00297523048665, "y": -22.35466008265452, "z": 7.598662967211153}, {"x": -17.76938925294547, "y": -22.56553415442022, "z": 7.553599041154979}, {"x": -17.5341026655313, "y": -22.77434971680826, "z": 7.507841239826798}, {"x": -17.29713527436186, "y": -22.98107688448692, "z": 7.46139157844331}, {"x": -17.05852045638022, "y": -23.18570010207431, "z": 7.414254089870142}, {"x": -16.81826554423845, "y": -23.38819948836557, "z": 7.366432787853879}, {"x": -16.57640469664863, "y": -23.58853182149103, "z": 7.317934180733874}, {"x": -16.33297676384769, "y": -23.78668665819095, "z": 7.268765432932962}, {"x": -16.08799903075151, "y": -23.98263954413495, "z": 7.218933700301327}, {"x": -15.84150390749625, "y": -24.17636493372424, "z": 7.168446937081622}, {"x": -15.59351138538709, "y": -24.36783733156556, "z": 7.117310805548}, {"x": -15.34406285547195, "y": -24.55702425084183, "z": 7.065530893525176}, {"x": -15.0931898029201, "y": -24.74392481060779, "z": 7.01311130337338}, {"x": -14.84090591523108, "y": -24.9285110847591, "z": 6.960055179925442}, {"x": -14.58725770090799, "y": -25.11075925824956, "z": 6.906366943669527}, {"x": -14.33227802541191, "y": -25.29066162248995, "z": 6.852050488106194}, {"x": -14.07600834265241, "y": -25.46820222424546, "z": 6.797112155725781}, {"x": -13.81848053226636, "y": -25.64338098098689, "z": 6.741559214695016}, {"x": -13.55972343409959, "y": -25.81617058448224, "z": 6.685399563310765}, {"x": -13.29979410712235, "y": -25.98656203337253, "z": 6.628642613890235}, {"x": -13.03871833383688, "y": -26.15456016824611, "z": 6.571296067792057}, {"x": -12.77652762221121, "y": -26.32014640376641, "z": 6.513367825961089}, {"x": -12.51325811097937, "y": -26.48331853121468, "z": 6.454864093279213}, {"x": -12.24894263280608, "y": -26.64406445976366, "z": 6.395789560783837}, {"x": -11.98362799772391, "y": -26.80239392454289, "z": 6.33614936726684}, {"x": -11.71732834599239, "y": -26.95831728879488, "z": 6.275947331044551}, {"x": -11.4500801114771, "y": -27.11182070219936, "z": 6.215189156797658}, {"x": -11.18192480108357, "y": -27.26292137349581, "z": 6.153881286018112}, {"x": -10.91288518913649, "y": -27.41162583431114, "z": 6.092031104445436}, {"x": -10.64299248935886, "y": -27.55794446889556, "z": 6.029648042684276}, {"x": -10.37225856881338, "y": -27.70188062378662, "z": 5.966740519398678}, {"x": -10.10071832045692, "y": -27.84342610694606, "z": 5.903317729641191}, {"x": -9.828395233950166, "y": -27.98260504015696, "z": 5.839387357916617}, {"x": -9.555288998293097, "y": -28.1194156823224, "z": 5.774955449373243}, {"x": -9.28142348756586, "y": -28.25385566558761, "z": 5.710027904299947}, {"x": -9.006809327243747, "y": -28.3859310128288, "z": 5.644608555092681}, {"x": -8.73146937089273, "y": -28.51564126062704, "z": 5.578702426790032}, {"x": -8.455412220516177, "y": -28.64300404643485, "z": 5.512314736798844}, {"x": -8.17864102103997, "y": -28.76800360666405, "z": 5.445451599537185}, {"x": -7.901190643952832, "y": -28.89063738661341, "z": 5.378121489267911}, {"x": -7.62306952893206, "y": -29.010914776445, "z": 5.310332518792169}, {"x": -7.344290940151497, "y": -29.12882400786566, "z": 5.242094380589364}, {"x": -7.064866551023893, "y": -29.24436244426647, "z": 5.173415893772151}, {"x": -6.78480905711117, "y": -29.35750823756192, "z": 5.104304639774165}, {"x": -6.504149412341547, "y": -29.46826108932373, "z": 5.034767970053615}, {"x": -6.222885152202522, "y": -29.57662183616633, "z": 4.964810712905612}, {"x": -5.941034600479929, "y": -29.68256439945445, "z": 4.894438194864208}, {"x": -5.658625061996826, "y": -29.78608865456337, "z": 4.823655186934298}, {"x": -5.375674582432917, "y": -29.88718533317584, "z": 4.752466901262489}, {"x": -5.092211235128548, "y": -29.98585597067371, "z": 4.68088074481789}, {"x": -4.808242153246312, "y": -30.08209197950708, "z": 4.608904098032777}, {"x": -4.523804046700733, "y": -30.17586951780303, "z": 4.536546577431083}, {"x": -4.238928364253765, "y": -30.26719775992767, "z": 4.463817627451616}, {"x": -3.953625688034329, "y": -30.35606417720309, "z": 4.39072614955087}, {"x": -3.667926481944338, "y": -30.44245615775995, "z": 4.317281080279147}, {"x": -3.381850193782727, "y": -30.52636421979114, "z": 4.243488725060566}, {"x": -3.09543477890975, "y": -30.60777643883679, "z": 4.169355411063085}, {"x": -2.808702495876444, "y": -30.6867063055838, "z": 4.094886099030788}, {"x": -2.521667112487037, "y": -30.76313549375775, "z": 4.020085507402739}, {"x": -2.234375711878712, "y": -30.83705830293675, "z": 3.944960006869933}, {"x": -1.946855256994713, "y": -30.90848288576125, "z": 3.869515781512908}, {"x": -1.659140325602687, "y": -30.97740519106854, "z": 3.793761569820102}, {"x": -1.371257961987639, "y": -31.04383219924507, "z": 3.717706496208428}, {"x": -1.083238018488615, "y": -31.10774765437461, "z": 3.641359905331119}, {"x": -0.795131407891276, "y": -31.16915935060736, "z": 3.564731791500374}, {"x": -0.5069541273777904, "y": -31.22808038459866, "z": 3.487829837889586}, {"x": -0.2187364643010768, "y": -31.28449929749779, "z": 3.410661688412258}, {"x": 0.06948577724436501, "y": -31.33842623927822, "z": 3.333233112778045}, {"x": 0.357681117865872, "y": -31.3898631754738, "z": 3.255548916791645}, {"x": 0.6458085844152476, "y": -31.43883197108636, "z": 3.177614762823112}, {"x": 0.9338542309406628, "y": -31.48534708711853, "z": 3.099435576942239}, {"x": 1.221774924922269, "y": -31.52940676440267, "z": 3.021018638961283}, {"x": 1.509530779315304, "y": -31.57104328220686, "z": 2.942371809364725}, {"x": 1.797101694127419, "y": -31.61027256823624, "z": 2.863503778720437}, {"x": 2.084456278472191, "y": -31.6471133115023, "z": 2.784424547765676}, {"x": 2.371578451232454, "y": -31.68157976036861, "z": 2.705142425973817}, {"x": 2.658431407415736, "y": -31.71368259294704, "z": 2.625665979618633}, {"x": 2.944997470649128, "y": -31.74346136626135, "z": 2.546001721193424}, {"x": 3.231275121147096, "y": -31.7709247594767, "z": 2.466154721375017}, {"x": 3.517235756120312, "y": -31.79608982638331, "z": 2.386130070849308}, {"x": 3.802869363702648, "y": -31.81898371692535, "z": 2.305931332226881}, {"x": 4.088157246987707, "y": -31.83962622018614, "z": 2.225563883216332}, {"x": 4.373095991692199, "y": -31.85804871226462, "z": 2.145033451596234}, {"x": 4.657680678844225, "y": -31.87425147785512, "z": 2.064346887980333}, {"x": 4.941882050591271, "y": -31.8882551514994, "z": 1.983512923787154}, {"x": 5.225703866757062, "y": -31.90008502799634, "z": 1.9025393585321}, {"x": 5.50914060172803, "y": -31.90974209095332, "z": 1.821434943713607}, {"x": 5.79218684325313, "y": -31.91723929496781, "z": 1.740206731844271}, {"x": 6.074836924842613, "y": -31.92257418972829, "z": 1.658860364875723}, {"x": 6.357074222056665, "y": -31.92576577866966, "z": 1.577401090102118}, {"x": 6.638913070037541, "y": -31.92682435854133, "z": 1.495831990465181}, {"x": 6.920338848569917, "y": -31.92573838023345, "z": 1.414157271561931}, {"x": 7.201334484690896, "y": -31.92252572225393, "z": 1.332380967226717}, {"x": 7.4818945250085, "y": -31.91719042576072, "z": 1.250508149487856}, {"x": 7.762003819552446, "y": -31.90974326210284, "z": 1.168546002249089}, {"x": 8.041662761943487, "y": -31.90018307113233, "z": 1.086501433019627}, {"x": 8.320843186940715, "y": -31.88850126135969, "z": 1.004383102212013}, {"x": 8.599531459301796, "y": -31.87471903854705, "z": 0.9221986373047791}, {"x": 8.877730058115617, "y": -31.85882845759292, "z": 0.8399547227933309}, {"x": 9.155416817462065, "y": -31.84082623451638, "z": 0.7576575714275327}, {"x": 9.432582096237882, "y": -31.82071467210566, "z": 0.6753108183844636}, {"x": 9.709200692409658, "y": -31.79849502626645, "z": 0.5929185446722286}, {"x": 9.985265209448867, "y": -31.77418650776075, "z": 0.5104838380599569}, {"x": 10.26076689950106, "y": -31.74777597729804, "z": 0.428010329269257}, {"x": 10.53566746871344, "y": -31.71927095302812, "z": 0.3455035547340169}, {"x": 10.80995502054903, "y": -31.68868742017764, "z": 0.2629690152713767}, {"x": 11.08360821670417, "y": -31.65602476906847, "z": 0.1804145870963461}, {"x": 11.35661022972537, "y": -31.62129210274018, "z": 0.09784781285066449}, {"x": 11.62893895202276, "y": -31.58448008895952, "z": 0.01527600196441586}, {"x": 11.90055883405736, "y": -31.54560590621212, "z": -0.06729364359988864}, {"x": 12.17146907692891, "y": -31.5046824848455, "z": -0.1498565362569088}, {"x": 12.44164528290858, "y": -31.46170089394247, "z": -0.2324080499822908}, {"x": 12.71106031583139, "y": -31.41667877467802, "z": -0.3149452608268401}, {"x": 12.97969318301806, "y": -31.36962420259612, "z": -0.3974654255022685}, {"x": 13.24751577073695, "y": -31.32056092950088, "z": -0.4799644957890403}, {"x": 13.51451970305057, "y": -31.26950006633776, "z": -0.5624386525184994}, {"x": 13.78066462661687, "y": -31.21644504012574, "z": -0.6448814992517745}, {"x": 14.0459222430079, "y": -31.16143244617573, "z": -0.7272864468431822}, {"x": 14.31028186077104, "y": -31.10447552804402, "z": -0.80964637646249}, {"x": 14.57371661603686, "y": -31.04559189422202, "z": -0.8919536568636883}, {"x": 14.83621304357643, "y": -30.98479841207001, "z": -0.9742028569557636}, {"x": 15.09773992913602, "y": -30.92211353756599, "z": -1.056388542463274}, {"x": 15.35828928840288, "y": -30.85757861423859, "z": -1.138507482087482}, {"x": 15.61785849506396, "y": -30.79120227716923, "z": -1.220557312954211}, {"x": 15.87641774130024, "y": -30.72301167111255, "z": -1.302535228891523}, {"x": 16.13396131966057, "y": -30.65304318644447, "z": -1.384439277755165}, {"x": 16.39047604086779, "y": -30.58132364517409, "z": -1.466265175303551}, {"x": 16.64596202242851, "y": -30.50788775813783, "z": -1.548008313001315}, {"x": 16.90041358475481, "y": -30.43274479421246, "z": -1.629662969523268}, {"x": 17.15380994946178, "y": -30.35592943340549, "z": -1.711222227283293}, {"x": 17.40616710082931, "y": -30.27747242305503, "z": -1.792680695297044}, {"x": 17.65748480593565, "y": -30.1973804016854, "z": -1.8740325639114}, {"x": 17.90776388684688, "y": -30.11567726497105, "z": -1.955274253049308}, {"x": 18.15700752417193, "y": -30.03237378953767, "z": -2.036403413334428}, {"x": 18.40521399146189, "y": -29.94749952470288, "z": -2.117417934046235}, {"x": 18.65240694890487, "y": -29.86106757463854, "z": -2.198317238512943}, {"x": 18.89857651413936, "y": -29.77307710210534, "z": -2.279098954378387}, {"x": 19.14371938842969, "y": -29.68355714810235, "z": -2.359760579687143}, {"x": 19.38784482816261, "y": -29.59251604721596, "z": -2.440298202435072}, {"x": 19.63095006079286, "y": -29.49996613523075, "z": -2.520706155813603}, {"x": 19.87304411994084, "y": -29.40590926269535, "z": -2.600979471370144}, {"x": 20.1141112777018, "y": -29.31034605135039, "z": -2.681112014828663}, {"x": 20.35415763746477, "y": -29.21330069983876, "z": -2.761099426446038}, {"x": 20.59319693928906, "y": -29.11476293399264, "z": -2.840938429291612}, {"x": 20.83121581430434, "y": -29.01473475318293, "z": -2.920626394320287}, {"x": 21.06821704358222, "y": -28.91322404862239, "z": -3.000162846630031}, {"x": 21.3041900053186, "y": -28.81023616045985, "z": -3.079546225644914}, {"x": 21.53914025847501, "y": -28.70578729435336, "z": -3.158775480277053}, {"x": 21.77306385179892, "y": -28.59986481443397, "z": -3.237848323785339}, {"x": 22.00593453228483, "y": -28.49248271191748, "z": -3.316760553891958}, {"x": 22.23775707969868, "y": -28.38365543088112, "z": -3.395508088226429}, {"x": 22.46852184772746, "y": -28.27337796359475, "z": -3.474084888877124}, {"x": 22.69822172278566, "y": -28.16165729943261, "z": -3.552486030305459}, {"x": 22.92684466011661, "y": -28.04848609247029, "z": -3.630707184023762}, {"x": 23.15437202534845, "y": -27.93388272694291, "z": -3.708744648726759}, {"x": 23.38081532922386, "y": -27.81785255506534, "z": -3.786597261769753}, {"x": 23.60615475678721, "y": -27.70038596727776, "z": -3.864263441008485}, {"x": 23.83037385927602, "y": -27.58150293590931, "z": -3.941742877602412}, {"x": 24.05346367908842, "y": -27.46120978435993, "z": -4.0190345835706}, {"x": 24.27540778690604, "y": -27.33952402003362, "z": -4.096135935437544}, {"x": 24.49620282725552, "y": -27.21644909489589, "z": -4.17304423739105}, {"x": 24.71581493976528, "y": -27.0919883319517, "z": -4.249754306932434}, {"x": 24.93423038037859, "y": -26.96617354938445, "z": -4.326261360162711}, {"x": 25.15144696725997, "y": -26.8390067384844, "z": -4.402560482264676}, {"x": 25.3674420466557, "y": -26.71049933706681, "z": -4.478646994953333}, {"x": 25.58220717467577, "y": -26.58066468305323, "z": -4.55451866832678}, {"x": 25.79571896343372, "y": -26.44951951977045, "z": -4.630173224031718}, {"x": 26.00797733129212, "y": -26.31709606312921, "z": -4.705610384120148}, {"x": 26.21897631892286, "y": -26.18339577414824, "z": -4.780829928438894}, {"x": 26.42868631985703, "y": -26.0484471824483, "z": -4.855830699788052}, {"x": 26.63710602974555, "y": -25.91228373231349, "z": -4.930611768887548}, {"x": 26.84422430841561, "y": -25.77492687183345, "z": -5.005169608745778}, {"x": 27.05004005127327, "y": -25.63640598221111, "z": -5.079500646527943}, {"x": 27.25454483258439, "y": -25.49673165897645, "z": -5.153600428493198}, {"x": 27.45772409957741, "y": -25.35594234286086, "z": -5.227464097605139}, {"x": 27.65959933030304, "y": -25.21406409029792, "z": -5.30108881570794}, {"x": 27.86016804414762, "y": -25.07110390972791, "z": -5.37447166067677}, {"x": 28.05943276892159, "y": -24.9270916436325, "z": -5.447612117316035}, {"x": 28.25740101746229, "y": -24.78204438691447, "z": -5.520510389613584}, {"x": 28.45407894331702, "y": -24.63599439452635, "z": -5.593166552298282}, {"x": 28.64949127889251, "y": -24.48895379291148, "z": -5.665581486159359}, {"x": 28.84362924056253, "y": -24.34092977323744, "z": -5.737753738002307}, {"x": 29.03650059313897, "y": -24.19195668771043, "z": -5.80968164673905}, {"x": 29.22812405166696, "y": -24.04204082760613, "z": -5.881362074723617}, {"x": 29.41850315750186, "y": -23.89119310945618, "z": -5.952790756295755}, {"x": 29.60765247075018, "y": -23.73941664988706, "z": -6.023964634555745}, {"x": 29.7955667704201, "y": -23.58671725588235, "z": -6.094880058379999}, {"x": 29.98226694059948, "y": -23.43311628154328, "z": -6.165535671402364}, {"x": 30.16777105628924, "y": -23.27859908729308, "z": -6.235931037724667}, {"x": 30.35207146628253, "y": -23.12317173000505, "z": -6.306066242441341}, {"x": 30.53518109950522, "y": -22.96684348002849, "z": -6.375942846270106}, {"x": 30.7170998516746, "y": -22.80961770483391, "z": -6.445560647993335}, {"x": 30.8978399944002, "y": -22.65150377919297, "z": -6.514919550284343}, {"x": 31.07739931906847, "y": -22.49248788533074, "z": -6.584017764683161}, {"x": 31.2557623430194, "y": -22.33258596857879, "z": -6.652851893419127}, {"x": 31.43294634531772, "y": -22.17180484409343, "z": -6.721418976405944}, {"x": 31.60894700114257, "y": -22.01013241142584, "z": -6.78971468132749}, {"x": 31.78376316012201, "y": -21.84757286376894, "z": -6.857736505788115}, {"x": 31.95739051121339, "y": -21.68411836000921, "z": -6.925482717581567}, {"x": 32.12982311042056, "y": -21.51978354259936, "z": -6.992952447510018}, {"x": 32.30107720028475, "y": -21.35456373046753, "z": -7.060146940696006}, {"x": 32.47113332094444, "y": -21.18844883368557, "z": -7.127066441151601}, {"x": 32.6399834865068, "y": -21.02145847936606, "z": -7.193711949446827}, {"x": 32.8076269450784, "y": -20.85359274729642, "z": -7.260083041695077}, {"x": 32.9740528727356, "y": -20.68486038796845, "z": -7.326177588680076}, {"x": 33.1392594021459, "y": -20.51525781134338, "z": -7.391993367951904}, {"x": 33.30321861222762, "y": -20.34478701992037, "z": -7.457526067805606}, {"x": 33.46592890952827, "y": -20.17347109898438, "z": -7.522772492985027}, {"x": 33.62739088745685, "y": -20.0012993991454, "z": -7.587729691924697}, {"x": 33.78758306410073, "y": -19.82827865866618, "z": -7.652395529040845}, {"x": 33.94650109776556, "y": -19.65441799691728, "z": -7.716770253106769}, {"x": 34.10412761051184, "y": -19.47972890820565, "z": -7.780853745755856}, {"x": 34.26046526156145, "y": -19.30423157606272, "z": -7.844647437826481}, {"x": 34.41550202741951, "y": -19.12792052889909, "z": -7.908151941265006}, {"x": 34.56920904946465, "y": -18.95082279649644, "z": -7.971366555564557}, {"x": 34.72158810486667, "y": -18.77296264547501, "z": -8.03429039116614}, {"x": 34.87262535305581, "y": -18.5943510418197, "z": -8.09692001974575}, {"x": 35.02231473340026, "y": -18.41501006126075, "z": -8.159252490277916}, {"x": 35.17064353622603, "y": -18.23494845040697, "z": -8.221284353895163}, {"x": 35.31760013932636, "y": -18.05420223633958, "z": -8.283012535153716}, {"x": 35.46320333497116, "y": -17.87278813674498, "z": -8.344436249737166}, {"x": 35.60744148002641, "y": -17.69071315034067, "z": -8.405554696398202}, {"x": 35.75031422292514, "y": -17.50801099912703, "z": -8.466369319613467}, {"x": 35.89182744978922, "y": -17.32470086917014, "z": -8.526881533755251}, {"x": 36.03198579413436, "y": -17.14081435214387, "z": -8.587092183258807}, {"x": 36.17080660722456, "y": -16.95636389155896, "z": -8.647002268337603}, {"x": 36.30827789212749, "y": -16.77136545113664, "z": -8.706610195472088}, {"x": 36.44441349631014, "y": -16.58585679889465, "z": -8.765914376307862}, {"x": 36.57923349172324, "y": -16.39984195792185, "z": -8.824911974675063}, {"x": 36.71274111302662, "y": -16.21333439188454, "z": -8.883599837782638}, {"x": 36.84495307153977, "y": -16.02634195298899, "z": -8.94197650822417}, {"x": 36.9758712667631, "y": -15.83887648735849, "z": -9.000040365967886}, {"x": 37.10552435943058, "y": -15.65095733313867, "z": -9.057792310450653}, {"x": 37.23392864959274, "y": -15.46257074672656, "z": -9.115233717267678}, {"x": 37.36108036551253, "y": -15.27373063089718, "z": -9.172366145780474}, {"x": 37.48700049045459, "y": -15.08444827149328, "z": -9.229191855861002}, {"x": 37.61169499873862, "y": -14.89472532619129, "z": -9.285710807015247}, {"x": 37.73517871623267, "y": -14.70456791908066, "z": -9.341922885498064}, {"x": 37.85745093588216, "y": -14.51396442112046, "z": -9.39782615243239}, {"x": 37.97850680084914, "y": -14.32293273127988, "z": -9.453417657655363}, {"x": 38.09837213847108, "y": -14.13147204368522, "z": -9.508695358622019}, {"x": 38.21704409156549, "y": -13.93956737339476, "z": -9.563656462868778}, {"x": 38.33452677422995, "y": -13.74722391319413, "z": -9.618300537205002}, {"x": 38.45082303842702, "y": -13.55443461780528, "z": -9.672627826202673}, {"x": 38.56593621077401, "y": -13.36121030303938, "z": -9.726639385609626}, {"x": 38.67988291351292, "y": -13.16753983162883, "z": -9.780337709150226}, {"x": 38.79264398580629, "y": -12.97341609477051, "z": -9.833723650582233}, {"x": 38.90422008260413, "y": -12.77885838368772, "z": -9.886798372785263}, {"x": 39.01461624122521, "y": -12.58386002917431, "z": -9.939561131064215}, {"x": 39.12382427750158, "y": -12.38842382616312, "z": -9.992009733934388}, {"x": 39.23184416877302, "y": -12.19254298229612, "z": -10.04414214342132}, {"x": 39.33865555316456, "y": -11.99621947294486, "z": -10.09595484415702}, {"x": 39.44426745445428, "y": -11.7994675015494, "z": -10.1474461499153}, {"x": 39.54868037170976, "y": -11.60226763508803, "z": -10.19861485065799}, {"x": 39.65187482855981, "y": -11.40462617087656, "z": -10.24946086555245}, {"x": 39.75385205452314, "y": -11.20654955209653, "z": -10.29998611868361}, {"x": 39.85460042040815, "y": -11.00804375374908, "z": -10.35019166160527}, {"x": 39.95412342199201, "y": -10.80911909957925, "z": -10.40007954011114}, {"x": 40.05240520369462, "y": -10.60976669738431, "z": -10.44965021270038}, {"x": 40.14942185725684, "y": -10.41001179885464, "z": -10.49890270794461}, {"x": 40.24517986727886, "y": -10.20986715508992, "z": -10.54783574714534}, {"x": 40.33966272033918, "y": -10.00933348046475, "z": -10.59644589100677}, {"x": 40.43286200647889, "y": -9.808426793893439, "z": -10.64473084798256}, {"x": 40.52476447844774, "y": -9.607152769712867, "z": -10.69268823935013}, {"x": 40.61536251068083, "y": -9.405540902258354, "z": -10.74031668664159}, {"x": 40.70466968160667, "y": -9.203597061921416, "z": -10.78761706638528}, {"x": 40.79266570768045, "y": -9.001328385684815, "z": -10.83459001828506}, {"x": 40.87934865184971, "y": -8.79876916149767, "z": -10.88123799139806}, {"x": 40.9647215317224, "y": -8.595935258987963, "z": -10.92756255878013}, {"x": 41.04878310388705, "y": -8.392854073066218, "z": -10.97356434821483}, {"x": 41.13154097974631, "y": -8.189537864712856, "z": -11.01924368894025}, {"x": 41.21297980171965, "y": -7.986008993882749, "z": -11.0645983945071}, {"x": 41.29311666541345, "y": -7.782304291467778, "z": -11.10962675765561}, {"x": 41.37196703870042, "y": -7.578424856262923, "z": -11.15432624399279}, {"x": 41.44953070476326, "y": -7.374389154046775, "z": -11.19869484137599}, {"x": 41.52582513934468, "y": -7.170210773252796, "z": -11.24273255543588}, {"x": 41.60085678917851, "y": -6.965906449709433, "z": -11.28643942335778}, {"x": 41.67465600654293, "y": -6.761494193234429, "z": -11.32981789283095}, {"x": 41.74723426380691, "y": -6.556965565043263, "z": -11.37287022581037}, {"x": 41.81859192294172, "y": -6.352343875023173, "z": -11.41559844873716}, {"x": 41.88875682123746, "y": -6.147641441730996, "z": -11.45800457572943}, {"x": 41.95773763259371, "y": -5.942858855437265, "z": -11.50008804911912}, {"x": 42.02555068409676, "y": -5.73800250670674, "z": -11.5418483526077}, {"x": 42.09219887172767, "y": -5.533064872717607, "z": -11.58328332829405}, {"x": 42.15768882538666, "y": -5.328064375929733, "z": -11.62439059539576}, {"x": 42.22205162248896, "y": -5.122992981497625, "z": -11.66516915283863}, {"x": 42.28528492997104, "y": -4.917836871356513, "z": -11.70561776591114}, {"x": 42.34739956608715, "y": -4.71260392968327, "z": -11.74573779563391}, {"x": 42.40840583598178, "y": -4.507287048420233, "z": -11.7855308964392}, {"x": 42.46831344483334, "y": -4.301892600742731, "z": -11.824999240609}, {"x": 42.52713788689914, "y": -4.096405940070703, "z": -11.86414563619124}, {"x": 42.58486269567164, "y": -3.890823792541911, "z": -11.9029707120032}, {"x": 42.64149813744015, "y": -3.685162402433151, "z": -11.94147514330134}, {"x": 42.69705262157265, "y": -3.479407058768907, "z": -11.9796575373681}, {"x": 42.75151968545941, "y": -3.273556801543529, "z": -12.01751561690434}, {"x": 42.8049028843142, "y": -3.067602946426151, "z": -12.05504767421442}, {"x": 42.85719067374499, "y": -2.861546114534283, "z": -12.09225119694866}, {"x": 42.90839984982692, "y": -2.655390608895902, "z": -12.12912604753768}, {"x": 42.9585289333659, "y": -2.44911162487969, "z": -12.16567255042434}, {"x": 43.00756211011148, "y": -2.24271650546517, "z": -12.20189216516682}, {"x": 43.05550672643835, "y": -2.03620759698494, "z": -12.23778769888563}, {"x": 43.10235482037123, "y": -1.829583973179727, "z": -12.27336050756201}, {"x": 43.14810918992131, "y": -1.622848048448836, "z": -12.30861242788638}, {"x": 43.19275266155311, "y": -1.415988949298631, "z": -12.34354317978794}, {"x": 43.23626901177404, "y": -1.209028002003008, "z": -12.37815125261609}, {"x": 43.2786686214541, "y": -1.001964382558121, "z": -12.41243499598406}, {"x": 43.31993231507855, "y": -0.7947903052261792, "z": -12.44639121321183}, {"x": 43.36005229802743, "y": -0.5875163452873919, "z": -12.48001852969283}, {"x": 43.39901743884568, "y": -0.3801430865404574, "z": -12.51331577570964}, {"x": 43.43682349044246, "y": -0.1726901502002257, "z": -12.54628315617563}, {"x": 43.47347726972732, "y": 0.03484724499820754, "z": -12.57892276426337}, {"x": 43.50895222522129, "y": 0.2424625248076215, "z": -12.61123600510349}, {"x": 43.54324670348957, "y": 0.4501256105571795, "z": -12.64322550070572}, {"x": 43.57635945654521, "y": 0.6578296514179789, "z": -12.67489221378841}, {"x": 43.60828105480415, "y": 0.8655544651325509, "z": -12.70623598420628}, {"x": 43.63900941375333, "y": 1.073290715510216, "z": -12.73725615335028}, {"x": 43.66852591419064, "y": 1.281014989780675, "z": -12.7679499355373}, {"x": 43.69684670874965, "y": 1.488697578991473, "z": -12.79831565580017}, {"x": 43.72397664958473, "y": 1.696341654643243, "z": -12.82835127122808}, {"x": 43.74990903181126, "y": 1.903924271832526, "z": -12.85805595557939}, {"x": 43.77465871400009, "y": 2.111428538153687, "z": -12.88743093340185}, {"x": 43.79823071441142, "y": 2.318836015673045, "z": -12.91647737292982}, {"x": 43.82064915638927, "y": 2.526129725771756, "z": -12.94519844650199}, {"x": 43.84191651391068, "y": 2.733310642479981, "z": -12.97359636448981}, {"x": 43.86203464029353, "y": 2.940346798574907, "z": -13.00167274231475}, {"x": 43.88103299880927, "y": 3.147226483102228, "z": -13.02942866917763}, {"x": 43.89891695129667, "y": 3.353948092828224, "z": -13.05686272891406}, {"x": 43.91570178153279, "y": 3.560501422767986, "z": -13.08397393898093}, {"x": 43.93139311174465, "y": 3.766888255277131, "z": -13.11076009285054}, {"x": 43.94600597208105, "y": 3.973090069050054, "z": -13.1372196053733}, {"x": 43.959570933839, "y": 4.179119058083669, "z": -13.16335259573323}, {"x": 43.97208420611276, "y": 4.384982939334896, "z": -13.18915924091837}, {"x": 43.98356250881097, "y": 4.590669289196016, "z": -13.21464222149008}, {"x": 43.99402080270571, "y": 4.79618519329011, "z": -13.23980388836754}, {"x": 44.00347037040252, "y": 5.001526539444042, "z": -13.26464668832816}, {"x": 44.01192396807356, "y": 5.206707177103128, "z": -13.28917292957827}, {"x": 44.01936884433335, "y": 5.411725120556084, "z": -13.31338244273579}, {"x": 44.02582349036528, "y": 5.616568401584607, "z": -13.33727511147816}, {"x": 44.03129562869733, "y": 5.821257790979098, "z": -13.36084890322493}, {"x": 44.03577951526219, "y": 6.025793696443828, "z": -13.38410167533899}, {"x": 44.03928274385675, "y": 6.230184295655939, "z": -13.40703231025484}, {"x": 44.04180133661503, "y": 6.434430058650407, "z": -13.42963946993932}, {"x": 44.04335511079329, "y": 6.638534068034292, "z": -13.45192445257164}, {"x": 44.04393892477238, "y": 6.842520779018096, "z": -13.47388871827825}, {"x": 44.04354151890821, "y": 7.046379215388945, "z": -13.49553460853727}, {"x": 44.04217522815959, "y": 7.250111070564529, "z": -13.51686499761851}, {"x": 44.03983220485622, "y": 7.453722172341869, "z": -13.53788079659087}, {"x": 44.03651361521391, "y": 7.657213204863813, "z": -13.55858306340864}, {"x": 44.03220312089216, "y": 7.860593965725854, "z": -13.57897053647777}, {"x": 44.02689309458561, "y": 8.063846915979985, "z": -13.59904123259312}, {"x": 44.02059530706767, "y": 8.266983940354919, "z": -13.61879340063052}, {"x": 44.01328844961898, "y": 8.470015417292178, "z": -13.6382244585294}, {"x": 44.00496828079176, "y": 8.672932760433063, "z": -13.65733418700238}, {"x": 43.99562744067156, "y": 8.875739548184997, "z": -13.6761226342855}, {"x": 43.98526354366751, "y": 9.078424365080092, "z": -13.69459129917145}, {"x": 43.97387716943128, "y": 9.280997675894453, "z": -13.71274293197729}, {"x": 43.96143980662377, "y": 9.48345123491806, "z": -13.73057904280243}, {"x": 43.947953069408, "y": 9.685760731689465, "z": -13.74810177545648}, {"x": 43.93341151200009, "y": 9.887928998394202, "z": -13.76531105248854}, {"x": 43.91779948366584, "y": 10.08994123488976, "z": -13.78220579568511}, {"x": 43.90110960951621, "y": 10.29179117740135, "z": -13.79878450895833}, {"x": 43.88332310266428, "y": 10.49345774222189, "z": -13.81504418868789}, {"x": 43.86445354613239, "y": 10.69492109909142, "z": -13.83098360021157}, {"x": 43.84449426352455, "y": 10.89618724256354, "z": -13.84660149912725}, {"x": 43.82343351858874, "y": 11.09722923314207, "z": -13.86189828512585}, {"x": 43.80128305272996, "y": 11.29802981326348, "z": -13.87687610078823}, {"x": 43.77804247760427, "y": 11.49857126041912, "z": -13.89153668945398}, {"x": 43.75372596549588, "y": 11.69883632793847, "z": -13.90588320546293}, {"x": 43.72832664738272, "y": 11.8988178451704, "z": -13.9199170940868}, {"x": 43.70184685672466, "y": 12.09847742471735, "z": -13.9336390254143}, {"x": 43.67431310936733, "y": 12.29780495211636, "z": -13.94704891430009}, {"x": 43.64572416043776, "y": 12.4967943404488, "z": -13.96014457490178}, {"x": 43.61609410580147, "y": 12.69542846238547, "z": -13.97292484431586}, {"x": 43.58543122368453, "y": 12.89370212896153, "z": -13.9853878541316}, {"x": 43.55375579395687, "y": 13.09159570267117, "z": -13.99753310811183}, {"x": 43.52109480307625, "y": 13.289120180113, "z": -14.00936188960676}, {"x": 43.48744403417584, "y": 13.48627261549125, "z": -14.02087555167409}, {"x": 43.45282683591813, "y": 13.68303473216509, "z": -14.03207756585471}, {"x": 43.41726109093737, "y": 13.87941260138925, "z": -14.04297033572953}, {"x": 43.38075822917323, "y": 14.07540043236047, "z": -14.05355596122453}, {"x": 43.34333056294948, "y": 14.27100743009056, "z": -14.06383580668344}, {"x": 43.3049723813818, "y": 14.46622577985196, "z": -14.07380878887795}, {"x": 43.26571035726707, "y": 14.66104827163958, "z": -14.08347416931758}, {"x": 43.22555107375151, "y": 14.85549815076193, "z": -14.09282969077924}, {"x": 43.18449231495137, "y": 15.04957193496797, "z": -14.10187382516929}, {"x": 43.14254836154984, "y": 15.24327631253203, "z": -14.11060641964814}, {"x": 43.09972275150551, "y": 15.43661308252347, "z": -14.11902747721762}, {"x": 43.05603660498453, "y": 15.62958962873777, "z": -14.12713955863818}, {"x": 43.01148332496217, "y": 15.82222624292802, "z": -14.13494483268764}, {"x": 42.96605929175851, "y": 16.01450828584797, "z": -14.14244593687791}, {"x": 42.91978200947483, "y": 16.2064427696341, "z": -14.14964522937885}, {"x": 42.8726431016637, "y": 16.39803868354597, "z": -14.15654279263757}, {"x": 42.82464456298633, "y": 16.58929723125756, "z": -14.16313877840937}, {"x": 42.77577471932214, "y": 16.78022680240556, "z": -14.16943115467967}, {"x": 42.72603563126022, "y": 16.97081517772121, "z": -14.17541790425447}, {"x": 42.67543934409337, "y": 17.16108277142837, "z": -14.18109768178463}, {"x": 42.62396523849288, "y": 17.35103865625775, "z": -14.1864689651929}, {"x": 42.57161616973977, "y": 17.54067532396821, "z": -14.19153287609236}, {"x": 42.51838992192113, "y": 17.73000126774005, "z": -14.19629058590986}, {"x": 42.4642852423862, "y": 17.9190117816009, "z": -14.20074450346545}, {"x": 42.40929916688329, "y": 18.10771968610915, "z": -14.20489748512588}, {"x": 42.35340642157475, "y": 18.29611515363337, "z": -14.20875064275347}, {"x": 42.29661464506826, "y": 18.48418237992469, "z": -14.21230529169658}, {"x": 42.23891524738708, "y": 18.67193365699573, "z": -14.21556028149437}, {"x": 42.18029094345022, "y": 18.85935820390502, "z": -14.21851389409902}, {"x": 42.120735123446, "y": 19.04645415808388, "z": -14.22116430418496}, {"x": 42.06023280814606, "y": 19.23320701487591, "z": -14.22350890747599}, {"x": 41.99879510649357, "y": 19.41960892530755, "z": -14.225547401131}, {"x": 41.93640676379458, "y": 19.60566839973295, "z": -14.2272796196656}, {"x": 41.87305528974737, "y": 19.79135794810792, "z": -14.22870714863633}, {"x": 41.80875054124601, "y": 19.97666588964914, "z": -14.22983270036655}, {"x": 41.74348496473586, "y": 20.16157941838787, "z": -14.23065808537843}, {"x": 41.6772629088926, "y": 20.34608303372844, "z": -14.23118588627513}, {"x": 41.61007033860257, "y": 20.53016570177485, "z": -14.23141640413897}, {"x": 41.54190960260782, "y": 20.71378980917735, "z": -14.23134923273266}, {"x": 41.47279970406109, "y": 20.89695075897746, "z": -14.2309832607987}, {"x": 41.40273090150281, "y": 21.07963828755205, "z": -14.23031593387108}, {"x": 41.33171562741783, "y": 21.26183030158367, "z": -14.22934636063}, {"x": 41.25976257865304, "y": 21.44351792490577, "z": -14.22807339847402}, {"x": 41.18689161549534, "y": 21.62468170481313, "z": -14.22649778700338}, {"x": 41.11312264946336, "y": 21.80532867770204, "z": -14.22462180839485}, {"x": 41.03845091435449, "y": 21.98544482126331, "z": -14.22244756669719}, {"x": 40.96290441130763, "y": 22.16500843111421, "z": -14.21997869124315}, {"x": 40.88649944839784, "y": 22.34402494759235, "z": -14.21721703410576}, {"x": 40.80924574452262, "y": 22.52248445638608, "z": -14.21416390807046}, {"x": 40.73115628302427, "y": 22.7003906009765, "z": -14.2108195703939}, {"x": 40.6522330151931, "y": 22.87773167356888, "z": -14.2071822004789}, {"x": 40.57250765485503, "y": 23.05450593648424, "z": -14.20325082895183}, {"x": 40.49198462588978, "y": 23.23073575170971, "z": -14.19902349206613}, {"x": 40.41066692108495, "y": 23.40641277479182, "z": -14.19449970083244}, {"x": 40.32857541415542, "y": 23.58154353600064, "z": -14.1896804507717}, {"x": 40.24571802707151, "y": 23.75613185689638, "z": -14.18456699400504}, {"x": 40.16211490037341, "y": 23.93018680473491, "z": -14.1791627410874}, {"x": 40.07775927313619, "y": 24.1037232744868, "z": -14.17347000044543}, {"x": 39.99265574692942, "y": 24.2767254128657, "z": -14.16749111236839}, {"x": 39.90682410663687, "y": 24.44920720334498, "z": -14.16122747579525}, {"x": 39.82025422052465, "y": 24.62117903307935, "z": -14.15467820123408}, {"x": 39.73295025006757, "y": 24.79264217651865, "z": -14.14784265556588}, {"x": 39.6449059967719, "y": 24.96360523805914, "z": -14.14071842511439}, {"x": 39.55613039415123, "y": 25.13406287484636, "z": -14.13330394088983}, {"x": 39.46663298642482, "y": 25.30404095834973, "z": -14.12559866143056}, {"x": 39.37639473101268, "y": 25.4735450377159, "z": -14.11760232199915}, {"x": 39.28542549780822, "y": 25.64256941388408, "z": -14.10931724678866}, {"x": 39.19372528741089, "y": 25.81112804141576, "z": -14.10074533129542}, {"x": 39.10129139135648, "y": 25.979220465647, "z": -14.0918892958353}, {"x": 39.00811806594095, "y": 26.14685966069447, "z": -14.08275147044339}, {"x": 38.91418481177877, "y": 26.3140351240496, "z": -14.07333212270358}, {"x": 38.81950350604983, "y": 26.4807410123302, "z": -14.06363154583363}, {"x": 38.72406107529272, "y": 26.64699619237707, "z": -14.05364766295919}, {"x": 38.62784099697188, "y": 26.81279158851101, "z": -14.04337850491374}, {"x": 38.53083984716599, "y": 26.9781298238286, "z": -14.03282241523816}, {"x": 38.43304628951859, "y": 27.1430041707311, "z": -14.02197765562893}, {"x": 38.33446747384911, "y": 27.30741670002187, "z": -14.01084506906381}, {"x": 38.23508183108346, "y": 27.4713761828254, "z": -13.99942550719448}, {"x": 38.13487874695091, "y": 27.63485635768884, "z": -13.98772138497724}, {"x": 38.03386553195747, "y": 27.79785425133354, "z": -13.97573543428104}, {"x": 37.93202617684467, "y": 27.9603623762106, "z": -13.96346897731365}, {"x": 37.82935687210451, "y": 28.12236752584139, "z": -13.95092358075654}, {"x": 37.72583881902757, "y": 28.28385830581048, "z": -13.93809825108026}, {"x": 37.62147325134499, "y": 28.44480345209199, "z": -13.92499163947734}, {"x": 37.51626787806515, "y": 28.60520531314993, "z": -13.91160195997807}, {"x": 37.41020376871565, "y": 28.76504958029317, "z": -13.89792676081539}, {"x": 37.30329057560413, "y": 28.92431169327851, "z": -13.88396579152384}, {"x": 37.195533114489, "y": 29.08298213396377, "z": -13.86971880293871}, {"x": 37.08694415075986, "y": 29.24104115033424, "z": -13.85518761018638}, {"x": 36.9775329856846, "y": 29.39848903591393, "z": -13.84037502704792}, {"x": 36.86729259776506, "y": 29.55530065030699, "z": -13.82528327211235}, {"x": 36.75625108765869, "y": 29.71145248502498, "z": -13.80991543127017}, {"x": 36.64441719442948, "y": 29.8669469772979, "z": -13.79427227213114}, {"x": 36.53179686540233, "y": 30.02176601109186, "z": -13.77835405654356}, {"x": 36.41840346077429, "y": 30.17590549971841, "z": -13.76215999072289}, {"x": 36.30424466644027, "y": 30.32934944390446, "z": -13.74568786113283}, {"x": 36.18935270594395, "y": 30.48209781896101, "z": -13.72893691110364}, {"x": 36.07372927778302, "y": 30.63416572379078, "z": -13.71190590252941}, {"x": 35.95738383632998, "y": 30.78553686977092, "z": -13.69459560711005}, {"x": 35.84034259906265, "y": 30.93621651503035, "z": -13.67700808651916}, {"x": 35.72261451549146, "y": 31.08620704467048, "z": -13.65914549212516}, {"x": 35.60421844984103, "y": 31.23551378342156, "z": -13.64101151826017}, {"x": 35.4851499029404, "y": 31.38414354150872, "z": -13.62260804786263}, {"x": 35.36542226717555, "y": 31.53207968472855, "z": -13.60393668759032}, {"x": 35.24505545954804, "y": 31.67934080524175, "z": -13.58499770878592}, {"x": 35.12403911262895, "y": 31.82593401963787, "z": -13.56578942299263}, {"x": 35.00238275928993, "y": 31.97185867415692, "z": -13.54631081302895}, {"x": 34.88008697313136, "y": 32.1171235958352, "z": -13.52655963159702}, {"x": 34.7571654307422, "y": 32.26172830222763, "z": -13.5065352475575}, {"x": 34.63362544095527, "y": 32.40569863096903, "z": -13.48623820905815}, {"x": 34.50945248919564, "y": 32.5490338464197, "z": -13.46566952006684}, {"x": 34.38466418816464, "y": 32.69173003391011, "z": -13.44483239179841}, {"x": 34.25926092581004, "y": 32.8338046150367, "z": -13.42372895921006}, {"x": 34.1332394143402, "y": 32.97525708125004, "z": -13.40236171826847}, {"x": 34.00659467710969, "y": 33.11609838680653, "z": -13.3807320616748}, {"x": 33.87931352979877, "y": 33.25631811112554, "z": -13.35883928660992}, {"x": 33.75141110703743, "y": 33.39591936219787, "z": -13.33668282851208}, {"x": 33.62287158884627, "y": 33.53492272376543, "z": -13.31426014491185}, {"x": 33.49368362495724, "y": 33.6733182443603, "z": -13.291569596449}, {"x": 33.36384993693028, "y": 33.81111251942205, "z": -13.26861023797898}, {"x": 33.23336296931982, "y": 33.94830516107228, "z": -13.24538157168864}, {"x": 33.10222753751423, "y": 34.08490356985756, "z": -13.22188564164103}, {"x": 32.9704208176968, "y": 34.22091425430589, "z": -13.19812410012607}, {"x": 32.83793811106928, "y": 34.35631340982063, "z": -13.17409976180134}, {"x": 32.70478515941227, "y": 34.49110727467799, "z": -13.14981491161906}, {"x": 32.5709406928147, "y": 34.62529157199531, "z": -13.12527007131278}, {"x": 32.43639877138942, "y": 34.75885543484299, "z": -13.10046571510924}, {"x": 32.30114145252619, "y": 34.89179023705861, "z": -13.07539982301007}, {"x": 32.16517070117817, "y": 35.02407459654178, "z": -13.0500706234617}, {"x": 32.02848507340246, "y": 35.15571760681768, "z": -13.02447629871493}, {"x": 31.89106121718049, "y": 35.28670253883684, "z": -12.99861510837325}, {"x": 31.75290869145713, "y": 35.41700691217162, "z": -12.97248781793462}, {"x": 31.61402731442132, "y": 35.54662478066652, "z": -12.94609516919062}, {"x": 31.47442126974332, "y": 35.67553708878501, "z": -12.91943981412299}, {"x": 31.33409040503078, "y": 35.80373879530025, "z": -12.89252462938246}, {"x": 31.19302627515341, "y": 35.93119817854502, "z": -12.86535143255778}, {"x": 31.05125392057285, "y": 36.05789435080806, "z": -12.83792233228472}, {"x": 30.90877176315571, "y": 36.18382672853025, "z": -12.8102368456585}, {"x": 30.76558226753546, "y": 36.30896925914771, "z": -12.78229430045484}, {"x": 30.62169922253522, "y": 36.43331194925933, "z": -12.75409323966378}, {"x": 30.47713323404787, "y": 36.5568363531215, "z": -12.72563160664085}, {"x": 30.33191348760737, "y": 36.67954145042908, "z": -12.69690934932686}, {"x": 30.18603952320001, "y": 36.80143183801378, "z": -12.66792629199277}, {"x": 30.03952802044516, "y": 36.92248331049198, "z": -12.63868450477527}, {"x": 29.89240836645879, "y": 37.04270033458938, "z": -12.60918685936379}, {"x": 29.7446883522502, "y": 37.16208124003931, "z": -12.57943595073684}, {"x": 29.59638686293129, "y": 37.28062496299929, "z": -12.5494352206464}, {"x": 29.44750436143612, "y": 37.39833055789531, "z": -12.51918574957911}, {"x": 29.29806284160938, "y": 37.51518268701735, "z": -12.48868827576658}, {"x": 29.14808128631064, "y": 37.63120245588657, "z": -12.45794212297801}, {"x": 28.99755217177302, "y": 37.74639141046753, "z": -12.42694527782509}, {"x": 28.84649360309486, "y": 37.86074755127594, "z": -12.39569693538302}, {"x": 28.69491337226035, "y": 37.97428168296244, "z": -12.36419561394051}, {"x": 28.54282824258171, "y": 38.08699681191723, "z": -12.33244200499732}, {"x": 28.39024494586656, "y": 38.19891593907023, "z": -12.30043784414322}, {"x": 28.23715639591784, "y": 38.31003280558554, "z": -12.26818521932677}, {"x": 28.08358751034689, "y": 38.42034784188768, "z": -12.23568779255091}, {"x": 27.92953750891735, "y": 38.52988107867486, "z": -12.20294746477626}, {"x": 27.77500458149958, "y": 38.63863056316169, "z": -12.16996612635061}, {"x": 27.6199878846003, "y": 38.74660645495822, "z": -12.13674410402067}, {"x": 27.46448253347682, "y": 38.85380189239949, "z": -12.10327991516227}, {"x": 27.30850507959439, "y": 38.96022874170919, "z": -12.06957256652119}, {"x": 27.15203898702027, "y": 39.06590688082819, "z": -12.03561966370375}, {"x": 26.99508107746448, "y": 39.17082616116254, "z": -12.00142047432369}, {"x": 26.83764039527542, "y": 39.27499906744254, "z": -11.96697515986362}, {"x": 26.67971131854047, "y": 39.37843074119616, "z": -11.93228458718021}, {"x": 26.52129748754705, "y": 39.48113125056924, "z": -11.89735179603116}, {"x": 26.3623783715811, "y": 39.5831052041363, "z": -11.86217884084626}, {"x": 26.2029562738638, "y": 39.68433466856824, "z": -11.82676844093323}, {"x": 26.04303411723206, "y": 39.78483536076086, "z": -11.79112205055541}, {"x": 25.8825881771643, "y": 39.88460487228606, "z": -11.75523927859628}, {"x": 25.72161480139693, "y": 39.9836361993865, "z": -11.71911968052496}, {"x": 25.56009971802182, "y": 40.08192719890634, "z": -11.6827606927809}, {"x": 25.39804531388102, "y": 40.17946820077434, "z": -11.64616074284317}, {"x": 25.23544341957991, "y": 40.27627411546644, "z": -11.60931859532001}, {"x": 25.07227066302564, "y": 40.37232843716798, "z": -11.57223366477231}, {"x": 24.90853765026215, "y": 40.46761620158652, "z": -11.53490784921409}, {"x": 24.7442373100595, "y": 40.56213846719331, "z": -11.49734271687618}, {"x": 24.57936536974746, "y": 40.65587857392338, "z": -11.459541331845}, {"x": 24.41391404810552, "y": 40.74883024384639, "z": -11.42150611871802}, {"x": 24.24787336735099, "y": 40.84096242798353, "z": -11.38323807568072}, {"x": 24.08126101736031, "y": 40.93226205837664, "z": -11.34473811396285}, {"x": 23.91406321671201, "y": 41.02272719237165, "z": -11.30600460057649}, {"x": 23.74627845959673, "y": 41.11232772949209, "z": -11.26703625866091}, {"x": 23.57791799724927, "y": 41.20105273390718, "z": -11.22783144404834}, {"x": 23.40898896269465, "y": 41.28888406631765, "z": -11.18838873167441}, {"x": 23.23951230197873, "y": 41.37581821034238, "z": -11.14870903709777}, {"x": 23.0694831721999, "y": 41.46184882795198, "z": -11.10879324886056}, {"x": 22.89892172913004, "y": 41.54694598208491, "z": -11.06864440691193}, {"x": 22.72785378371602, "y": 41.6311134496133, "z": -11.02826564113344}, {"x": 22.55628189545171, "y": 41.71434254116378, "z": -10.98765936858621}, {"x": 22.38422361595615, "y": 41.79662444496166, "z": -10.94682821835995}, {"x": 22.21168291939431, "y": 41.87795132800787, "z": -10.90577218927385}, {"x": 22.03868583459776, "y": 41.95830934224922, "z": -10.86449116950919}, {"x": 21.86524751276105, "y": 42.03771787773906, "z": -10.82298384514648}, {"x": 21.69136394254759, "y": 42.11617028981915, "z": -10.78124837329428}, {"x": 21.51706113996795, "y": 42.19366307022325, "z": -10.73928463597862}, {"x": 21.34235060256161, "y": 42.27020802079625, "z": -10.6970922635202}, {"x": 21.16724930314548, "y": 42.34580760483549, "z": -10.65467330651652}, {"x": 20.99176352290746, "y": 42.42047873933689, "z": -10.61203041923042}, {"x": 20.81589365311225, "y": 42.49420981169123, "z": -10.56916629128651}, {"x": 20.63966835237444, "y": 42.56700572237263, "z": -10.52608444018157}, {"x": 20.46308351356888, "y": 42.6388854152552, "z": -10.48278605650071}, {"x": 20.28614002317576, "y": 42.70984321341912, "z": -10.43927216284156}, {"x": 20.10884222208803, "y": 42.77988851077703, "z": -10.39554207785933}, {"x": 19.93119167848605, "y": 42.84901847491312, "z": -10.35159389650939}, {"x": 19.7532039311035, "y": 42.91725003139888, "z": -10.30742668748381}, {"x": 19.57486297829938, "y": 42.98459854758745, "z": -10.26303873269432}, {"x": 19.3961745680916, "y": 43.05105295964131, "z": -10.21843055773912}, {"x": 19.21715141833466, "y": 43.11663071454811, "z": -10.17360351119713}, {"x": 19.03778739721912, "y": 43.18133808579297, "z": -10.12855961090881}, {"x": 18.85808587433601, "y": 43.24518361479355, "z": -10.08330241644181}, {"x": 18.67803063230268, "y": 43.30816883196529, "z": -10.03783385547568}, {"x": 18.49762996778093, "y": 43.37028203534889, "z": -9.992156084481959}, {"x": 18.316882612544, "y": 43.43154450507304, "z": -9.946269495096633}, {"x": 18.13576540082215, "y": 43.49195187790119, "z": -9.900172883954939}, {"x": 17.95428024819509, "y": 43.55149993372733, "z": -9.853865261323213}, {"x": 17.7724174090946, "y": 43.61019265826913, "z": -9.807344110011863}, {"x": 17.59017941060575, "y": 43.66802834678919, "z": -9.760608642765948}, {"x": 17.40755488142599, "y": 43.7250231075103, "z": -9.71365865490647}, {"x": 17.22452508930661, "y": 43.78115993616441, "z": -9.666494912557289}, {"x": 17.04110284211223, "y": 43.83643259561752, "z": -9.619120307796878}, {"x": 16.85727443566176, "y": 43.89084721659158, "z": -9.571536885510268}, {"x": 16.67303097092071, "y": 43.94438793916062, "z": -9.523747657969237}, {"x": 16.48836182317575, "y": 43.99704896864883, "z": -9.475754221112963}, {"x": 16.30325757058466, "y": 44.04880423421873, "z": -9.427556613507676}, {"x": 16.11772813948934, "y": 44.09964952978502, "z": -9.379154683442248}, {"x": 15.93175074856283, "y": 44.14958141900396, "z": -9.330546096296484}, {"x": 15.7453231853444, "y": 44.19856909924241, "z": -9.28172956397851}, {"x": 15.55845355251633, "y": 44.24660509690267, "z": -9.232703851535192}, {"x": 15.37114217604282, "y": 44.29367255052854, "z": -9.183468606699332}, {"x": 15.18340078298218, "y": 44.339764263657, "z": -9.134025845720036}, {"x": 14.99522048584893, "y": 44.38486417538964, "z": -9.084377365812188}, {"x": 14.80662213237781, "y": 44.42893976880699, "z": -9.034526740534925}, {"x": 14.617623001412, "y": 44.47199329585428, "z": -8.98447682177779}, {"x": 14.4282195558738, "y": 44.51400645563957, "z": -8.93422939455754}, {"x": 14.23842861136803, "y": 44.55496255352496, "z": -8.8837860167459}, {"x": 14.04825651971604, "y": 44.59484818300763, "z": -8.83314568227784}, {"x": 13.85772971052585, "y": 44.63364918632416, "z": -8.782307782517119}, {"x": 13.66685945876966, "y": 44.67137825900269, "z": -8.731270925356217}, {"x": 13.47564747574818, "y": 44.7080183818412, "z": -8.680034039510682}, {"x": 13.28412735723441, "y": 44.74356416245014, "z": -8.628598132774695}, {"x": 13.09231193623921, "y": 44.77802532320777, "z": -8.576964159201552}, {"x": 12.90021905093788, "y": 44.81139895084407, "z": -8.52513541384138}, {"x": 12.70785741153787, "y": 44.84369369273832, "z": -8.47311511361943}, {"x": 12.51523622082477, "y": 44.87489350580232, "z": -8.420906097814349}, {"x": 12.32238625263258, "y": 44.9050065307441, "z": -8.368511337040385}, {"x": 12.12930209086492, "y": 44.93404683223697, "z": -8.315931165911131}, {"x": 11.93599145700404, "y": 44.96200417270954, "z": -8.263165875589387}, {"x": 11.74246635067137, "y": 44.98888826954971, "z": -8.210214220893352}, {"x": 11.54873441774104, "y": 45.01469981355337, "z": -8.157074524334144}, {"x": 11.35481165368726, "y": 45.0394571187123, "z": -8.103746567826665}, {"x": 11.16068652989872, "y": 45.06316952551974, "z": -8.050229842916735}, {"x": 10.96637545117143, "y": 45.08582635077914, "z": -7.996526376529681}, {"x": 10.77189334970579, "y": 45.10744930124925, "z": -7.942638652192778}, {"x": 10.57723458281813, "y": 45.12804255355583, "z": -7.888569540550575}, {"x": 10.38240563427063, "y": 45.14761196701733, "z": -7.834322681860112}]', 1007, 90560, '#8B7355', '2025-11-29 08:13:05.313195', '2025-11-29 08:20:59.290859');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (3, '136199', '[{"x": 76.61222435185891, "y": -8.49309334574897, "z": -50.08335601571878}, {"x": 76.78517046197373, "y": -8.269769002260398, "z": -50.0056363214735}, {"x": 76.95702973763758, "y": -8.045882921500318, "z": -49.92713750233225}, {"x": 77.12770315777118, "y": -7.821426150138479, "z": -49.84786032048806}, {"x": 77.2970433734986, "y": -7.596393071196331, "z": -49.76780506519276}, {"x": 77.46494439730984, "y": -7.370834260160729, "z": -49.68697181950991}, {"x": 77.63127105418407, "y": -7.144842993595433, "z": -49.60536087882528}, {"x": 77.79595866271575, "y": -6.918529498228196, "z": -49.52297295508513}, {"x": 77.95894866245236, "y": -6.692061099680426, "z": -49.43980950819599}, {"x": 78.12025812513616, "y": -6.465574609257041, "z": -49.35587322550333}, {"x": 78.27995074044988, "y": -6.239235684055581, "z": -49.27116801174228}, {"x": 78.43811894815212, "y": -6.013132619665986, "z": -49.18569867839769}, {"x": 78.59490481358851, "y": -5.787353243918504, "z": -49.09947084491104}, {"x": 78.75042470390754, "y": -5.561910895613511, "z": -49.01249055797376}, {"x": 78.9048287552289, "y": -5.336789192775004, "z": -48.92476372763109}, {"x": 79.0582004522254, "y": -5.111943960360089, "z": -48.83629594308321}, {"x": 79.21064447585461, "y": -4.887291526574188, "z": -48.74709246529375}, {"x": 79.3622052223101, "y": -4.662761313781788, "z": -48.65715794538602}, {"x": 79.51291776513561, "y": -4.438235131870017, "z": -48.56649632992544}, {"x": 79.66278750224656, "y": -4.2136417252364, "z": -48.47511112896823}, {"x": 79.81178743837518, "y": -3.988865427672304, "z": -48.38300531052383}, {"x": 79.95988928607258, "y": -3.763834740650988, "z": -48.29018115069059}, {"x": 80.1070052506346, "y": -3.538466429276557, "z": -48.19664044783657}, {"x": 80.25307478145923, "y": -3.312707361601301, "z": -48.10238460792762}, {"x": 80.39797261421296, "y": -3.086527579563213, "z": -48.0074144160539}, {"x": 80.54160029274439, "y": -2.859911353753508, "z": -47.9117302255266}, {"x": 80.68382552226464, "y": -2.632912833069099, "z": -47.81533232571665}, {"x": 80.82454533700245, "y": -2.405581114113674, "z": -47.71822093976213}, {"x": 80.96367154991368, "y": -2.178048513696954, "z": -47.62039655078897}, {"x": 81.10114440891304, "y": -1.950435532869944, "z": -47.52186049826766}, {"x": 81.23698201203078, "y": -1.722911165162948, "z": -47.42261521035442}, {"x": 81.37121494353545, "y": -1.495608118985777, "z": -47.32266415900281}, {"x": 81.50396138449848, "y": -1.268648065987902, "z": -47.22201198748599}, {"x": 81.63532844378679, "y": -1.04211548693104, "z": -47.12066432060031}, {"x": 81.76547639697885, "y": -0.8160267794669782, "z": -47.01862709573755}, {"x": 81.89452553940143, "y": -0.5903879268758941, "z": -46.91590629011281}, {"x": 82.02260206763353, "y": -0.3651302529288711, "z": -46.81250779250233}, {"x": 82.14980477921205, "y": -0.1402002061885831, "z": -46.70843696217989}, {"x": 82.2761903052278, "y": 0.08451837234736531, "z": -46.60369847636454}, {"x": 82.40181295478767, "y": 0.3091101764712969, "z": -46.49829651130293}, {"x": 82.52666571582242, "y": 0.5336916767463566, "z": -46.39223464082335}, {"x": 82.65075732456818, "y": 0.758367737359165, "z": -46.28551569904847}, {"x": 82.77402410325801, "y": 0.9832303494873422, "z": -46.17814195657846}, {"x": 82.8964241429658, "y": 1.208378458365238, "z": -46.07011521791829}, {"x": 83.01786089047685, "y": 1.433865704251785, "z": -45.96143660564453}, {"x": 83.13823470930761, "y": 1.659764259375118, "z": -45.85210665318487}, {"x": 83.25742869478952, "y": 1.886068932662593, "z": -45.74212556578951}, {"x": 83.37530797538781, "y": 2.1127865403426, "z": -45.63149313765134}, {"x": 83.49176422111005, "y": 2.339848133798003, "z": -45.5202089610148}, {"x": 83.60666795138576, "y": 2.567167545997164, "z": -45.40827290751113}, {"x": 83.71997013316556, "y": 2.794613749875913, "z": -45.29568545226555}, {"x": 83.83162081194037, "y": 3.022033225069572, "z": -45.1824479054415}, {"x": 83.94166142784606, "y": 3.24928877612416, "z": -45.06856275115442}, {"x": 84.05015366196912, "y": 3.476227797073268, "z": -44.9540337482558}, {"x": 84.1572157024388, "y": 3.702777978136239, "z": -44.83886554706793}, {"x": 84.26297923395929, "y": 3.928865876703757, "z": -44.72306338027543}, {"x": 84.36756613146936, "y": 4.154503806978427, "z": -44.60663278006609}, {"x": 84.4711152092144, "y": 4.379707841430437, "z": -44.48957913202725}, {"x": 84.57370355608158, "y": 4.604551228607072, "z": -44.37190736525069}, {"x": 84.6754249002263, "y": 4.829114131465559, "z": -44.25362192849668}, {"x": 84.77630295840493, "y": 5.053483389270093, "z": -44.13472672126262}, {"x": 84.87637484715393, "y": 5.277773922137895, "z": -44.01522497542169}, {"x": 84.9756178989123, "y": 5.502066257320793, "z": -43.89511933925438}, {"x": 85.0740052184679, "y": 5.726475222421231, "z": -43.77441194211416}, {"x": 85.17148556464221, "y": 5.951062808835305, "z": -43.65310434242756}, {"x": 85.26797054587428, "y": 6.175921133319346, "z": -43.53119750870388}, {"x": 85.36337883064336, "y": 6.40108282520946, "z": -43.40869191773864}, {"x": 85.45757751258529, "y": 6.626580045721578, "z": -43.28558759839936}, {"x": 85.550466546065, "y": 6.852403976190376, "z": -43.16188415668218}, {"x": 85.64189778672035, "y": 7.078500688312592, "z": -43.03758100931957}, {"x": 85.73177905481866, "y": 7.304795046509899, "z": -42.91267773633012}, {"x": 85.8200157137449, "y": 7.531144497185346, "z": -42.78717437431797}, {"x": 85.90657145977627, "y": 7.757422847890324, "z": -42.66107178236305}, {"x": 85.99146051804156, "y": 7.983447107625094, "z": -42.53437200325385}, {"x": 86.07473843143478, "y": 8.20909248322542, "z": -42.40707834722859}, {"x": 86.1565294276231, "y": 8.434230857338356, "z": -42.27919519461879}, {"x": 86.23694399205417, "y": 8.658799703570903, "z": -42.15072767754936}, {"x": 86.31614843847035, "y": 8.882772500969777, "z": -42.02168139097729}, {"x": 86.39425540228648, "y": 9.1061616782193, "z": -41.89206190432324}, {"x": 86.47139657500831, "y": 9.32903433092994, "z": -41.76187443332684}, {"x": 86.54764981939363, "y": 9.551445625021053, "z": -41.63112381602389}, {"x": 86.62308454840193, "y": 9.773511481211724, "z": -41.4998143509014}, {"x": 86.69773883775126, "y": 9.995311711933883, "z": -41.36794969572328}, {"x": 86.7716097621575, "y": 10.21696900302045, "z": -41.23553294098681}, {"x": 86.84470057657374, "y": 10.43856852311183, "z": -41.10256669269905}, {"x": 86.91695025481636, "y": 10.66021499612, "z": -40.96905293812456}, {"x": 86.98831685502628, "y": 10.88199017936539, "z": -40.834993030326}, {"x": 87.05869453264769, "y": 11.10395043504772, "z": -40.70038787904489}, {"x": 87.12799909613591, "y": 11.32615343305964, "z": -40.5652378442341}, {"x": 87.19609894052185, "y": 11.5485927457697, "z": -40.42954271508086}, {"x": 87.26287461953044, "y": 11.77126483802143, "z": -40.29330206402151}, {"x": 87.32821469478039, "y": 11.99408261547122, "z": -40.15651548161191}, {"x": 87.39201272440395, "y": 12.21696544372881, "z": -40.01918274909428}, {"x": 87.45422689280478, "y": 12.43976329200026, "z": -39.88130435422947}, {"x": 87.51482893949095, "y": 12.66233476499061, "z": -39.74288193132777}, {"x": 87.57388715276679, "y": 12.88453814949692, "z": -39.60391823176319}, {"x": 87.63146734960473, "y": 13.10624852168776, "z": -39.46441704253619}, {"x": 87.68770909703976, "y": 13.32740008524049, "z": -39.32438313716241}, {"x": 87.74273645657043, "y": 13.54794099490653, "z": -39.18382175510674}, {"x": 87.79668266259772, "y": 13.76790629162299, "z": -39.0427380607176}, {"x": 87.84966424178324, "y": 13.98731766419771, "z": -38.90113707066606}, {"x": 87.90176218182602, "y": 14.20626826639286, "z": -38.75902344154008}, {"x": 87.95305741913103, "y": 14.42483610465833, "z": -38.61640113702895}, {"x": 88.00356184424395, "y": 14.64312922910954, "z": -38.4732735278285}, {"x": 88.05330944486622, "y": 14.86124959485467, "z": -38.3296435493287}, {"x": 88.10226359182477, "y": 15.07929309605901, "z": -38.18551346447229}, {"x": 88.15039979655587, "y": 15.29737098023356, "z": -38.04088487328305}, {"x": 88.1976428675246, "y": 15.51554515982703, "z": -37.89575895978682}, {"x": 88.2439136378292, "y": 15.73390746585398, "z": -37.75013634134098}, {"x": 88.28911010695514, "y": 15.95248333147137, "z": -37.60401695195085}, {"x": 88.33309841582229, "y": 16.17130904796848, "z": -37.45740032052275}, {"x": 88.37576990524731, "y": 16.39035193040486, "z": -37.31028574235246}, {"x": 88.41697732617091, "y": 16.60956532925153, "z": -37.16267224458989}, {"x": 88.45663338678604, "y": 16.82885237981793, "z": -37.01455905982885}, {"x": 88.49464266320132, "y": 17.04807155156571, "z": -36.86594619074011}, {"x": 88.53099616999394, "y": 17.26708711822663, "z": -36.7168344932948}, {"x": 88.56570551309542, "y": 17.48572595690484, "z": -36.56722592545614}, {"x": 88.59884819285105, "y": 17.7038731783102, "z": -36.41712377678599}, {"x": 88.63054234892792, "y": 17.92140614916593, "z": -36.26653232059662}, {"x": 88.66090698116889, "y": 18.13829083833754, "z": -36.11545632206605}, {"x": 88.69009193402142, "y": 18.35450008388779, "z": -35.96390084128277}, {"x": 88.71819930778362, "y": 18.57006806950903, "z": -35.81187093247036}, {"x": 88.74535432584874, "y": 18.78505524782035, "z": -35.65937116535573}, {"x": 88.77160919207543, "y": 18.99953270207739, "z": -35.50640560970282}, {"x": 88.79703143563704, "y": 19.21360523238739, "z": -35.35297794960071}, {"x": 88.82163478330807, "y": 19.42735107574494, "z": -35.19909123072463}, {"x": 88.84541941922501, "y": 19.64089239644051, "z": -35.04474787508009}, {"x": 88.86836291969774, "y": 19.85429758488799, "z": -34.88994989292941}, {"x": 88.8904061749687, "y": 20.06767051442869, "z": -34.73469875878795}, {"x": 88.91149630833593, "y": 20.28106926679968, "z": -34.57899531175747}, {"x": 88.93151816320633, "y": 20.49455195570463, "z": -34.42283991635415}, {"x": 88.95038864586239, "y": 20.70814410373748, "z": -34.26623255282207}, {"x": 88.96796887636913, "y": 20.9218332934379, "z": -34.10917273736867}, {"x": 88.98415502715686, "y": 21.13559341465983, "z": -33.95165979084011}, {"x": 88.99882932489255, "y": 21.34932011562082, "z": -33.79369327561583}, {"x": 89.01191769393361, "y": 21.56291920818382, "z": -33.63527318492947}, {"x": 89.02338735463836, "y": 21.77622651164498, "z": -33.47640030242358}, {"x": 89.0332387975601, "y": 21.98910920310211, "z": -33.31707661605204}, {"x": 89.0415575074751, "y": 22.20141402985439, "z": -33.15730533734934}, {"x": 89.04842852535738, "y": 22.41304251617084, "z": -32.99709065670577}, {"x": 89.05400524571505, "y": 22.62393127274708, "z": -32.83643752166635}, {"x": 89.05840628664399, "y": 22.83405145213207, "z": -32.67535128055279}, {"x": 89.06178095276547, "y": 23.04344393491923, "z": -32.51383719147214}, {"x": 89.06422890655944, "y": 23.25214734427455, "z": -32.35190017463984}, {"x": 89.06583869653834, "y": 23.46026559429929, "z": -32.1895447263494}, {"x": 89.06667592835538, "y": 23.66787410182384, "z": -32.02677477636656}, {"x": 89.06675858187052, "y": 23.87509985048897, "z": -31.86359360082365}, {"x": 89.0661075230174, "y": 24.08203565223754, "z": -31.70000390271393}, {"x": 89.06468014794224, "y": 24.28879091587648, "z": -31.53600783563521}, {"x": 89.06245421240395, "y": 24.49546413425904, "z": -31.37160691396787}, {"x": 89.05933723965212, "y": 24.70212980826159, "z": -31.20680205426148}, {"x": 89.05525494177088, "y": 24.90886712063584, "z": -31.04159364363523}, {"x": 89.05008864733654, "y": 25.11569721849608, "z": -30.87598152839241}, {"x": 89.04371692720302, "y": 25.32265578939836, "z": -30.70996507211331}, {"x": 89.03601545140249, "y": 25.52969396009463, "z": -30.54354336591411}, {"x": 89.02685157085375, "y": 25.73676542804203, "z": -30.37671553376467}, {"x": 89.01614484364916, "y": 25.94375398746233, "z": -30.2094809859938}, {"x": 89.00380879841609, "y": 26.15053092596527, "z": -30.04183979855587}, {"x": 88.98985378367921, "y": 26.35694468481407, "z": -29.87379315122586}, {"x": 88.97429874174543, "y": 26.56283936875499, "z": -29.70534340039254}, {"x": 88.9572444385177, "y": 26.76810890790974, "z": -29.53649398172005}, {"x": 88.93879757406594, "y": 26.97264589601599, "z": -29.36724924372415}, {"x": 88.91909415016691, "y": 27.17643417991509, "z": -29.19761407201193}, {"x": 88.89826909465509, "y": 27.37945774956132, "z": -29.02759341157378}, {"x": 88.876421374272, "y": 27.58177676328658, "z": -28.85719196691594}, {"x": 88.85366217760682, "y": 27.78344570749277, "z": -28.6864141329449}, {"x": 88.83003440285509, "y": 27.98455952008874, "z": -28.51526375591718}, {"x": 88.80559632052825, "y": 28.18521793397242, "z": -28.34374402393601}, {"x": 88.78033740565813, "y": 28.38550944543324, "z": -28.17185765089067}, {"x": 88.75426091654485, "y": 28.58554905179336, "z": -27.99960680139774}, {"x": 88.7273169788502, "y": 28.78540885606594, "z": -27.82699297252093}, {"x": 88.69944411963101, "y": 28.9851905527284, "z": -27.65401713272074}, {"x": 88.67056650300799, "y": 29.18493533829002, "z": -27.48067978756083}, {"x": 88.64056835556508, "y": 29.38470698689814, "z": -27.30698084202128}, {"x": 88.60934885764118, "y": 29.58450716383735, "z": -27.13291969110468}, {"x": 88.57676126808926, "y": 29.78432105120403, "z": -26.95849555227968}, {"x": 88.54270802097028, "y": 29.98409432512833, "z": -26.78370753871354}, {"x": 88.5070614742736, "y": 30.18372062625071, "z": -26.60855487578344}, {"x": 88.46976536051163, "y": 30.38308199243, "z": -26.43303751129546}, {"x": 88.43078635063235, "y": 30.58200331861194, "z": -26.25715641547621}, {"x": 88.39015294182684, "y": 30.78035296775788, "z": -26.0809136151026}, {"x": 88.34794710168732, "y": 30.977968641611, "z": -25.90431238473143}, {"x": 88.30427307393768, "y": 31.17476484366341, "z": -25.72735714828057}, {"x": 88.25928790099982, "y": 31.37067272786245, "z": -25.55005289019314}, {"x": 88.21310693799217, "y": 31.56568683153264, "z": -25.37240479814639}, {"x": 88.16588267520518, "y": 31.75983670448609, "z": -25.19441813923289}, {"x": 88.11770418317815, "y": 31.95317440792702, "z": -25.01609783502432}, {"x": 88.06866847358296, "y": 32.1458015694914, "z": -24.83744820950739}, {"x": 88.01882025547248, "y": 32.33779147489534, "z": -24.65847315857621}, {"x": 87.96819137413975, "y": 32.52927002648043, "z": -24.47917609322499}, {"x": 87.91679009835991, "y": 32.72032079040299, "z": -24.29955969813399}, {"x": 87.86457708957853, "y": 32.91106130057621, "z": -24.11962610330096}, {"x": 87.81152577763234, "y": 33.10156829510235, "z": -23.93937701360391}, {"x": 87.75754391425473, "y": 33.29192713809638, "z": -23.75881342911074}, {"x": 87.70256033699695, "y": 33.48220093019144, "z": -23.57793571715559}, {"x": 87.64644443293179, "y": 33.67241144648192, "z": -23.39674388849476}, {"x": 87.58909237185426, "y": 33.86257947877799, "z": -23.21523751551845}, {"x": 87.53036997544754, "y": 34.05265087569254, "z": -23.03341583327469}, {"x": 87.47016389241195, "y": 34.24257188220466, "z": -22.85127824819116}, {"x": 87.40839677604671, "y": 34.43220686496786, "z": -22.66882468381736}, {"x": 87.34500968331095, "y": 34.62143625375518, "z": -22.48605572609764}, {"x": 87.28002554199374, "y": 34.8100971354028, "z": -22.30297305809753}, {"x": 87.21347995349724, "y": 34.99805353631574, "z": -22.11957970369577}, {"x": 87.14549638353822, "y": 35.18520099067106, "z": -21.93587962293429}, {"x": 87.07617759654023, "y": 35.37146323694258, "z": -21.7518774556714}, {"x": 87.0056720658255, "y": 35.55683429579636, "z": -21.56757834694531}, {"x": 86.93409871862251, "y": 35.74131439057056, "z": -21.3829874035976}, {"x": 86.8615650099391, "y": 35.92498365025423, "z": -21.19810934936204}, {"x": 86.7881588001344, "y": 36.10789766372027, "z": -21.01294853391956}, {"x": 86.71392328124695, "y": 36.29016772316493, "z": -20.82750884171372}, {"x": 86.6389070276537, "y": 36.47188472702211, "z": -20.64179346375034}, {"x": 86.56308710800205, "y": 36.65315645738996, "z": -20.4558050068656}, {"x": 86.48646382873251, "y": 36.83408344444869, "z": -20.26954562749364}, {"x": 86.4089706504525, "y": 37.01474735755055, "z": -20.08301681463723}, {"x": 86.3305509070121, "y": 37.19524628137899, "z": -19.89621942294813}, {"x": 86.25110290006978, "y": 37.37561873848873, "z": -19.70915385801323}, {"x": 86.17051837137093, "y": 37.55592654541081, "z": -19.52181999580421}, {"x": 86.08868027273341, "y": 37.73615817405231, "z": -19.33421719874396}, {"x": 86.00544288991209, "y": 37.91630326414683, "z": -19.14634462357568}, {"x": 85.92070511766059, "y": 38.09628002525499, "z": -18.95820148280643}, {"x": 85.83434486183789, "y": 38.27598640333672, "z": -18.76978724833436}, {"x": 85.74632048276295, "y": 38.45528676239394, "z": -18.58110209562417}, {"x": 85.65659784678842, "y": 38.63401158253098, "z": -18.39214731977989}, {"x": 85.56523278346843, "y": 38.81202648733377, "z": -18.20292537847186}, {"x": 85.47230177394184, "y": 38.98918297548732, "z": -18.01343981837526}, {"x": 85.3779219995819, "y": 39.1654135859522, "z": -17.82369513869243}, {"x": 85.28223589772227, "y": 39.34065182584963, "z": -17.63369638130998}, {"x": 85.18536046430975, "y": 39.5149174225896, "z": -17.44344867779177}, {"x": 85.08743094563992, "y": 39.68823565067664, "z": -17.25295701962001}, {"x": 84.98852018676332, "y": 39.86067366277629, "z": -17.06222609193215}, {"x": 84.88872164276249, "y": 40.03231924056898, "z": -16.87126006681236}, {"x": 84.78805654296858, "y": 40.2032551599473, "z": -16.68006256326682}, {"x": 84.68655561249669, "y": 40.37359439397729, "z": -16.48863669175139}, {"x": 84.58420389893486, "y": 40.54341080184383, "z": -16.29698502995731}, {"x": 84.48096850867229, "y": 40.71281931026228, "z": -16.10510956895411}, {"x": 84.37679985602183, "y": 40.88187777396676, "z": -15.91301175074343}, {"x": 84.27160690687181, "y": 41.05066831956259, "z": -15.72069255347873}, {"x": 84.16531403225504, "y": 41.21922608264164, "z": -15.52815242110711}, {"x": 84.05778513617759, "y": 41.38757435934913, "z": -15.33539134078264}, {"x": 83.94892340318874, "y": 41.55570058831602, "z": -15.14240906269236}, {"x": 83.83859336081723, "y": 41.7235404074403, "z": -14.94920526918368}, {"x": 83.72670863994459, "y": 41.89102065227998, "z": -14.75577983195627}, {"x": 83.61319138182266, "y": 42.05799133943026, "z": -14.56213320617528}, {"x": 83.49801938870422, "y": 42.22432690666741, "z": -14.36826685238533}, {"x": 83.38122933262801, "y": 42.38985678613586, "z": -14.17418334249101}, {"x": 83.26288103312012, "y": 42.55446666421699, "z": -13.97988635853469}, {"x": 83.14310974979219, "y": 42.71804687465788, "z": -13.78538065590659}, {"x": 83.0220284150334, "y": 42.88055044801143, "z": -13.59067162119914}, {"x": 82.89979574877138, "y": 43.04197736572349, "z": -13.39576480659562}, {"x": 82.77651681901031, "y": 43.20234806780978, "z": -13.20066573110686}, {"x": 82.65231266947795, "y": 43.36174605882522, "z": -13.00537963276124}, {"x": 82.52725422213094, "y": 43.52023818640853, "z": -12.80991118137917}, {"x": 82.40138960955628, "y": 43.67794651676873, "z": -12.61426445421644}, {"x": 82.27475156459086, "y": 43.83495343270311, "z": -12.41844303853893}, {"x": 82.14732169286314, "y": 43.9913832497566, "z": -12.22244988085285}, {"x": 82.01908863893499, "y": 44.1473262447178, "z": -12.02628722072892}, {"x": 81.88997548128003, "y": 44.30287518558925, "z": -11.82995682539699}, {"x": 81.7599297667165, "y": 44.45811313874168, "z": -11.63345990848924}, {"x": 81.62883298414171, "y": 44.61308821333022, "z": -11.43679700588677}, {"x": 81.49658328511683, "y": 44.76784989642882, "z": -11.23996822924}, {"x": 81.36304955231986, "y": 44.92237630201461, "z": -11.04297340954106}, {"x": 81.22810360596445, "y": 45.07665568109897, "z": -10.84581208493552}, {"x": 81.09163523740888, "y": 45.23058853329287, "z": -10.64848383654498}, {"x": 80.95353946390357, "y": 45.38407466778106, "z": -10.45098882832653}, {"x": 80.81378842219722, "y": 45.53696145067013, "z": -10.25332796990748}, {"x": 80.67235762427809, "y": 45.68909913512729, "z": -10.05550313403783}, {"x": 80.52932117024109, "y": 45.84034635854686, "z": -9.857517510871215}, {"x": 80.38475654882667, "y": 45.99057604436974, "z": -9.659375413850285}, {"x": 80.23879968811829, "y": 46.13973558479383, "z": -9.461081802518885}, {"x": 80.09157402100587, "y": 46.2877741713936, "z": -9.262642099631703}, {"x": 79.94320650290238, "y": 46.43472894662407, "z": -9.064061916102753}, {"x": 79.79381519179395, "y": 46.58062991250897, "z": -8.865346488167715}, {"x": 79.6434661035265, "y": 46.72556810622115, "z": -8.666500590080407}, {"x": 79.49223766744817, "y": 46.86961980384419, "z": -8.467528631088534}, {"x": 79.34013814085137, "y": 47.01288587480449, "z": -8.268434389690933}, {"x": 79.18719143864163, "y": 47.15547142121374, "z": -8.069220949702821}, {"x": 79.0333546808091, "y": 47.29745652245023, "z": -7.869890939158855}, {"x": 78.87859760557478, "y": 47.43894710979291, "z": -7.670446476589262}, {"x": 78.72284422014579, "y": 47.57999836679011, "z": -7.470888978934457}, {"x": 78.5660012830774, "y": 47.72069068935177, "z": -7.27121938731404}, {"x": 78.40797240654456, "y": 47.8610362424692, "z": -7.071438309767883}, {"x": 78.2486223295244, "y": 48.0010590553085, "z": -6.871545838932769}, {"x": 78.08784472148767, "y": 48.14071888097371, "z": -6.671541793166337}, {"x": 77.9254985864248, "y": 48.27994530065927, "z": -6.471426171750185}, {"x": 77.76151158416617, "y": 48.41863495845326, "z": -6.27119925257232}, {"x": 77.59580308914961, "y": 48.55663501167703, "z": -6.070861920173684}, {"x": 77.42837375196731, "y": 48.69380393463534, "z": -5.870416210271979}, {"x": 77.25926076750763, "y": 48.82996402974786, "z": -5.669865419786865}, {"x": 77.08855172619126, "y": 48.9650095479574, "z": -5.469213913948386}, {"x": 76.91637722428277, "y": 49.0988274314023, "z": -5.268467031842752}, {"x": 76.74286194900327, "y": 49.23138758862082, "z": -5.067630840451614}, {"x": 76.56816659521975, "y": 49.3626818885604, "z": -4.866711493583357}, {"x": 76.39239046834096, "y": 49.49275227373608, "z": -4.665714979606586}, {"x": 76.21565737829734, "y": 49.62166971721528, "z": -4.464647079284413}, {"x": 76.03802507067287, "y": 49.74950814853116, "z": -4.263513038299392}, {"x": 75.85955341485085, "y": 49.87638604983934, "z": -4.062317470575597}, {"x": 75.68025442919898, "y": 50.00238201460314, "z": -3.861064492682919}, {"x": 75.50012148657919, "y": 50.12762013670375, "z": -3.65975769032441}, {"x": 75.31913328524689, "y": 50.25217800528051, "z": -3.458399971486904}, {"x": 75.13721591018673, "y": 50.37615962832502, "z": -3.256993695311187}, {"x": 74.95431318543942, "y": 50.49962631077311, "z": -3.055540766031441}, {"x": 74.77030531600936, "y": 50.62263369945192, "z": -2.854042496689929}, {"x": 74.58509905710399, "y": 50.74521467643745, "z": -2.652499698833624}, {"x": 74.39855089755724, "y": 50.86734556675695, "z": -2.450912936687772}, {"x": 74.21055313527003, "y": 50.98899766513144, "z": -2.249282639468685}, {"x": 74.02099194015446, "y": 51.11006187365013, "z": -2.047609331050147}, {"x": 73.82978607188572, "y": 51.23043660835705, "z": -1.845894125150859}, {"x": 73.63691398057755, "y": 51.3499525139785, "z": -1.644139068140901}, {"x": 73.44237889676629, "y": 51.46847618561806, "z": -1.442347289947358}, {"x": 73.24626910354007, "y": 51.58586475700662, "z": -1.240523098370982}, {"x": 73.04866863182318, "y": 51.70201850079782, "z": -1.038671874266655}, {"x": 72.8497302341317, "y": 51.81688897354571, "z": -0.8367996628394837}, {"x": 72.64956690880322, "y": 51.93045397476688, "z": -0.634912757545016}, {"x": 72.44831183257777, "y": 52.04276125998294, "z": -0.4330174324391752}, {"x": 72.24606199255823, "y": 52.15384795599984, "z": -0.2311196783812856}, {"x": 72.04289032095276, "y": 52.26382023938014, "z": -0.02922497318292971}, {"x": 71.8388528397407, "y": 52.37275151502456, "z": 0.172661769299908}, {"x": 71.6339534585501, "y": 52.48075578853739, "z": 0.3745361512827811}, {"x": 71.42820854438303, "y": 52.58792473733781, "z": 0.5763943806806303}, {"x": 71.22156258566376, "y": 52.69435659948477, "z": 0.7782332608290202}, {"x": 71.013982094034, "y": 52.80014324741025, "z": 0.9800501199600261}, {"x": 70.80537297704883, "y": 52.90534419307588, "z": 1.181842789648039}, {"x": 70.59565023001632, "y": 53.01003496497178, "z": 1.383609643715271}, {"x": 70.3846919442963, "y": 53.11422143767196, "z": 1.585349554836296}, {"x": 70.17237035711182, "y": 53.21792206699501, "z": 1.787061666105745}, {"x": 69.95856846270824, "y": 53.32107601650537, "z": 1.988745338288328}, {"x": 69.74314973679857, "y": 53.42361738364729, "z": 2.190399900653666}, {"x": 69.52604377137158, "y": 53.52541427590356, "z": 2.3920241730038}, {"x": 69.30717825250346, "y": 53.6263193034117, "z": 2.593616140547506}, {"x": 69.08657487703293, "y": 53.72618132698327, "z": 2.795172741517908}, {"x": 68.86426610183929, "y": 53.82483517783625, "z": 2.99668968527476}, {"x": 68.64036234573106, "y": 53.92217920548452, "z": 3.198161461008146}, {"x": 68.41498366767674, "y": 54.0181136444914, "z": 3.399581770231155}, {"x": 68.18825973481195, "y": 54.11262840020151, "z": 3.600943917449325}, {"x": 67.96033143188492, "y": 54.20570998626238, "z": 3.802241003832909}, {"x": 67.73129524510976, "y": 54.29741811275124, "z": 4.003466322606176}, {"x": 67.50125971460511, "y": 54.38781323508262, "z": 4.204613669508857}, {"x": 67.27026288816393, "y": 54.47697773210907, "z": 4.405677246939246}, {"x": 67.03836387448911, "y": 54.56501081768052, "z": 4.606651723580942}, {"x": 66.80555323778299, "y": 54.65199495737859, "z": 4.807532414871286}, {"x": 66.57182547469424, "y": 54.73804161903493, "z": 5.008315161112284}, {"x": 66.33713816964527, "y": 54.82321295987396, "z": 5.208996195370103}, {"x": 66.10142739906446, "y": 54.90760899376529, "z": 5.40957229796455}, {"x": 65.86461971852533, "y": 54.99126901026131, "z": 5.610040830847186}, {"x": 65.62659744739666, "y": 55.07424293662807, "z": 5.810399456549855}, {"x": 65.38727007025442, "y": 55.15653087731031, "z": 6.010646199253887}, {"x": 65.14649335742378, "y": 55.23810769858436, "z": 6.210779451440744}, {"x": 64.90417387068919, "y": 55.31891218037207, "z": 6.410797517917652}, {"x": 64.66020190043533, "y": 55.39882369114171, "z": 6.610698282044154}, {"x": 64.41453146145882, "y": 55.47772766328359, "z": 6.810479061767817}, {"x": 64.16714533401903, "y": 55.55544801557459, "z": 7.010136174225834}, {"x": 63.91808270056386, "y": 55.63185667106735, "z": 7.209664563081939}, {"x": 63.66744460546977, "y": 55.70680971115837, "z": 7.409058084641726}, {"x": 63.41533301614702, "y": 55.78023686472512, "z": 7.60830974626624}, {"x": 63.1619063608366, "y": 55.85208660469382, "z": 7.807411843796838}, {"x": 62.90727901034128, "y": 55.92236303481501, "z": 8.006356469921705}, {"x": 62.65159254795009, "y": 55.99111669116895, "z": 8.205136004230223}, {"x": 62.39492463215899, "y": 56.05840016861981, "z": 8.403743134957063}, {"x": 62.13735932389508, "y": 56.12432020454935, "z": 8.602170927743334}, {"x": 61.87893491881557, "y": 56.18895453291006, "z": 8.800413173721376}, {"x": 61.61965949190136, "y": 56.25242882689799, "z": 8.998464253820917}, {"x": 61.35953352802535, "y": 56.31482238056846, "z": 9.196318959479253}, {"x": 61.09850391547095, "y": 56.37624747284552, "z": 9.393972719235357}, {"x": 60.83653023968143, "y": 56.43678308715616, "z": 9.591421592193717}, {"x": 60.57350582745034, "y": 56.49649688307059, "z": 9.78866201885495}, {"x": 60.30935234278108, "y": 56.55544567012451, "z": 9.98569091112957}, {"x": 60.0439335166899, "y": 56.61363736461382, "z": 10.18250574822418}, {"x": 59.77713161218654, "y": 56.67107773893669, "z": 10.37910425485011}, {"x": 59.50881864578631, "y": 56.72769005627106, "z": 10.5754841517891}, {"x": 59.23888008310375, "y": 56.78340618244962, "z": 10.77164309112593}, {"x": 58.96724480053394, "y": 56.83807834038797, "z": 10.96757820232229}, {"x": 58.69385860977849, "y": 56.8915674133069, "z": 11.16328552942585}, {"x": 58.41876038086689, "y": 56.94371038354778, "z": 11.35876002520787}, {"x": 58.14199122643856, "y": 56.99436797940017, "z": 11.55399548613541}, {"x": 57.86367676621435, "y": 57.04343923333965, "z": 11.74898451562516}, {"x": 57.58392953942208, "y": 57.09084469161828, "z": 11.94371896386373}, {"x": 57.30289378759741, "y": 57.13658777930102, "z": 12.13819042546867}, {"x": 57.02068680476545, "y": 57.18066628955175, "z": 12.33239047190283}, {"x": 56.73740819716149, "y": 57.22315402556229, "z": 12.52631083558422}, {"x": 56.45314824412779, "y": 57.26410716966047, "z": 12.71994379440917}, {"x": 56.16793656576227, "y": 57.30362894830604, "z": 12.913282164867}, {"x": 55.88181722111136, "y": 57.34180385194447, "z": 13.10631918751689}, {"x": 55.59476497690579, "y": 57.37872615727662, "z": 13.29904867949858}, {"x": 55.30677227403308, "y": 57.41449612590677, "z": 13.49146503540299}, {"x": 55.01776860645876, "y": 57.44917810385618, "z": 13.68356307171249}, {"x": 54.72769322854423, "y": 57.4828590748392, "z": 13.8753380483578}, {"x": 54.43644994202401, "y": 57.5155659939562, "z": 14.06678577266145}, {"x": 54.14392202907751, "y": 57.5473446483476, "z": 14.2579024337091}, {"x": 53.8500012936096, "y": 57.57816475418982, "z": 14.44868447721086}, {"x": 53.5545475319098, "y": 57.60799547867484, "z": 14.63912853395585}, {"x": 53.25746875046779, "y": 57.63674471355863, "z": 14.82923114313586}, {"x": 52.95865374791594, "y": 57.66428612067506, "z": 15.0189882999295}, {"x": 52.65807925636136, "y": 57.69047677834627, "z": 15.20839513230333}, {"x": 52.35573244547419, "y": 57.71513996156715, "z": 15.39744566327867}, {"x": 52.05167966368303, "y": 57.73814245124855, "z": 15.58613257774763}, {"x": 51.74602134445102, "y": 57.75933540684436, "z": 15.77444731615578}, {"x": 51.43888499622876, "y": 57.77866038338976, "z": 15.96238043347366}, {"x": 51.13042440559971, "y": 57.79606273068487, "z": 16.14992197751861}, {"x": 50.820758245228, "y": 57.81156232621022, "z": 16.3370617993132}, {"x": 50.51003011854981, "y": 57.82519617482455, "z": 16.52378991817362}, {"x": 50.19831147524879, "y": 57.83703411793973, "z": 16.71009675161663}, {"x": 49.88569000405662, "y": 57.84717069153474, "z": 16.89597318056944}, {"x": 49.57219031849478, "y": 57.85568531092085, "z": 17.08141054932446}, {"x": 49.2578364223579, "y": 57.8626995555801, "z": 17.26640074519486}, {"x": 48.9426112243347, "y": 57.86828810567164, "z": 17.45093620919915}, {"x": 48.626473021839, "y": 57.87256280697726, "z": 17.63500979287032}, {"x": 48.30937563353574, "y": 57.87558506852604, "z": 17.81861486311564}, {"x": 47.99121704093749, "y": 57.87743343223721, "z": 18.00174531527412}, {"x": 47.67191692479752, "y": 57.87814032527408, "z": 18.18439548063555}, {"x": 47.35133728081069, "y": 57.87771559541599, "z": 18.36656003394259}, {"x": 47.02937559284825, "y": 57.87614609089755, "z": 18.54823394243552}, {"x": 46.7058937584954, "y": 57.87335098494743, "z": 18.72941223629975}, {"x": 46.38080316031726, "y": 57.86924581868426, "z": 18.91008951035912}, {"x": 46.05403730632413, "y": 57.86367226291772, "z": 19.09025968376621}, {"x": 45.72557137163871, "y": 57.8564990146551, "z": 19.26991569217949}, {"x": 45.39545368258263, "y": 57.8475517733748, "z": 19.44904912565775}, {"x": 45.06375035864392, "y": 57.83671373779222, "z": 19.62765029494483}, {"x": 44.73060053255129, "y": 57.82388727392589, "z": 19.80570860526983}, {"x": 44.39611341310232, "y": 57.80902095011364, "z": 19.98321280373219}, {"x": 44.06044482595721, "y": 57.79211947838155, "z": 20.16015129557197}, {"x": 43.72369720751318, "y": 57.77320177055032, "z": 20.33651264966117}, {"x": 43.38597400867901, "y": 57.75235027289815, "z": 20.51228580344121}, {"x": 43.04734295999813, "y": 57.72962030435602, "z": 20.68746001184628}, {"x": 42.70784121689177, "y": 57.705126651543, "z": 20.86202501369997}, {"x": 42.36749511579972, "y": 57.67894699225273, "z": 21.03597117599291}, {"x": 42.02627421123765, "y": 57.65118669775381, "z": 21.20928923150353}, {"x": 41.68416804129572, "y": 57.62192807842154, "z": 21.38197031771392}, {"x": 41.34109503617017, "y": 57.59124919329784, "z": 21.55400616451188}, {"x": 40.99699427684982, "y": 57.55922150887042, "z": 21.72538893181686}, {"x": 40.65175132767349, "y": 57.52586886563147, "z": 21.89611108846675}, {"x": 40.30526095346755, "y": 57.49122853441099, "z": 22.06616556574512}, {"x": 39.95739364942617, "y": 57.45525815495372, "z": 22.23554564785107}, {"x": 39.60801905359515, "y": 57.41791892283965, "z": 22.40424450606472}, {"x": 39.25704293000241, "y": 57.37909333924893, "z": 22.572255075947}, {"x": 38.90436590047928, "y": 57.33866064178364, "z": 22.73956977806921}, {"x": 38.54997527388715, "y": 57.29645359612005, "z": 22.90617992048544}, {"x": 38.19386909724687, "y": 57.25230463031482, "z": 23.07207544427843}, {"x": 37.83613831627821, "y": 57.20607674619175, "z": 23.2372451067024}, {"x": 37.47687473601304, "y": 57.15763650969007, "z": 23.40167650676284}, {"x": 37.1162227386389, "y": 57.10693050957511, "z": 23.56535624814725}, {"x": 36.75432073152589, "y": 57.05390974650793, "z": 23.7282706327779}, {"x": 36.39128939405545, "y": 56.99861013349089, "z": 23.89040594473434}, {"x": 36.0272519559614, "y": 56.9410549215055, "z": 24.05174850397767}, {"x": 35.66227609459698, "y": 56.88132454572923, "z": 24.21228496714354}, {"x": 35.29644174204039, "y": 56.81949627808461, "z": 24.37200252138037}, {"x": 34.9297561480462, "y": 56.75565355825677, "z": 24.53088868155079}, {"x": 34.5622490709495, "y": 56.68989489374507, "z": 24.68893126793485}, {"x": 34.19388764469789, "y": 56.62229088926417, "z": 24.84611865589558}, {"x": 33.82463844762782, "y": 56.55294022699938, "z": 25.00243960227565}, {"x": 33.454438942939, "y": 56.4818823990682, "z": 25.15788311166435}, {"x": 33.08320107850255, "y": 56.40918787677541, "z": 25.31243866808767}, {"x": 32.71083684149831, "y": 56.33486203294762, "z": 25.46609618696594}, {"x": 32.33721385641475, "y": 56.25890717570496, "z": 25.6188456884205}, {"x": 31.96224155483995, "y": 56.1812739131333, "z": 25.77067729664892}, {"x": 31.58579073313878, "y": 56.10187735906922, "z": 25.92158105315473}, {"x": 31.20779944760823, "y": 56.02060583690887, "z": 26.0715463723382}, {"x": 30.82821311885544, "y": 55.93729220420303, "z": 26.22056166177266}, {"x": 30.44705086321776, "y": 55.85179952901188, "z": 26.36861420194635}, {"x": 30.06437087706436, "y": 55.76395394739671, "z": 26.51568994604478}, {"x": 29.68027172366702, "y": 55.67365265528438, "z": 26.66177344811774}, {"x": 29.29490256464422, "y": 55.58079667105319, "z": 26.80684840567017}, {"x": 28.90838606833814, "y": 55.48536406109949, "z": 26.95089800907007}, {"x": 28.52088139321391, "y": 55.3873550165147, "z": 27.0939051580412}, {"x": 28.13248728967632, "y": 55.28680815556994, "z": 27.2358528642421}, {"x": 27.74331955101949, "y": 55.1838039409873, "z": 27.37672451150058}, {"x": 27.35342875111657, "y": 55.07840886575621, "z": 27.51650383189205}, {"x": 26.96286527042874, "y": 54.97073606622192, "z": 27.65517488919589}, {"x": 26.57164317164086, "y": 54.86085931521546, "z": 27.79272225769559}, {"x": 26.17974170654676, "y": 54.74889426459338, "z": 27.92913091992186}, {"x": 25.78713897739291, "y": 54.63490608581951, "z": 28.06438618534323}, {"x": 25.39375758642064, "y": 54.51898059018011, "z": 28.1984737861912}, {"x": 24.99953857339571, "y": 54.40117070547584, "z": 28.3313799052566}, {"x": 24.60435750140356, "y": 54.28150461912629, "z": 28.46309102677721}, {"x": 24.20812208432202, "y": 54.15999600730711, "z": 28.59359388450926}, {"x": 23.81069677619747, "y": 54.03659686435805, "z": 28.72287541552828}, {"x": 23.41197263565491, "y": 53.91125713482194, "z": 28.85092240816861}, {"x": 23.01185398089838, "y": 53.78384040179914, "z": 28.97772115493523}, {"x": 22.61027406685574, "y": 53.65422530864024, "z": 29.10325712162844}, {"x": 22.20723345045874, "y": 53.5222319527368, "z": 29.22751462489264}, {"x": 21.80275109561407, "y": 53.38770817104579, "z": 29.35047655008971}, {"x": 21.3969396017875, "y": 53.25050787759442, "z": 29.47212439672255}, {"x": 20.9898992125546, "y": 53.11052406076873, "z": 29.59243857324548}, {"x": 20.58178923044416, "y": 52.96770741909196, "z": 29.71139871323595}, {"x": 20.17273685007242, "y": 52.82202300385578, "z": 29.82898401859057}, {"x": 19.76287899104808, "y": 52.6735161060347, "z": 29.94517365125918}, {"x": 19.35232006037945, "y": 52.52221565409209, "z": 30.05994698073624}, {"x": 18.94113221209279, "y": 52.3682124525625, "z": 30.17328358951306}, {"x": 18.52938516204993, "y": 52.21157106175657, "z": 30.28516338690331}, {"x": 18.11708514169602, "y": 52.05239096443263, "z": 30.39556664633098}, {"x": 17.70425510624044, "y": 51.89075185457099, "z": 30.50447398305574}, {"x": 17.29085151077821, "y": 51.72672777621963, "z": 30.61186626127208}, {"x": 16.8768499232872, "y": 51.56040033575044, "z": 30.71772468856128}, {"x": 16.46216705335103, "y": 51.3918051512813, "z": 30.82203086031918}, {"x": 16.04672568095933, "y": 51.22099469753761, "z": 30.92476654999971}, {"x": 15.6304263675668, "y": 51.04795233780757, "z": 31.02591377867023}, {"x": 15.21315020632972, "y": 50.87267389658926, "z": 31.12545473077234}, {"x": 14.79480336084339, "y": 50.69507427024893, "z": 31.22337144068154}, {"x": 14.37527475605569, "y": 50.51505927078996, "z": 31.31964544390746}, {"x": 13.95452547508031, "y": 50.33248598685608, "z": 31.41425754105625}, {"x": 13.53251363771534, "y": 50.1471844860183, "z": 31.507187396259}, {"x": 13.10929633749083, "y": 49.95899447555553, "z": 31.5984131142529}, {"x": 12.68494750530213, "y": 49.76774376837894, "z": 31.68791134936145}, {"x": 12.25960130183093, "y": 49.5733327486021, "z": 31.77565751900122}, {"x": 11.83341094429351, "y": 49.37565783346255, "z": 31.86162595946572}, {"x": 11.40652886795059, "y": 49.17470968859168, "z": 31.94579037534832}, {"x": 10.97911925675368, "y": 48.97048333547945, "z": 32.02812438856112}, {"x": 10.55129047302097, "y": 48.76303238567047, "z": 32.10860160071136}, {"x": 10.12317257872383, "y": 48.55242034577423, "z": 32.18719570279616}, {"x": 9.69482140159944, "y": 48.3387272073667, "z": 32.26388074782468}, {"x": 9.26630559940042, "y": 48.12205483398034, "z": 32.33863111392898}, {"x": 8.837636788485097, "y": 47.90247429229625, "z": 32.411421335957}, {"x": 8.408823950876828, "y": 47.68009670870805, "z": 32.48222625690327}, {"x": 7.979842127872132, "y": 47.45497992443141, "z": 32.5510211571558}, {"x": 7.550635294075935, "y": 47.22721031376641, "z": 32.61778148010573}, {"x": 7.121153154856944, "y": 46.99681982900312, "z": 32.68248292471557}, {"x": 6.691288559421828, "y": 46.76384651095633, "z": 32.74510158761826}, {"x": 6.260963872763544, "y": 46.52828017315743, "z": 32.80561369058097}, {"x": 5.830056096316214, "y": 46.29007199969622, "z": 32.86399529962812}, {"x": 5.398492701835447, "y": 46.04915343109772, "z": 32.92022229786848}, {"x": 4.966188880528463, "y": 45.80538488331708, "z": 32.97426997333163}, {"x": 4.533123780301064, "y": 45.55863494768698, "z": 33.02611238439138}, {"x": 4.099322465116034, "y": 45.30871716598977, "z": 33.07572229212016}, {"x": 3.664849584968231, "y": 45.05549770923309, "z": 33.12307106119146}, {"x": 3.229839791554752, "y": 44.7988276891279, "z": 33.16812855661255}, {"x": 2.794424644541142, "y": 44.53862876277445, "z": 33.21086346410352}, {"x": 2.358788518799125, "y": 44.27485737219883, "z": 33.25124391768699}, {"x": 1.923063360768889, "y": 44.00750808566988, "z": 33.28923770062095}, {"x": 1.487410661158547, "y": 43.73662775604497, "z": 33.32481240041517}, {"x": 1.051934612360604, "y": 43.46226146134851, "z": 33.35793589635956}, {"x": 0.6167308737897929, "y": 43.18451059220575, "z": 33.38857633634841}, {"x": 0.1818652731926655, "y": 42.90343656786922, "z": 33.41670199345741}, {"x": -0.2526305244791822, "y": 42.61915101476243, "z": 33.44228144448466}, {"x": -0.6867273507656186, "y": 42.33172571118855, "z": 33.46528366172372}, {"x": -1.1204567157734, "y": 42.04124915773774, "z": 33.48567778481731}, {"x": -1.55382497845889, "y": 41.74778659447868, "z": 33.50343318139605}, {"x": -1.986907014462644, "y": 41.451386825002, "z": 33.51851964186253}, {"x": -2.419756634800043, "y": 41.15209267640839, "z": 33.53090719693097}, {"x": -2.852471000285294, "y": 40.84988511258631, "z": 33.54056594797231}, {"x": -3.285132816776749, "y": 40.54475442493109, "z": 33.54746613643127}, {"x": -3.717827148551022, "y": 40.23660543706016, "z": 33.55157788484014}, {"x": -4.15062838433586, "y": 39.9253440111254, "z": 33.55287063427225}, {"x": -4.583546775388382, "y": 39.61080725495965, "z": 33.55131297278331}, {"x": -5.01658333610816, "y": 39.29284151407218, "z": 33.54687231542307}, {"x": -5.449642250825388, "y": 38.97127833352182, "z": 33.53951455140123}, {"x": -5.882620254242208, "y": 38.6459675669738, "z": 33.5292040899038}, {"x": -6.31533717988528, "y": 38.31681827017395, "z": 33.5159042384369}, {"x": -6.747629435110106, "y": 37.98375169976136, "z": 33.49957750605125}, {"x": -7.179309579156446, "y": 37.64677341423611, "z": 33.48018586922771}, {"x": -7.610205299028138, "y": 37.30588537688747, "z": 33.45769132222834}, {"x": -8.040178751015212, "y": 36.96116406000456, "z": 33.43205604585881}, {"x": -8.46909010180898, "y": 36.6126656011527, "z": 33.40324243118398}, {"x": -8.896859513557652, "y": 36.2604861710394, "z": 33.37121320836395}, {"x": -9.323389998666812, "y": 35.90471752388716, "z": 33.33593154700948}, {"x": -9.7486560214581, "y": 35.54544551328152, "z": 33.29736095247294}, {"x": -10.172610757184, "y": 35.18277022858859, "z": 33.25546525747799}, {"x": -10.5952620329226, "y": 34.81675385718455, "z": 33.21020877987306}, {"x": -11.0166220560793, "y": 34.44748653473909, "z": 33.1615562539419}, {"x": -11.4367244474685, "y": 34.07499172660903, "z": 33.10947280882208}, {"x": -11.85562816662176, "y": 33.6993144827719, "z": 33.05392396874571}, {"x": -12.27337664583975, "y": 33.320432273395, "z": 32.99487562472147}, {"x": -12.69005041397787, "y": 32.93830897021747, "z": 32.93229375518775}, {"x": -13.10566768784267, "y": 32.5528583786751, "z": 32.8661441594372}, {"x": -13.52026281917091, "y": 32.16395744101349, "z": 32.79639220409683}, {"x": -13.93378676101748, "y": 31.77147849873492, "z": 32.72300241982922}, {"x": -14.34616772853502, "y": 31.37525411920252, "z": 32.64593823168774}, {"x": -14.75726315968895, "y": 30.97517723200591, "z": 32.56516195173302}, {"x": -15.16689545549713, "y": 30.57112950566808, "z": 32.4806350136223}, {"x": -15.57487545989621, "y": 30.16307846529194, "z": 32.39231823510499}, {"x": -15.98097797354659, "y": 29.75100312760359, "z": 32.30017225988514}, {"x": -16.38502603236984, "y": 29.33495211057593, "z": 32.20415800182288}, {"x": -16.78681883456721, "y": 28.9149948404928, "z": 32.10423695597139}, {"x": -17.18622223574321, "y": 28.49121863652902, "z": 32.00037128479011}, {"x": -17.58308762861175, "y": 28.06374902303548, "z": 31.89252401783982}, {"x": -17.97732685379161, "y": 27.63268592812604, "z": 31.7806591707505}, {"x": -18.36885774626036, "y": 27.19817032234991, "z": 31.66474160879266}, {"x": -18.75762333603746, "y": 26.76029713822729, "z": 31.54473715384614}, {"x": -19.1436053440941, "y": 26.31919937428543, "z": 31.42061265248986}, {"x": -19.52678123420634, "y": 25.87495880404745, "z": 31.29233599145182}, {"x": -19.90718358003587, "y": 25.42766567491429, "z": 31.15987599960298}, {"x": -20.28481818010687, "y": 24.97737947675645, "z": 31.02320258846611}, {"x": -20.65975003856172, "y": 24.52412311940548, "z": 30.88228674494511}, {"x": -21.03200300324666, "y": 24.06790265790896, "z": 30.73710020131983}, {"x": -21.4016209916059, "y": 23.60865464370062, "z": 30.58761536900269}, {"x": -21.76860804397908, "y": 23.14632140580276, "z": 30.43380512016622}, {"x": -22.13292992546267, "y": 22.68076805164641, "z": 30.27564233056371}, {"x": -22.49451275039818, "y": 22.21189319678727, "z": 30.11309957566985}, {"x": -22.85320386074591, "y": 21.73957001954705, "z": 29.94614923251514}, {"x": -23.20884547670896, "y": 21.26372172472693, "z": 29.77476348591721}, {"x": -23.56120059629774, "y": 20.78430325602116, "z": 29.59891450095527}, {"x": -23.9100646052118, "y": 20.30131419528871, "z": 29.41857502419284}, {"x": -24.25519882431955, "y": 19.8148198547075, "z": 29.23371884915761}, {"x": -24.59640836883357, "y": 19.32488626396442, "z": 29.04432098845117}, {"x": -24.9335019123443, "y": 18.83165285954529, "z": 28.85035802296788}, {"x": -25.26631863687048, "y": 18.33523346906302, "z": 28.65180850300773}, {"x": -25.59473906161969, "y": 17.8357926764204, "z": 28.44865280640434}, {"x": -25.91863785460402, "y": 17.33346479801252, "z": 28.24087320294689}, {"x": -26.23795527308373, "y": 16.82841070952991, "z": 28.02845410202432}, {"x": -26.55261312457689, "y": 16.32077495906984, "z": 27.81138198907461}, {"x": -26.86259747769156, "y": 15.81068456887385, "z": 27.58964527680011}, {"x": -27.16787465878453, "y": 15.29827801005036, "z": 27.36323453900985}, {"x": -27.46846275412999, "y": 14.78363938465742, "z": 27.13214259880228}, {"x": -27.76437539403036, "y": 14.26686559545941, "z": 26.89636423057714}, {"x": -28.05563048923057, "y": 13.74797792584056, "z": 26.65589623937047}, {"x": -28.34225870382827, "y": 13.22700564576143, "z": 26.41073744263909}, {"x": -28.62424408527208, "y": 12.70390178777167, "z": 26.16088825930058}, {"x": -28.90157157368188, "y": 12.17861228987959, "z": 25.90635031189937}, {"x": -29.17413576987044, "y": 11.65106083235456, "z": 25.64712643452749}, {"x": -29.44182698598108, "y": 11.12116477245334, "z": 25.38322040189431}, {"x": -29.70444424628589, "y": 10.58888481505191, "z": 25.11463674403285}, {"x": -29.96177971464749, "y": 10.05419064508544, "z": 24.84138126380327}, {"x": -30.21359468383885, "y": 9.517143480357277, "z": 24.56346138554505}, {"x": -30.45964992101178, "y": 8.97780350099683, "z": 24.28088639649081}, {"x": -30.69973193671451, "y": 8.436318217229042, "z": 23.99366787744482}, {"x": -30.93362355571279, "y": 7.892834659893379, "z": 23.70182021447172}, {"x": -31.16117663647958, "y": 7.347542813471363, "z": 23.40536061185573}, {"x": -31.38222339069487, "y": 6.800638189119007, "z": 23.10430917007471}, {"x": -31.59667096631654, "y": 6.252319196110022, "z": 22.79868924615036}, {"x": -31.80441810094317, "y": 5.702807940715815, "z": 22.4885273795486}, {"x": -32.00541769834967, "y": 5.152285875274452, "z": 22.1738531463686}, {"x": -32.1996315016272, "y": 4.600973706575816, "z": 21.85469932845134}, {"x": -32.38704876404392, "y": 4.049035371410199, "z": 21.53110195217853}, {"x": -32.56769755944467, "y": 3.496656561847137, "z": 21.20310001227082}, {"x": -32.74159198098194, "y": 2.943965131867304, "z": 20.87073553949482}, {"x": -32.90880067874485, "y": 2.391082631815046, "z": 20.53405361336174}, {"x": -33.06935263113095, "y": 1.838083720356818, "z": 20.19310206145928}, {"x": -33.22330824150488, "y": 1.284993778167212, "z": 19.84793112027376}, {"x": -33.37066288785099, "y": 0.731828869026272, "z": 19.49859327310377}, {"x": -33.51140386474179, "y": 0.1785448141974411, "z": 19.14514286250005}, {"x": -33.64545356451777, "y": -0.3748687798974205, "z": 18.78763560495003}, {"x": -33.77268348810541, "y": -0.9284507531861826, "z": 18.42612869027073}, {"x": -33.89294614130005, "y": -1.48216254046468, "z": 18.06068085663036}, {"x": -34.00604378069428, "y": -2.035958561700233, "z": 17.6913525352056}, {"x": -34.11181226203922, "y": -2.58972424775831, "z": 17.31820617991187}, {"x": -34.21005553226791, "y": -3.143307555977982, "z": 16.94130667948901}, {"x": -34.30064762980062, "y": -3.696533918626056, "z": 16.560721482272}, {"x": -34.3834498126098, "y": -4.249184114977355, "z": 16.17652063621216}, {"x": -34.4583817269942, "y": -4.801057978011961, "z": 15.78877700847772}, {"x": -34.52538216230521, "y": -5.351905033860466, "z": 15.39756623791917}, {"x": -34.58441857772008, "y": -5.901522687507035, "z": 15.00296666651749}, {"x": -34.63550154708182, "y": -6.449668448340232, "z": 14.60505928954057}, {"x": -34.67864074973569, "y": -6.996140254610359, "z": 14.20392776445381}, {"x": -34.71391433687995, "y": -7.540729433089893, "z": 13.79965817142469}, {"x": -34.74137696751412, "y": -8.08325314186811, "z": 13.39233885229055}, {"x": -34.76114972876039, "y": -8.623560047393681, "z": 12.98206034449852}, {"x": -34.77333373767704, "y": -9.161506768069884, "z": 12.5689151261392}, {"x": -34.7780647326824, "y": -9.697026956070934, "z": 12.15299734560866}, {"x": -34.77545792381315, "y": -10.23005057273913, "z": 11.73440247376286}, {"x": -34.76560904079638, "y": -10.76059273395179, "z": 11.31322697448736}, {"x": -34.74859713159859, "y": -11.28866061570979, "z": 10.88956775927724}, {"x": -34.72442107112203, "y": -11.81431050592363, "z": 10.46352176791453}, {"x": -34.69307235433651, "y": -12.33756993374431, "z": 10.03518578311022}, {"x": -34.6544575174748, "y": -12.85844827441361, "z": 9.604656390156759}, {"x": -34.60849830227512, "y": -13.37692824039586, "z": 9.172030023786387}, {"x": -34.55506781167293, "y": -13.89292097224341, "z": 8.737403262496466}, {"x": -34.49407630664814, "y": -14.40633207807212, "z": 8.30087315338791}, {"x": -34.42543987211, "y": -14.91699282302707, "z": 7.862537270410466}, {"x": -34.34909576863893, "y": -15.42475460431652, "z": 7.422493822616728}, {"x": -34.26503042698486, "y": -15.92940984714705, "z": 6.980841706677014}, {"x": -34.1732312788091, "y": -16.43077923057789, "z": 6.537680509627623}, {"x": -34.0737529419061, "y": -16.92866286545547, "z": 6.093110258379208}, {"x": -33.9666330469355, "y": -17.42286719199076, "z": 5.647231458620356}, {"x": -33.85198367138828, "y": -17.91321764121734, "z": 5.200145069608573}, {"x": -33.7299032007052, "y": -18.39953009573844, "z": 4.751952184092171}, {"x": -33.60053957394047, "y": -18.88167248423917, "z": 4.302753993126354}, {"x": -33.4640520960536, "y": -19.35949100408181, "z": 3.852651713337316}, {"x": -33.32061561908017, "y": -19.83291112714955, "z": 3.401746370049507}, {"x": -33.17043010140165, "y": -20.3018531115551, "z": 2.950138433100247}, {"x": -33.01366382975016, "y": -20.76630928558086, "z": 2.497927717995531}, {"x": -32.85051361119597, "y": -21.22629586578435, "z": 2.045212990343119}, {"x": -32.68109686539631, "y": -21.68187203438442, "z": 1.592091330945971}, {"x": -32.50553050187058, "y": -22.13312725127997, "z": 1.138657867469818}, {"x": -32.32384691121415, "y": -22.58012741977066, "z": 0.6850055853446949}, {"x": -32.13605837526112, "y": -23.02296120658745, "z": 0.2312250720440356}, {"x": -31.94212819047514, "y": -23.46163721765146, "z": -0.2225953774779542}, {"x": -31.74200199412321, "y": -23.89616512409252, "z": -0.6763692189477871}, {"x": -31.5356471676529, "y": -24.32647400237402, "z": -1.130011516474313}, {"x": -31.3230098899135, "y": -24.75249036555164, "z": -1.583438749522061}, {"x": -31.10410156395695, "y": -25.17409125888456, "z": -2.036568424784679}, {"x": -30.87891908627444, "y": -25.59114194614304, "z": -2.489318959760115}, {"x": -30.64753023600748, "y": -26.00351356832456, "z": -2.941609871465923}, {"x": -30.40999198166342, "y": -26.41104578312284, "z": -3.393361675504539}, {"x": -30.16641802312863, "y": -26.81361784925179, "z": -3.844495741841752}, {"x": -29.91693637249397, "y": -27.21107631039902, "z": -4.294934633773705}, {"x": -29.66169177688459, "y": -27.60332424232174, "z": -4.744602119118058}, {"x": -29.40087351623267, "y": -27.99023770040445, "z": -5.193423023499594}, {"x": -29.13466153138427, "y": -28.37175028557376, "z": -5.641323381613894}, {"x": -28.86329060906859, "y": -28.74780730518493, "z": -6.088230691053364}, {"x": -28.58696036075496, "y": -29.11838973927112, "z": -6.534073747207874}, {"x": -28.3059183823566, "y": -29.48353243665648, "z": -6.978782835686148}, {"x": -28.02036069208527, "y": -29.84329012034231, "z": -7.422290273492789}, {"x": -27.730478234148, "y": -30.19779139890719, "z": -7.864530571534931}, {"x": -27.43641109088474, "y": -30.54714681106669, "z": -8.305440726320752}, {"x": -27.13824422686645, "y": -30.89152568909704, "z": -8.744960653992916}, {"x": -26.83602723034982, "y": -31.23104476595946, "z": -9.183033374035734}, {"x": -26.52973655234594, "y": -31.56582020817369, "z": -9.619604582698535}, {"x": -26.21936743883223, "y": -31.89591094461915, "z": -10.05462250391149}, {"x": -25.90485839090476, "y": -32.22133777748069, "z": -10.48803765718023}, {"x": -25.58619861887981, "y": -32.54209145739279, "z": -10.91980219666283}, {"x": -25.2633619251436, "y": -32.85810463506234, "z": -11.34986966114735}, {"x": -24.93637091885449, "y": -33.16933020099766, "z": -11.77819493083175}, {"x": -24.60526109528292, "y": -33.47566145895967, "z": -12.20473401980409}, {"x": -24.27009182423688, "y": -33.77702970218233, "z": -12.62944384532863}, {"x": -23.93097007825189, "y": -34.07332849230659, "z": -13.05228243758907}, {"x": -23.58798971515892, "y": -34.36448804149247, "z": -13.4732089394473}, {"x": -23.24131008382777, "y": -34.65042684678547, "z": -13.89218342954344}, {"x": -22.8910688839837, "y": -34.93108116129628, "z": -14.30916702807266}, {"x": -22.53746446311268, "y": -35.20642266840052, "z": -14.72412204629568}, {"x": -22.18067358631571, "y": -35.47641782396441, "z": -15.13701181663531}, {"x": -21.82091175667157, "y": -35.74110263559692, "z": -15.54780069449948}, {"x": -21.45838705340018, "y": -36.00050954601977, "z": -15.95645439853101}, {"x": -21.09328909384402, "y": -36.25475594712695, "z": -16.36294005251321}, {"x": -20.72580586327365, "y": -36.50395555563605, "z": -16.76722644320709}, {"x": -20.35605407122418, "y": -36.74828568003842, "z": -17.16928445277002}, {"x": -19.98413863424154, "y": -36.9879218210244, "z": -17.5690874239054}, {"x": -19.61006469658114, "y": -37.22303245055544, "z": -17.96661114656983}, {"x": -19.23383629618181, "y": -37.45377447454686, "z": -18.36183382486995}, {"x": -18.85538718706363, "y": -37.68023962738854, "z": -18.75473594054096}, {"x": -18.47465870901326, "y": -37.90251018649906, "z": -19.14529967434861}, {"x": -18.0915873087388, "y": -38.12057858604334, "z": -19.53350850969096}, {"x": -17.70611919770779, "y": -38.3344488453484, "z": -19.91934692532787}, {"x": -17.31824191285147, "y": -38.54405759125811, "z": -20.3028001573936}, {"x": -16.9279363793581, "y": -38.74935174937523, "z": -20.68385389492111}, {"x": -16.53525538350129, "y": -38.95025279512893, "z": -21.06249428701152}, {"x": -16.14023007430905, "y": -39.14668220922535, "z": -21.4387079357949}, {"x": -15.74295882073726, "y": -39.33857488052431, "z": -21.81248177858114}, {"x": -15.34353020150502, "y": -39.52584312315884, "z": -22.18380312024937}, {"x": -14.94207897479007, "y": -39.70845196707721, "z": -22.55265964004103}, {"x": -14.53874902773022, "y": -39.88633643511908, "z": -22.91903943855263}, {"x": -14.13369772311643, "y": -40.0594968324115, "z": -23.28293090970897}, {"x": -13.72712076291626, "y": -40.22792389574871, "z": -23.64432287123428}, {"x": -13.31918400927904, "y": -40.39167480193638, "z": -24.0032046689682}, {"x": -12.91009257200476, "y": -40.55082745747935, "z": -24.35956628213236}, {"x": -12.499990409161, "y": -40.7055013746727, "z": -24.71339859497789}, {"x": -12.08902981587837, "y": -40.85586843173211, "z": -25.06469379828661}, {"x": -11.67727826256091, "y": -41.00209044407915, "z": -25.413445741396}, {"x": -11.26477484372064, "y": -41.14436871672371, "z": -25.75965004580713}, {"x": -10.85150083711115, "y": -41.28284285705505, "z": -26.10330420121606}, {"x": -10.43738881120616, "y": -41.41766145522018, "z": -26.44440738085165}, {"x": -10.02237442985675, "y": -41.54888610125649, "z": -26.78296002108601}, {"x": -9.606358639010812, "y": -41.67656427326109, "z": -27.1189633284639}, {"x": -9.189294696633846, "y": -41.80069117296762, "z": -27.45241908814631}, {"x": -8.771110084338698, "y": -41.92122994615015, "z": -27.7833292960808}, {"x": -8.351803343333568, "y": -42.038138393827, "z": -28.11169588963055}, {"x": -7.931364617207254, "y": -42.15133651097936, "z": -28.43752080474367}, {"x": -7.509830132726698, "y": -42.26077732143463, "z": -28.76080591171129}, {"x": -7.087254604104024, "y": -42.36636693450464, "z": -29.08155294039904}, {"x": -6.663710318865836, "y": -42.46806371959861, "z": -29.39976342867718}, {"x": -6.239311448810501, "y": -42.56579693709521, "z": -29.71543894219314}, {"x": -5.814158029460607, "y": -42.65953631683561, "z": -30.02858088938116}, {"x": -5.388415425325897, "y": -42.74925632867196, "z": -30.33919047233798}, {"x": -4.962217458046118, "y": -42.83496046717964, "z": -30.64726893155985}, {"x": -4.535748576445269, "y": -42.91669854392077, "z": -30.95281754134652}, {"x": -4.109161375787226, "y": -42.99452747257389, "z": -31.2558376516003}, {"x": -3.682618602534054, "y": -43.06858815867319, "z": -31.55633104772435}, {"x": -3.256243027956831, "y": -43.13901296485304, "z": -31.85430043223179}, {"x": -2.830106135332665, "y": -43.20600224146632, "z": -32.14974952422711}, {"x": -2.404252551501695, "y": -43.26972702388493, "z": -32.44268342352934}, {"x": -1.978635157978767, "y": -43.33037622220983, "z": -32.73310885943604}, {"x": -1.553205936884562, "y": -43.38808896656131, "z": -33.02103390964079}, {"x": -1.127847745289113, "y": -43.44296013485569, "z": -33.30646757274925}, {"x": -0.7024767121154499, "y": -43.49505881640102, "z": -33.58941958815851}, {"x": -0.2769786897474484, "y": -43.5443800873652, "z": -33.86990005256587}, {"x": 0.1487180798140406, "y": -43.59092354608004, "z": -34.1479188582674}, {"x": 0.5746666605591985, "y": -43.63462271021014, "z": -34.42348574501733}, {"x": 1.000907094896551, "y": -43.67544089520277, "z": -34.6966102486527}, {"x": 1.427428709919049, "y": -43.71329070855386, "z": -34.96730145951561}, {"x": 1.854228604033264, "y": -43.7481119466558, "z": -35.23556802056541}, {"x": 2.281239274842818, "y": -43.77983525690452, "z": -35.50141837220117}, {"x": 2.708417849915017, "y": -43.80839309385325, "z": -35.76486055752908}, {"x": 3.135653985377989, "y": -43.83374555758279, "z": -36.02590210147482}, {"x": 3.562850921223643, "y": -43.8558425340945, "z": -36.28455028509179}, {"x": 3.989876326914816, "y": -43.87469551514808, "z": -36.54081208777553}, {"x": 4.41658893812851, "y": -43.89029755093776, "z": -36.79469409153197}, {"x": 4.842850304669075, "y": -43.90272463732057, "z": -37.04620272735054}, {"x": 5.268508862073223, "y": -43.91205464481904, "z": -37.29534471221241}, {"x": 5.693471725252874, "y": -43.91842765616414, "z": -37.5421270501009}, {"x": 6.117637370661051, "y": -43.92200028232858, "z": -37.78655748645448}, {"x": 6.541001358608023, "y": -43.92294438923489, "z": -38.0286450357876}, {"x": 6.963572022010553, "y": -43.92143992094127, "z": -38.26839992010645}, {"x": 7.38543430169867, "y": -43.91760845054868, "z": -38.5058334674565}, {"x": 7.806682654316281, "y": -43.9115754889417, "z": -38.74095798764714}, {"x": 8.227434175253654, "y": -43.9033744653866, "z": -38.97378644257458}, {"x": 8.647810768718967, "y": -43.89303687572023, "z": -39.20433177968508}, {"x": 9.067890662801764, "y": -43.88052149040878, "z": -39.43260681398023}, {"x": 9.487768339253032, "y": -43.86578950952531, "z": -39.65862410867402}, {"x": 9.907468109245759, "y": -43.84876759732634, "z": -39.88239563068413}, {"x": 10.32702956257877, "y": -43.8293698990235, "z": -40.10393274871347}, {"x": 10.74642480026836, "y": -43.80752854022811, "z": -40.32324639186025}, {"x": 11.16563661300471, "y": -43.78314351921667, "z": -40.54034693380594}, {"x": 11.58460088814004, "y": -43.75616036297496, "z": -40.75524406935259}, {"x": 12.00323424775998, "y": -43.72649302363188, "z": -40.96794704611209}, {"x": 12.42144607383065, "y": -43.69411605931091, "z": -41.17846459623007}, {"x": 12.83910016547012, "y": -43.65898497566954, "z": -41.3868048570485}, {"x": 13.25607952259415, "y": -43.62111186443813, "z": -41.59297548742833}, {"x": 13.67221786819668, "y": -43.58053322490745, "z": -41.79698393754825}, {"x": 14.08739908980672, "y": -43.53731872059956, "z": -41.9988374968953}, {"x": 14.50148026930494, "y": -43.49159579201914, "z": -42.19854359735716}, {"x": 14.9143846961885, "y": -43.44349715868788, "z": -42.39611037319595}, {"x": 15.32606529586842, "y": -43.39321619270861, "z": -42.59154685669792}, {"x": 15.73653075030076, "y": -43.34090030539934, "z": -42.78486319514028}, {"x": 16.14584889688713, "y": -43.28672449843914, "z": -42.97607070925013}, {"x": 16.55410218635778, "y": -43.23079178788891, "z": -43.16518176996374}, {"x": 16.96143052971494, "y": -43.17318449627323, "z": -43.35220929216372}, {"x": 17.36792964917067, "y": -43.11392819449961, "z": -43.53716641236256}, {"x": 17.77373028370716, "y": -43.05300815921124, "z": -43.72006622054813}, {"x": 18.17890283580074, "y": -42.9903962118052, "z": -43.90092141770685}, {"x": 18.58352237928415, "y": -42.92600960425946, "z": -44.07974418430555}, {"x": 18.98761670126082, "y": -42.85979695923049, "z": -44.2565461299211}, {"x": 19.39119425586247, "y": -42.79165579605599, "z": -44.43133835347917}, {"x": 19.79424923196099, "y": -42.72152535510397, "z": -44.60413128520247}, {"x": 20.19672327345758, "y": -42.64931345489651, "z": -44.77493479787873}, {"x": 20.59857481488953, "y": -42.57496556883615, "z": -44.9437582212113}, {"x": 20.99969760678454, "y": -42.49842701849927, "z": -45.11061030089298}, {"x": 21.40000892141843, "y": -42.41965783106259, "z": -45.2754992045055}, {"x": 21.79936846341382, "y": -42.33866617758468, "z": -45.438432589786}, {"x": 22.19766084788536, "y": -42.25545840889455, "z": -45.59941779075994}, {"x": 22.59474990292412, "y": -42.17011786907435, "z": -45.75846186963479}, {"x": 22.99051391305281, "y": -42.08272364554076, "z": -45.91557198465259}, {"x": 23.38487501975424, "y": -41.99343628884004, "z": -46.07075579386991}, {"x": 23.77777162042036, "y": -41.90240196211236, "z": -46.22402178207344}, {"x": 24.16922951423019, "y": -41.80980050586149, "z": -46.37537945633215}, {"x": 24.55928341903665, "y": -41.71579090352368, "z": -46.52483956909416}, {"x": 24.94805830728199, "y": -41.62049355258272, "z": -46.67241395883949}, {"x": 25.33566233984548, "y": -41.52400399352999, "z": -46.81811512288322}, {"x": 25.72224198736532, "y": -41.42634058352441, "z": -46.96195590968324}, {"x": 26.10792076131208, "y": -41.32752032637685, "z": -47.10394918693664}, {"x": 26.49280514517516, "y": -41.22747709423241, "z": -47.24410750324715}, {"x": 26.87698657958764, "y": -41.12616459878497, "z": -47.38244279116668}, {"x": 27.26050420462852, "y": -41.02348620245522, "z": -47.51896653114368}, {"x": 27.64340882626747, "y": -40.91935928978266, "z": -47.65368957073562}, {"x": 28.02567732892492, "y": -40.81368781254695, "z": -47.78662202525312}, {"x": 28.40730673358378, "y": -40.70637674725292, "z": -47.91777344795127}, {"x": 28.78823197437736, "y": -40.59735765644535, "z": -48.04715281387787}, {"x": 29.16839416082423, "y": -40.48653840448644, "z": -48.17476840264658}, {"x": 29.54769261800713, "y": -40.37388879052997, "z": -48.30062779506441}, {"x": 29.92601346399168, "y": -40.25935716464406, "z": -48.42473813825578}, {"x": 30.30324230346976, "y": -40.14296219171116, "z": -48.54710598614469}, {"x": 30.67922821043495, "y": -40.02472274679408, "z": -48.66773745914706}, {"x": 31.05386724065334, "y": -39.90472562499811, "z": -48.78663869496736}, {"x": 31.42703481592314, "y": -39.78308419927793, "z": -48.90381612501537}, {"x": 31.79868630940739, "y": -39.65993580014084, "z": -49.01927668967954}, {"x": 32.16878516886305, "y": -39.53545845956985, "z": -49.13302833433274}, {"x": 32.53738234667472, "y": -39.40979121746752, "z": -49.24508028459109}, {"x": 32.90455660461375, "y": -39.28308756879562, "z": -49.3554426845047}, {"x": 33.27041770589648, "y": -39.1554178142179, "z": -49.46412649238768}, {"x": 33.63510644002226, "y": -39.0268518247067, "z": -49.5711432188802}, {"x": 33.99873280333288, "y": -38.89737575925067, "z": -49.67650439350246}, {"x": 34.36142622553695, "y": -38.76696323116042, "z": -49.78022115349027}, {"x": 34.72324902483451, "y": -38.6355548928635, "z": -49.88230430476562}, {"x": 35.08428510696044, "y": -38.50306470323282, "z": -49.9827641403052}, {"x": 35.44454815986779, "y": -38.36941669070578, "z": -50.08161016978698}, {"x": 35.8040544342613, "y": -38.23450086698622, "z": -50.17885136353151}, {"x": 36.16278223527971, "y": -38.09825198334828, "z": -50.27449617700967}, {"x": 36.52068593735903, "y": -37.96056216002253, "z": -50.36855235152402}, {"x": 36.87770850011809, "y": -37.82137927449281, "z": -50.46102693775083}, {"x": 37.23374538776046, "y": -37.68063393512823, "z": -50.55192656597593}, {"x": 37.58871300467565, "y": -37.53829817858524, "z": -50.64125719131851}, {"x": 37.94246429971209, "y": -37.39436240003143, "z": -50.72902414055473}, {"x": 38.29488944897761, "y": -37.24884788856883, "z": -50.81523247931219}, {"x": 38.64584491503545, "y": -37.10183553345138, "z": -50.89988713754992}, {"x": 38.99523196793619, "y": -36.95340983178381, "z": -50.98299310099992}, {"x": 39.34296675636307, "y": -36.8037358607463, "z": -51.06455589747025}, {"x": 39.68901673228525, "y": -36.65295584680827, "z": -51.14458213792123}, {"x": 40.0334174605579, "y": -36.50125418954777, "z": -51.22307940346279}, {"x": 40.37622279039718, "y": -36.34876216570802, "z": -51.30005641312911}, {"x": 40.71756601532001, "y": -36.1956016802192, "z": -51.37552297279949}, {"x": 41.05755779729486, "y": -36.04183816067233, "z": -51.4494894258467}, {"x": 41.39635365504225, "y": -35.88748265216678, "z": -51.52196624096849}, {"x": 41.73405734681928, "y": -35.73253235800112, "z": -51.59296383669535}, {"x": 42.07078521677397, "y": -35.57691760822813, "z": -51.66249234593344}, {"x": 42.40661103488889, "y": -35.4205877035978, "z": -51.7305612559165}, {"x": 42.7415797398836, "y": -35.26343534407081, "z": -51.79717955821089}, {"x": 43.07572897919128, "y": -35.10539183900682, "z": -51.86235574701617}, {"x": 43.40904200516319, "y": -34.94634967903632, "z": -51.92609766621153}, {"x": 43.74151456833275, "y": -34.78622817723785, "z": -51.9884125160227}, {"x": 44.07307504145075, "y": -34.62495031410842, "z": -52.04930702604425}, {"x": 44.4036768193923, "y": -34.46244138705691, "z": -52.10878730401028}, {"x": 44.733210811449, "y": -34.29866639838536, "z": -52.16685876690973}, {"x": 45.06157841482121, "y": -34.13358230496407, "z": -52.22352638908955}, {"x": 45.38865777673279, "y": -33.96722039510517, "z": -52.27879470721945}, {"x": 45.71432386565218, "y": -33.79960049004105, "z": -52.33266797111642}, {"x": 46.03847675164681, "y": -33.6308262203165, "z": -52.38515044085246}, {"x": 46.36101584731139, "y": -33.46100576110909, "z": -52.43624688161881}, {"x": 46.68192340357076, "y": -33.29029320070256, "z": -52.48596276371066}, {"x": 47.00118482070046, "y": -33.11884375327973, "z": -52.53430456243742}, {"x": 47.31888144628637, "y": -32.94679477551314, "z": -52.581279958942}, {"x": 47.63509995033164, "y": -32.77427526561166, "z": -52.6268976120202}, {"x": 47.94997935443758, "y": -32.60133363835997, "z": -52.67116683524394}, {"x": 48.26364946707147, "y": -32.42801735533321, "z": -52.71409721972086}, {"x": 48.57623357869223, "y": -32.25428727563084, "z": -52.75569838155663}, {"x": 48.88785281234941, "y": -32.08011026568502, "z": -52.79597952498964}, {"x": 49.19857054995903, "y": -31.90539520857008, "z": -52.834949369551}, {"x": 49.50846408422001, "y": -31.73006055847128, "z": -52.87261607480907}, {"x": 49.81754025158192, "y": -31.55400870718791, "z": -52.90898719038435}, {"x": 50.12582203329851, "y": -31.37713003947411, "z": -52.94406961470695}, {"x": 50.433266968484, "y": -31.19934496860055, "z": -52.97786959415664}, {"x": 50.73983955514054, "y": -31.02054592207272, "z": -53.01039283890402}, {"x": 51.04546604859488, "y": -30.84067864467376, "z": -53.04164435020557}, {"x": 51.3500471231805, "y": -30.65966158205125, "z": -53.0716285207555}, {"x": 51.65348411017673, "y": -30.47748137913976, "z": -53.10034919414613}, {"x": 51.95563541341628, "y": -30.29411825409373, "z": -53.12780975488396}, {"x": 52.2563926516989, "y": -30.10960931694221, "z": -53.15401321358028}, {"x": 52.55560902379485, "y": -29.92402892511746, "z": -53.17896253848912}, {"x": 52.85320746065675, "y": -29.73747980120479, "z": -53.20266105230053}, {"x": 53.1491082536846, "y": -29.55011866509625, "z": -53.22511266977412}, {"x": 53.44330619249261, "y": -29.36208395634254, "z": -53.24632226582275}, {"x": 53.7358380604237, "y": -29.17355503384064, "z": -53.2662959134293}, {"x": 54.02678498538267, "y": -28.98463847951722, "z": -53.28504079712975}, {"x": 54.31627533597496, "y": -28.79544392059711, "z": -53.30256481090926}, {"x": 54.60442201451735, "y": -28.60600504897212, "z": -53.31887642173049}, {"x": 54.89137860236082, "y": -28.41633000433486, "z": -53.33398421567196}, {"x": 55.17723617607572, "y": -28.22638284380916, "z": -53.34789648867183}, {"x": 55.46210642220257, "y": -28.03609288199503, "z": -53.36062113695742}, {"x": 55.74604006500653, "y": -27.84539638252483, "z": -53.37216560501051}, {"x": 56.02908729290254, "y": -27.6541803091779, "z": -53.38253674164771}, {"x": 56.31125590492074, "y": -27.46237351465141, "z": -53.39174067368418}, {"x": 56.59252835553637, "y": -27.26986346602887, "z": -53.39978309921095}, {"x": 56.87288239569663, "y": -27.07658283122294, "z": -53.40666908699016}, {"x": 57.1522381918307, "y": -26.88244104004076, "z": -53.41240301255311}, {"x": 57.43053580390814, "y": -26.68738673096661, "z": -53.4169887384605}, {"x": 57.70765400259049, "y": -26.49138285720511, "z": -53.42042966024886}, {"x": 57.98349926666211, "y": -26.29440630697861, "z": -53.42272859420739}, {"x": 58.25793060648765, "y": -26.09649613439673, "z": -53.42388798716695}, {"x": 58.530840798546, "y": -25.89769400123751, "z": -53.42391035102467}, {"x": 58.80212714381577, "y": -25.69812185400161, "z": -53.42279828236136}, {"x": 59.07171304597824, "y": -25.49789119030111, "z": -53.4205548905653}, {"x": 59.3395887592507, "y": -25.29717969138028, "z": -53.41718430120571}, {"x": 59.60576730578619, "y": -25.09613149991851, "z": -53.41269181852676}, {"x": 59.87034964199509, "y": -24.89489042445516, "z": -53.40708374720902}, {"x": 60.13342862837356, "y": -24.69356340743123, "z": -53.40036743517788}, {"x": 60.39516582247383, "y": -24.49219922373824, "z": -53.39255097906419}, {"x": 60.65568620950609, "y": -24.29082300491351, "z": -53.38364253749411}, {"x": 60.91512694029768, "y": -24.089383944785, "z": -53.37365018648725}, {"x": 61.17359538911495, "y": -23.88784547709114, "z": -53.36258176447863}, {"x": 61.43116910216085, "y": -23.68609991634862, "z": -53.35044455120571}, {"x": 61.68791356370885, "y": -23.48406833964939, "z": -53.33724510746416}, {"x": 61.94383540951033, "y": -23.28163731061856, "z": -53.32298954082983}, {"x": 62.19895883626846, "y": -23.07870972919009, "z": -53.30768332926765}, {"x": 62.45323403518553, "y": -22.87518742533164, "z": -53.29133117910817}, {"x": 62.70662965998569, "y": -22.6709722596966, "z": -53.27393724801003}, {"x": 62.95905807941251, "y": -22.46600570910613, "z": -53.25550516295018}, {"x": 63.21043520833473, "y": -22.26020707643733, "z": -53.236037846553}, {"x": 63.46064509031675, "y": -22.05356668890135, "z": -53.21553761360462}, {"x": 63.70955864977494, "y": -21.84606379957498, "z": -53.19400654884767}, {"x": 63.95706530273068, "y": -21.63775321530114, "z": -53.17144635554212}, {"x": 64.20302925644481, "y": -21.4286984747617, "z": -53.14785870693227}, {"x": 64.44738314153555, "y": -21.21902379819787, "z": -53.12324577331906}, {"x": 64.69005837726617, "y": -21.00887611026173, "z": -53.09761048947028}, {"x": 64.93107893979071, "y": -20.79839823400166, "z": -53.0709567323558}, {"x": 65.17048188241391, "y": -20.58775200010382, "z": -53.04328955163259}, {"x": 65.40837645091555, "y": -20.37703175912232, "z": -53.01461518265464}, {"x": 65.64488720313325, "y": -20.16633029061568, "z": -52.98494043619132}, {"x": 65.88013937019245, "y": -19.95564947173029, "z": -52.95427249698868}, {"x": 66.11427335786564, "y": -19.74499269025662, "z": -52.92261864478046}, {"x": 66.3473795707058, "y": -19.53429499306113, "z": -52.88998582980994}, {"x": 66.57956281705175, "y": -19.32348483096233, "z": -52.85638044926019}, {"x": 66.8108546758526, "y": -19.11247657371384, "z": -52.82180843784377}, {"x": 67.04130649234949, "y": -18.90116320497668, "z": -52.78627516324796}, {"x": 67.27090490522328, "y": -18.68946141323176, "z": -52.74978526065703}, {"x": 67.49963419099277, "y": -18.4772550585772, "z": -52.71234282992466}, {"x": 67.72744741757663, "y": -18.26448159287911, "z": -52.67395140830696}, {"x": 67.95426966342713, "y": -18.05104193837365, "z": -52.63461390890585}, {"x": 68.18002307049944, "y": -17.83689487867731, "z": -52.5943326077056}, {"x": 68.4045791111427, "y": -17.62199407714404, "z": -52.5531093700351}, {"x": 68.62784043516615, "y": -17.40633855171542, "z": -52.51094557559765}, {"x": 68.84965649387628, "y": -17.18995997220226, "z": -52.4678422461604}, {"x": 69.06992577840505, "y": -16.97291955302589, "z": -52.42380042882166}, {"x": 69.28853518717271, "y": -16.75534654879035, "z": -52.37882145742157}, {"x": 69.50543256749756, "y": -16.53736131073767, "z": -52.33290730736373}, {"x": 69.72060291843225, "y": -16.31914684530677, "z": -52.28606091361778}, {"x": 69.93408056848672, "y": -16.10083920205458, "z": -52.23828648831598}, {"x": 70.14597005241728, "y": -15.8825876229237, "z": -52.18958931701967}, {"x": 70.35637291909822, "y": -15.66447025880425, "z": -52.13997557651773}, {"x": 70.56544825780848, "y": -15.44653885264649, "z": -52.08945199445231}, {"x": 70.77331065059896, "y": -15.22879799729036, "z": -52.03802547342813}, {"x": 70.98010203371732, "y": -15.01119874100985, "z": -51.98570272726869}, {"x": 71.18590415324994, "y": -14.79369443860712, "z": -51.93249006207115}, {"x": 71.39079953467808, "y": -14.57618260134828, "z": -51.87839338775051}, {"x": 71.59483475231634, "y": -14.35859229544185, "z": -51.82341798445581}, {"x": 71.7980208809296, "y": -14.14080322298384, "z": -51.76756857624221}, {"x": 72.00036633595633, "y": -13.92273881520864, "z": -51.71084930834015}, {"x": 72.2018232583548, "y": -13.70429510251703, "z": -51.65326380003914}, {"x": 72.40236122944688, "y": -13.48539246420675, "z": -51.59481505195836}, {"x": 72.60188091105452, "y": -13.26596677268745, "z": -51.53550548126509}, {"x": 72.80030979137025, "y": -13.04595921273519, "z": -51.47533706635859}, {"x": 72.99752328072996, "y": -12.82536372376634, "z": -51.4143112441401}, {"x": 73.19340884060117, "y": -12.60416934309981, "z": -51.35242907237921}, {"x": 73.38784886880403, "y": -12.38245126100487, "z": -51.28969149210566}, {"x": 73.58073520501945, "y": -12.16027692717078, "z": -51.2260996400264}, {"x": 73.7720106694965, "y": -11.93778777360803, "z": -51.16165505259815}, {"x": 73.96162788258367, "y": -11.71512069411483, "z": -51.09636018022863}, {"x": 74.14963711547344, "y": -11.49243028342685, "z": -51.03021862995801}, {"x": 74.33609073493373, "y": -11.2698501740051, "z": -50.96323508444308}, {"x": 74.52111948980222, "y": -11.04746531237504, "z": -50.89541514541406}, {"x": 74.70484253745443, "y": -10.82534628247151, "z": -50.82676511480875}, {"x": 74.88740497634103, "y": -10.60347569370011, "z": -50.75729155148896}, {"x": 75.06892897178909, "y": -10.38184160815836, "z": -50.68700074796357}, {"x": 75.24950900568889, "y": -10.1603598489335, "z": -50.6158987808877}, {"x": 75.42923848321861, "y": -9.938962707968185, "z": -50.54399122012922}, {"x": 75.6081455048171, "y": -9.717539087469666, "z": -50.47128295692762}, {"x": 75.7862724237577, "y": -9.49599139017942, "z": -50.39777827485064}, {"x": 75.96359301265225, "y": -9.274221895573612, "z": -50.32348094460603}, {"x": 76.14009779297044, "y": -9.052118553023455, "z": -50.2483940656717}]', 1003, 203500, '#E0E0E0', '2025-11-29 08:12:49.21886', '2025-11-29 08:21:02.673089');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (4, '136108', '[{"x": -0.1340390066692194, "y": 39.22518132534838, "z": -11.07448711479685}, {"x": -0.3924401259508863, "y": 39.30593738603779, "z": -10.97958003456376}, {"x": -0.6507639054169808, "y": 39.38494517138473, "z": -10.88415692745237}, {"x": -0.909034670997626, "y": 39.46222546584136, "z": -10.78822326978867}, {"x": -1.167246946646425, "y": 39.53776499611796, "z": -10.69178591930134}, {"x": -1.425399902115793, "y": 39.6115848760844, "z": -10.59485047545614}, {"x": -1.683499823454864, "y": 39.68368701646827, "z": -10.49742339489525}, {"x": -1.941562391492807, "y": 39.75408107011089, "z": -10.39951049447263}, {"x": -2.199588316901852, "y": 39.82274478905796, "z": -10.30111778344222}, {"x": -2.45757167307008, "y": 39.8896969746989, "z": -10.20225142305573}, {"x": -2.715536286993635, "y": 39.95492345348858, "z": -10.10291705106758}, {"x": -2.973474992860453, "y": 40.01841246278628, "z": -10.00312117967151}, {"x": -3.23138969383573, "y": 40.08014875362708, "z": -9.902869135543892}, {"x": -3.489269554369363, "y": 40.14013253821192, "z": -9.802167665935793}, {"x": -3.74713379807245, "y": 40.19834330772846, "z": -9.701022000824624}, {"x": -4.004953349437463, "y": 40.25475261655387, "z": -9.599439060558632}, {"x": -4.262722429885008, "y": 40.30936028477526, "z": -9.497424236222162}, {"x": -4.520425882919626, "y": 40.36214488358247, "z": -9.39498447006523}, {"x": -4.778054215447422, "y": 40.41309225626058, "z": -9.29212542627602}, {"x": -5.035569068340702, "y": 40.46217826795836, "z": -9.18885387596321}, {"x": -5.292951875623111, "y": 40.50941783088003, "z": -9.085175880070263}, {"x": -5.550188051074597, "y": 40.55478427625474, "z": -8.981097935723628}, {"x": -5.807237720547084, "y": 40.59827771617277, "z": -8.876626563287918}, {"x": -6.064073299913009, "y": 40.63989522844362, "z": -8.771767910897891}, {"x": -6.320666776202623, "y": 40.67965321754799, "z": -8.66652883715523}, {"x": -6.577004197852263, "y": 40.71753911368055, "z": -8.56091513400557}, {"x": -6.833033790244473, "y": 40.75356612234801, "z": -8.454933861846298}, {"x": -7.088747236000837, "y": 40.78775527044029, "z": -8.34859054962323}, {"x": -7.344117260365826, "y": 40.82011174254924, "z": -8.241892277212402}, {"x": -7.59912697838757, "y": 40.85064615745694, "z": -8.134844447771371}, {"x": -7.853737558293094, "y": 40.87937554268742, "z": -8.02745397093327}, {"x": -8.107949638136176, "y": 40.90633235423722, "z": -7.919726272563328}, {"x": -8.361742851097251, "y": 40.93151118354216, "z": -7.811667908417879}, {"x": -8.61509408248134, "y": 40.95494444045288, "z": -7.703284463789597}, {"x": -8.867993746448786, "y": 40.97664858739422, "z": -7.594581988594999}, {"x": -9.120438462177114, "y": 40.99665106042944, "z": -7.48556629463596}, {"x": -9.372418252132315, "y": 41.01494885125634, "z": -7.376242948265264}, {"x": -9.62390929497139, "y": 41.0315805023473, "z": -7.266618010081876}, {"x": -9.874927086545085, "y": 41.04656151259702, "z": -7.156696577118869}, {"x": -10.12545801596658, "y": 41.05990482998551, "z": -7.04648485408299}, {"x": -10.37550213504269, "y": 41.07162542780937, "z": -6.935987544416008}, {"x": -10.62504786458862, "y": 41.08175044391108, "z": -6.825210855020229}, {"x": -10.87412016185008, "y": 41.09029473765205, "z": -6.714159318730863}, {"x": -11.12270268989493, "y": 41.09725595934746, "z": -6.602839029882701}, {"x": -11.37080126646635, "y": 41.10266573837363, "z": -6.491254516423798}, {"x": -11.618423472786, "y": 41.1065298899278, "z": -6.379411520235639}, {"x": -11.86558400190962, "y": 41.10886070078764, "z": -6.26731468661579}, {"x": -12.11227744290067, "y": 41.10965130018067, "z": -6.15496931723014}, {"x": -12.35851234667634, "y": 41.10893195024548, "z": -6.042380318943487}, {"x": -12.60431238000577, "y": 41.10668806506106, "z": -5.929552568566145}, {"x": -12.84967145694671, "y": 41.10292156139463, "z": -5.816491291820864}, {"x": -13.09459908871598, "y": 41.09762915988332, "z": -5.703200917800458}, {"x": -13.33909946822471, "y": 41.09081865592415, "z": -5.589686929333043}, {"x": -13.58319498479057, "y": 41.0824679393127, "z": -5.475953484640638}, {"x": -13.82686323868334, "y": 41.07256593901336, "z": -5.362006276080386}, {"x": -14.07011914012471, "y": 41.06111426905041, "z": -5.247849423865402}, {"x": -14.31295727919439, "y": 41.04809008063363, "z": -5.133488712299515}, {"x": -14.55537581044644, "y": 41.03347770062408, "z": -5.018928416037529}, {"x": -14.79734697614738, "y": 41.01726059326545, "z": -4.904174251661702}, {"x": -15.03887235755016, "y": 40.99944460561655, "z": -4.789230827949007}, {"x": -15.27993633546791, "y": 40.97999413010119, "z": -4.674103685675175}, {"x": -15.52050731070817, "y": 40.95891148608049, "z": -4.55879787416796}, {"x": -15.76056707684608, "y": 40.93618754552391, "z": -4.443318639637886}, {"x": -16.00009552940797, "y": 40.91182761030392, "z": -4.327671489712531}, {"x": -16.23907094438631, "y": 40.88581049911114, "z": -4.211861341057608}, {"x": -16.47744731465274, "y": 40.85815483342569, "z": -4.095894040196018}, {"x": -16.71522109707704, "y": 40.82886837592091, "z": -3.979774193216352}, {"x": -16.95235897932238, "y": 40.79795196220656, "z": -3.863507793803563}, {"x": -17.18883996059089, "y": 40.76541542153112, "z": -3.747099229984744}, {"x": -17.42462874374653, "y": 40.73127945038741, "z": -3.63055448631229}, {"x": -17.65972727849638, "y": 40.69556444195323, "z": -3.513877898193605}, {"x": -17.89410185388474, "y": 40.65826769170837, "z": -3.39707522453326}, {"x": -18.12773371994322, "y": 40.61942744355414, "z": -3.280150853481699}, {"x": -18.36061291049173, "y": 40.57905779024719, "z": -3.163110103289628}, {"x": -18.59273366826864, "y": 40.53718292286514, "z": -3.045957545035175}, {"x": -18.82407613943193, "y": 40.49380660978711, "z": -2.928698020797195}, {"x": -19.05462584527289, "y": 40.44897418449355, "z": -2.811336376782252}, {"x": -19.28439457797866, "y": 40.4026936208624, "z": -2.693876951822141}, {"x": -19.51336243546862, "y": 40.35498492822438, "z": -2.5763247758238}, {"x": -19.74152906201643, "y": 40.30586967937091, "z": -2.458683708232004}, {"x": -19.96888864445303, "y": 40.25537960054605, "z": -2.340958881669535}, {"x": -20.19546153276157, "y": 40.20352403082529, "z": -2.223153855851502}, {"x": -20.42122484681072, "y": 40.15031517732412, "z": -2.105273768652838}, {"x": -20.646193628585, "y": 40.09578871258027, "z": -1.987322046494438}, {"x": -20.87037333549732, "y": 40.03995162823256, "z": -1.869303582163054}, {"x": -21.09377529612377, "y": 39.9828200407817, "z": -1.751221821423953}, {"x": -21.31639238362088, "y": 39.92440229266325, "z": -1.633081279522296}, {"x": -21.53824540072386, "y": 39.86473232749959, "z": -1.514885584116551}, {"x": -21.75935173259128, "y": 39.80379679674822, "z": -1.396638811009543}, {"x": -21.97970781735866, "y": 39.74161309515618, "z": -1.278344858393618}, {"x": -22.19933086580638, "y": 39.67818651206905, "z": -1.160007308821635}, {"x": -22.41823489511924, "y": 39.61352958051796, "z": -1.041630328116276}, {"x": -22.63643997594211, "y": 39.54762410173594, "z": -0.9232170941983198}, {"x": -22.85393453852485, "y": 39.48047881620263, "z": -0.8047720076374195}, {"x": -23.07075064489394, "y": 39.4120949060067, "z": -0.6862979966614954}, {"x": -23.28688928885812, "y": 39.34245334358139, "z": -0.5677995956690662}, {"x": -23.50235817635389, "y": 39.27154391054751, "z": -0.4492797326892921}, {"x": -23.71714654543955, "y": 39.19935868388336, "z": -0.3307429522954278}, {"x": -23.93127473004413, "y": 39.12589386554816, "z": -0.2121923888609439}, {"x": -24.14472870376981, "y": 39.0511128265043, "z": -0.09363247974354864}, {"x": -24.35749496216443, "y": 38.97502094311618, "z": 0.02493328357510366}, {"x": -24.56956933570254, "y": 38.89759989510552, "z": 0.1435006827785706}, {"x": -24.78094182502903, "y": 38.81884279690787, "z": 0.2620657137170173}, {"x": -24.99158958664017, "y": 38.73872299945257, "z": 0.3806244086970191}, {"x": -25.2014822985009, "y": 38.65725715070269, "z": 0.4991722966064255}, {"x": -25.41062062519516, "y": 38.5744334667735, "z": 0.617705716932809}, {"x": -25.61896791832528, "y": 38.49024747166755, "z": 0.7362198877778523}, {"x": -25.82650520707774, "y": 38.40470438809265, "z": 0.8547113929434222}, {"x": -26.0332039754298, "y": 38.31781909448289, "z": 0.9731752799361748}, {"x": -26.23906335366302, "y": 38.22959486441878, "z": 1.091608220933727}, {"x": -26.44404000975027, "y": 38.14003199115836, "z": 1.210005317909811}, {"x": -26.64812307562144, "y": 38.04916494911224, "z": 1.328363277792849}, {"x": -26.85129880065691, "y": 37.95699900231838, "z": 1.446677501646872}, {"x": -27.05355600413219, "y": 37.86355296956028, "z": 1.564944564748001}, {"x": -27.2548688554686, "y": 37.76883590834878, "z": 1.683160281294619}, {"x": -27.45523197329037, "y": 37.67288959615054, "z": 1.801320958716385}, {"x": -27.65464738711732, "y": 37.57571214361131, "z": 1.919422898272375}, {"x": -27.85309043788152, "y": 37.4773301252477, "z": 2.037462181896655}, {"x": -28.0505619973788, "y": 37.37776531003572, "z": 2.155435619570523}, {"x": -28.24705835260405, "y": 37.27704663003946, "z": 2.273339098597218}, {"x": -28.44258963162696, "y": 37.17517806446597, "z": 2.391169814195588}, {"x": -28.63713115176803, "y": 37.07218469619232, "z": 2.508923550190122}, {"x": -28.83070443970452, "y": 36.96809668140693, "z": 2.626597746466009}, {"x": -29.02330744117278, "y": 36.86291968608919, "z": 2.74418827051018}, {"x": -29.21494647131725, "y": 36.75667313901464, "z": 2.861692639538076}, {"x": -29.40561484450112, "y": 36.64937484618522, "z": 2.979106981304509}, {"x": -29.59533864021834, "y": 36.54105393924507, "z": 3.096428710008259}, {"x": -29.78412275309354, "y": 36.43169975764735, "z": 3.213654355120515}, {"x": -29.97196734750156, "y": 36.32134199604784, "z": 3.33078111255218}, {"x": -30.15889247321634, "y": 36.20998732842327, "z": 3.447805967500132}, {"x": -30.34491325290077, "y": 36.09764944994731, "z": 3.564725833825281}, {"x": -30.53004180974101, "y": 35.98431720920835, "z": 3.68153815940904}, {"x": -30.7142770067063, "y": 35.87001445526631, "z": 3.798239602309549}, {"x": -30.8976567711049, "y": 35.75473832189938, "z": 3.914828010807282}, {"x": -31.08018087086612, "y": 35.63847834443389, "z": 4.031299856584988}, {"x": -31.26186417831707, "y": 35.52123305357719, "z": 4.147653150516872}, {"x": -31.44270941872669, "y": 35.40300165106041, "z": 4.263884268361323}, {"x": -31.62274593147847, "y": 35.28377363229713, "z": 4.379991179750141}, {"x": -31.80196006848131, "y": 35.16352123388643, "z": 4.495970327029665}, {"x": -31.98035845621424, "y": 35.04225318503539, "z": 4.611819459993018}, {"x": -32.15794703621011, "y": 34.91994422421455, "z": 4.727535177440489}, {"x": -32.33472395881734, "y": 34.79658114812884, "z": 4.84311477239538}, {"x": -32.51067068922335, "y": 34.67213796038391, "z": 4.95855502148692}, {"x": -32.68577618274669, "y": 34.54662502091112, "z": 5.07385269837645}, {"x": -32.8600418360342, "y": 34.42001253172776, "z": 5.189004861442613}, {"x": -33.03343165590493, "y": 34.29229439341972, "z": 5.304007828261665}, {"x": -33.20593324210314, "y": 34.1634681209189, "z": 5.418858892518352}, {"x": -33.37752406616707, "y": 34.03353781775451, "z": 5.533554019660889}, {"x": -33.54819665793605, "y": 33.90249086380767, "z": 5.648090612902973}, {"x": -33.71790363832401, "y": 33.77033120946757, "z": 5.762464494920915}, {"x": -33.88664105244385, "y": 33.63708151892895, "z": 5.876673144387628}, {"x": -34.05438635954769, "y": 33.502737118954, "z": 5.99071249125785}, {"x": -34.22112118249305, "y": 33.36731286495016, "z": 6.104579935090942}, {"x": -34.38681619131293, "y": 33.23082092667386, "z": 6.218271693865708}, {"x": -34.5514701325851, "y": 33.09329348629265, "z": 6.331784953653689}, {"x": -34.71506945337219, "y": 32.95472227697675, "z": 6.445116359849067}, {"x": -34.87758723595059, "y": 32.815141050646, "z": 6.558262838976577}, {"x": -35.03902336650152, "y": 32.67456746390597, "z": 6.671221538065983}, {"x": -35.19937044616253, "y": 32.53302624124474, "z": 6.783989126641958}, {"x": -35.35862494173111, "y": 32.39052111777757, "z": 6.896563199286987}, {"x": -35.51676414368178, "y": 32.24708826512038, "z": 7.008940257820645}, {"x": -35.67380985264864, "y": 32.10274860965151, "z": 7.12111824375}, {"x": -35.82974850966082, "y": 31.9575102386473, "z": 7.233093588429629}, {"x": -35.98458235770509, "y": 31.81139804060524, "z": 7.344864412696156}, {"x": -36.13830543209445, "y": 31.66443573537078, "z": 7.456427273971964}, {"x": -36.29094190257953, "y": 31.51664605190091, "z": 7.567780305097775}, {"x": -36.44248232787694, "y": 31.36802716279659, "z": 7.67892038803697}, {"x": -36.59293301285386, "y": 31.21861847227539, "z": 7.789845512837558}, {"x": -36.74231163358841, "y": 31.06842565545276, "z": 7.900552955864895}, {"x": -36.89062877594565, "y": 30.91746545083707, "z": 8.01104043031766}, {"x": -37.03788867066309, "y": 30.76573834402449, "z": 8.121305686475637}, {"x": -37.18409997974712, "y": 30.61327832254805, "z": 8.23134618825681}, {"x": -37.32929678365778, "y": 30.4600794895786, "z": 8.341160171093675}, {"x": -37.47347469948927, "y": 30.30614641504363, "z": 8.450744868105348}, {"x": -37.61665524825064, "y": 30.15148777432971, "z": 8.560098831711402}, {"x": -37.75884951726108, "y": 29.99610969858913, "z": 8.66921911890463}, {"x": -37.90008747130389, "y": 29.84000166539503, "z": 8.778104422151053}, {"x": -38.04035766925339, "y": 29.68315413641442, "z": 8.886751827615935}, {"x": -38.1796857109269, "y": 29.52557952955531, "z": 8.995159980281306}, {"x": -38.31808249409075, "y": 29.3672528143979, "z": 9.103326085439093}, {"x": -38.45555412367687, "y": 29.20816510004055, "z": 9.211248482595861}, {"x": -38.59209319721023, "y": 29.04829832281055, "z": 9.318924538465726}, {"x": -38.72770933141396, "y": 28.88765728029838, "z": 9.426352134528464}, {"x": -38.86240447668996, "y": 28.72620353718862, "z": 9.533528903316494}, {"x": -38.99615311068452, "y": 28.56393610040726, "z": 9.640452221911929}, {"x": -39.12895577837617, "y": 28.40084404061375, "z": 9.747119963774004}, {"x": -39.26079824830006, "y": 28.23692142740079, "z": 9.853529025742958}, {"x": -39.39167047119038, "y": 28.07214586622397, "z": 9.959677440975822}, {"x": -39.52153284483943, "y": 27.90652413759768, "z": 10.065561786311}, {"x": -39.65038969623914, "y": 27.74006157928359, "z": 10.17118018002193}, {"x": -39.77821135259223, "y": 27.57274570773449, "z": 10.2765291036398}, {"x": -39.90497854159586, "y": 27.4045881837491, "z": 10.38160664399953}, {"x": -40.03066434214086, "y": 27.23559930904429, "z": 10.48640940856401}, {"x": -40.15526949007067, "y": 27.06579749871973, "z": 10.59093534694388}, {"x": -40.27876678042107, "y": 26.89517253038612, "z": 10.69518138836249}, {"x": -40.40113456097046, "y": 26.72376140624882, "z": 10.79914521590511}, {"x": -40.52237107759608, "y": 26.5515727805685, "z": 10.90282420265632}, {"x": -40.64246401210528, "y": 26.37862680192856, "z": 11.00621574457138}, {"x": -40.76140023734482, "y": 26.20492963100326, "z": 11.10931770408263}, {"x": -40.87916408353684, "y": 26.03052175950717, "z": 11.21212726266563}, {"x": -40.99577345215273, "y": 25.85541230738877, "z": 11.31464270775052}, {"x": -41.11120563444546, "y": 25.67961460028477, "z": 11.41686103946791}, {"x": -41.2254640245232, "y": 25.50315598196759, "z": 11.51878081234197}, {"x": -41.3385442910293, "y": 25.32606018588018, "z": 11.62039902384469}, {"x": -41.45046517754569, "y": 25.14834228933144, "z": 11.7217143753657}, {"x": -41.56120792117821, "y": 24.97001142008277, "z": 11.8227240714355}, {"x": -41.67078784238654, "y": 24.79110844713757, "z": 11.92342676520741}, {"x": -41.7792169412247, "y": 24.61163503935944, "z": 12.02381997278007}, {"x": -41.88650084000491, "y": 24.43161091767662, "z": 12.12390210446104}, {"x": -41.99264053270952, "y": 24.25104582917531, "z": 12.22367111308354}, {"x": -42.09765307329572, "y": 24.06997460807145, "z": 12.32312517293495}, {"x": -42.20156253131005, "y": 23.88838781376406, "z": 12.42226273190328}, {"x": -42.30436266373304, "y": 23.70630482227854, "z": 12.52108169432289}, {"x": -42.406080641715, "y": 23.52373797508726, "z": 12.61958091965608}, {"x": -42.50673037815613, "y": 23.34069619131848, "z": 12.71775806750768}, {"x": -42.60633665483006, "y": 23.15717118169908, "z": 12.8156122795332}, {"x": -42.70489285240211, "y": 22.97317103490454, "z": 12.913141157062}, {"x": -42.80243729119307, "y": 22.78870624881015, "z": 13.01034395302984}, {"x": -42.89897897043964, "y": 22.60375565803749, "z": 13.10721832572756}, {"x": -42.99453075640321, "y": 22.41831931365756, "z": 13.20376339405045}, {"x": -43.08909759066113, "y": 22.23238723070134, "z": 13.29997697597441}, {"x": -43.18270440965494, "y": 22.04595825337756, "z": 13.39585786041155}, {"x": -43.27535184159704, "y": 21.85899423710251, "z": 13.49140409999115}, {"x": -43.36703150570242, "y": 21.67150117802414, "z": 13.5866140217182}, {"x": -43.45775676399433, "y": 21.48345840949182, "z": 13.68148593050023}, {"x": -43.54752125731415, "y": 21.29485244447202, "z": 13.77601762911964}, {"x": -43.63631687374266, "y": 21.10565650906546, "z": 13.8702076439203}, {"x": -43.72411991851088, "y": 20.91587578638207, "z": 13.96405332267834}, {"x": -43.81094087733307, "y": 20.72549457490105, "z": 14.05755328233078}, {"x": -43.8967455525267, "y": 20.53449495060116, "z": 14.15070456802728}, {"x": -43.98151984707215, "y": 20.34288210436317, "z": 14.24350579564698}, {"x": -44.06524091824066, "y": 20.15065709299416, "z": 14.33595394953401}, {"x": -44.14790703014465, "y": 19.95782114352924, "z": 14.42804755870767}, {"x": -44.22948034502439, "y": 19.76436414445496, "z": 14.5197837606509}, {"x": -44.30994742233619, "y": 19.57031756601982, "z": 14.61116083052576}, {"x": -44.38929962676902, "y": 19.37567662142209, "z": 14.70217621331566}, {"x": -44.46751704485295, "y": 19.18045674780026, "z": 14.79282788382689}, {"x": -44.54457950603614, "y": 18.98466527716651, "z": 14.8831137594598}, {"x": -44.62047643367001, "y": 18.78833852054623, "z": 14.9730315464217}, {"x": -44.69521388421973, "y": 18.59147370184887, "z": 15.06257961789948}, {"x": -44.76876145739485, "y": 18.39409147831249, "z": 15.1517554182775}, {"x": -44.84112362845175, "y": 18.19621630218742, "z": 15.24055765275236}, {"x": -44.91229290968828, "y": 17.99786806704756, "z": 15.32898364544505}, {"x": -44.9822770663277, "y": 17.79905624636005, "z": 15.41703236869298}, {"x": -45.0510517507607, "y": 17.599801149138, "z": 15.50470121507485}, {"x": -45.11863727562325, "y": 17.40013774538468, "z": 15.59198922003561}, {"x": -45.18503364257695, "y": 17.20006511284325, "z": 15.67889398151577}, {"x": -45.25024108876737, "y": 16.9996078831165, "z": 15.76541438315069}, {"x": -45.31425861529988, "y": 16.79878151588408, "z": 15.85154838543173}, {"x": -45.37710537277481, "y": 16.59761636543233, "z": 15.93729465690999}, {"x": -45.43878971856958, "y": 16.39610342177886, "z": 16.02265162077514}, {"x": -45.49930601804648, "y": 16.19427544696564, "z": 16.10761765895957}, {"x": -45.558681577047, "y": 15.99214332751914, "z": 16.1921916449461}, {"x": -45.61692607056641, "y": 15.78971861080784, "z": 16.27637168363339}, {"x": -45.67405517448508, "y": 15.58699922854773, "z": 16.36015702888226}, {"x": -45.73006733180327, "y": 15.38400757771884, "z": 16.44354560945345}, {"x": -45.7850031211008, "y": 15.18074958029214, "z": 16.52653692307029}, {"x": -45.83886287325454, "y": 14.97721400171088, "z": 16.60912886375325}, {"x": -45.89166424021185, "y": 14.77341252574767, "z": 16.69132096848646}, {"x": -45.94341936662114, "y": 14.5693431057241, "z": 16.77311126400688}, {"x": -45.99415868405206, "y": 14.36500286284154, "z": 16.85449911618339}, {"x": -46.04387912084002, "y": 14.16036527462902, "z": 16.93548274763499}, {"x": -46.09259040227682, "y": 13.95544501456719, "z": 17.01606116511725}, {"x": -46.14031254556345, "y": 13.75021678437238, "z": 17.09623286213117}, {"x": -46.18704490586637, "y": 13.54466896074255, "z": 17.17599638434135}, {"x": -46.23278542648812, "y": 13.33877925651311, "z": 17.25535051601326}, {"x": -46.27752934834856, "y": 13.13255188531944, "z": 17.33429330071752}, {"x": -46.32129040172565, "y": 12.9259561868413, "z": 17.41282366957245}, {"x": -46.36403598716986, "y": 12.71897726994465, "z": 17.49093920737947}, {"x": -46.40576354681831, "y": 12.51161368187891, "z": 17.5686389016637}, {"x": -46.44645560671947, "y": 12.30385658179666, "z": 17.64592011017897}, {"x": -46.48610734220104, "y": 12.09569394691908, "z": 17.72278177681206}, {"x": -46.52467836168032, "y": 11.88711929602755, "z": 17.79922122441331}, {"x": -46.56216549221125, "y": 11.67815272364689, "z": 17.87523718305536}, {"x": -46.59855084338963, "y": 11.4687777758205, "z": 17.95082711108628}, {"x": -46.63380963986166, "y": 11.25900818332251, "z": 18.0259894510462}, {"x": -46.66791944350776, "y": 11.04885087239595, "z": 18.10072205134033}, {"x": -46.70087265312601, "y": 10.83833345784689, "z": 18.17502304825699}, {"x": -46.73265999982002, "y": 10.62744607783416, "z": 18.24889073415273}, {"x": -46.76324924820552, "y": 10.41621856184771, "z": 18.32232292989547}, {"x": -46.79264565961252, "y": 10.20466885908305, "z": 18.39531832324034}, {"x": -46.82083586244605, "y": 9.992813707179995, "z": 18.46787452081339}, {"x": -46.84781665171455, "y": 9.780662332823809, "z": 18.53999056506564}, {"x": -46.87356434623337, "y": 9.568245044418232, "z": 18.611664009782}, {"x": -46.89810037888648, "y": 9.355587546569025, "z": 18.68289408329072}, {"x": -46.92141130684029, "y": 9.14269190904874, "z": 18.75367843637032}, {"x": -46.943496857209, "y": 8.929589721557681, "z": 18.8240162969248}, {"x": -46.96435632281332, "y": 8.716299211177162, "z": 18.89390559087655}, {"x": -46.98400744649243, "y": 8.502845431891263, "z": 18.96334538483245}, {"x": -47.00244463767702, "y": 8.289226155667233, "z": 19.03233401735578}, {"x": -47.01966900035688, "y": 8.075483925637725, "z": 19.10087029691385}, {"x": -47.03570492530316, "y": 7.86162558818565, "z": 19.16895303132259}, {"x": -47.05055652426741, "y": 7.647667599653975, "z": 19.23658076291124}, {"x": -47.06423421005784, "y": 7.433616784286934, "z": 19.3037527472077}, {"x": -47.07674408852338, "y": 7.219503967805105, "z": 19.37046726216762}, {"x": -47.08812284226582, "y": 7.00532976985538, "z": 19.43672390640589}, {"x": -47.09836347299536, "y": 6.791097543813197, "z": 19.50252083117344}, {"x": -47.10749082403235, "y": 6.576827588697003, "z": 19.56785784452964}, {"x": -47.1155205881481, "y": 6.362523300361122, "z": 19.63273316188434}, {"x": -47.12248297025685, "y": 6.148183579631979, "z": 19.69714658496242}, {"x": -47.12837455450401, "y": 5.933799197752503, "z": 19.76109647676023}, {"x": -47.13322259887597, "y": 5.719389856037362, "z": 19.82458240544346}, {"x": -47.13704829054853, "y": 5.504930281245546, "z": 19.88760301140146}, {"x": -47.13985748161699, "y": 5.290418083662898, "z": 19.95015753120411}, {"x": -47.14165897771797, "y": 5.075839167235851, "z": 20.01224494540877}, {"x": -47.14246696083973, "y": 4.861196742918213, "z": 20.07386403179126}, {"x": -47.14229741585198, "y": 4.646453717270109, "z": 20.13501401250196}, {"x": -47.14112944427723, "y": 4.431604269721586, "z": 20.19569314720327}, {"x": -47.1389775353942, "y": 4.216638352788661, "z": 20.25590080849945}, {"x": -47.13583241841125, "y": 4.001538507236908, "z": 20.31563490546084}, {"x": -47.13169137918995, "y": 3.7862839800707, "z": 20.37489482935434}, {"x": -47.12652338972211, "y": 3.570870018844244, "z": 20.43367827705343}, {"x": -47.12033748874285, "y": 3.355298695933694, "z": 20.49198447826393}, {"x": -47.11310927274891, "y": 3.139543465399335, "z": 20.54981109071788}, {"x": -47.10481731184965, "y": 2.923614189685184, "z": 20.60715707354078}, {"x": -47.09544215893057, "y": 2.707510015579401, "z": 20.6640203045747}, {"x": -47.08497786705431, "y": 2.491243591158448, "z": 20.72039941116633}, {"x": -47.07340140297642, "y": 2.274799485713445, "z": 20.77629262845196}, {"x": -47.06068565423726, "y": 2.05820997829993, "z": 20.83169821816246}, {"x": -47.04683421577674, "y": 1.841479484189163, "z": 20.88661483253888}, {"x": -47.03182629215868, "y": 1.624619862265268, "z": 20.94104042754865}, {"x": -47.01565049079815, "y": 1.407639671412435, "z": 20.99497403436797}, {"x": -46.99828694590561, "y": 1.190570987400767, "z": 21.04841343062098}, {"x": -46.9797520968613, "y": 0.9734256661119658, "z": 21.10135792327823}, {"x": -46.96001963040073, "y": 0.7562108608548588, "z": 21.15380526923006}, {"x": -46.93909188394347, "y": 0.5389599506813618, "z": 21.20575491685021}, {"x": -46.91696635909799, "y": 0.3216881120525937, "z": 21.25720477652004}, {"x": -46.89365458977844, "y": 0.1044134943378296, "z": 21.30815421269196}, {"x": -46.86914006250694, "y": -0.1128577337372081, "z": 21.35860144450207}, {"x": -46.84343169567909, "y": -0.3300821176721526, "z": 21.40854563446193}, {"x": -46.81654499553466, "y": -0.5472596583715809, "z": 21.45798545259275}, {"x": -46.78847717845651, "y": -0.7643686070086747, "z": 21.50691981469128}, {"x": -46.75923567570918, "y": -0.9813960497558721, "z": 21.55534785832986}, {"x": -46.72883153296489, "y": -1.198310789951557, "z": 21.6032681866107}, {"x": -46.69729015931001, "y": -1.415117684502839, "z": 21.65068032746994}, {"x": -46.66459952545347, "y": -1.631798514963484, "z": 21.6975826742588}, {"x": -46.6307892781663, "y": -1.848332145102795, "z": 21.74397509673523}, {"x": -46.59587160727688, "y": -2.064713183001532, "z": 21.78985593976659}, {"x": -46.55987015262487, "y": -2.280939218801205, "z": 21.83522521152153}, {"x": -46.52278227830125, "y": -2.497003344904554, "z": 21.88008132151785}, {"x": -46.48464495123324, "y": -2.712887250710633, "z": 21.92442417490899}, {"x": -46.44547159569854, "y": -2.928612482794205, "z": 21.96825241363739}, {"x": -46.40527230027436, "y": -3.144168991138593, "z": 22.01156573939061}, {"x": -46.36406350925927, "y": -3.359563614525431, "z": 22.05436313250878}, {"x": -46.32186958621107, "y": -3.57479363182872, "z": 22.09664392337361}, {"x": -46.27870297143049, "y": -3.789892450820047, "z": 22.13840740993915}, {"x": -46.23455808973909, "y": -4.004853263180661, "z": 22.17965244420513}, {"x": -46.1894619361461, "y": -4.219693731685071, "z": 22.22037858103392}, {"x": -46.14341056809894, "y": -4.434433045184864, "z": 22.26058425068786}, {"x": -46.09640614698645, "y": -4.649092617368929, "z": 22.30026913452212}, {"x": -46.04843268694232, "y": -4.863675876123843, "z": 22.33943132446174}, {"x": -45.99950803942291, "y": -5.078198134675582, "z": 22.37807043530307}, {"x": -45.94960417362118, "y": -5.292688584370372, "z": 22.41618438436986}, {"x": -45.89871011280749, "y": -5.507142049079604, "z": 22.45377256297453}, {"x": -45.8468106838961, "y": -5.721570638936692, "z": 22.49083290263723}, {"x": -45.79389931001494, "y": -5.935976860291767, "z": 22.52736446196938}, {"x": -45.73994339321155, "y": -6.150377852269146, "z": 22.56336538601432}, {"x": -45.68492483999441, "y": -6.364746027833142, "z": 22.59883434391186}, {"x": -45.6288404157049, "y": -6.579092577446856, "z": 22.63376985488734}, {"x": -45.57166142520074, "y": -6.79340828355728, "z": 22.6681702045591}, {"x": -45.51337141449925, "y": -7.00768606127662, "z": 22.70203427480071}, {"x": -45.45395298402733, "y": -7.22189825815743, "z": 22.7353600449708}, {"x": -45.39341065586931, "y": -7.436045569964032, "z": 22.76814673539671}, {"x": -45.33170800529019, "y": -7.650112240178349, "z": 22.8003921957594}, {"x": -45.26884971638788, "y": -7.864068008463673, "z": 22.83209589714025}, {"x": -45.20482663971595, "y": -8.077901459140696, "z": 22.86325571176353}, {"x": -45.13964040144149, "y": -8.291597628558803, "z": 22.89387113522112}, {"x": -45.07326765785265, "y": -8.50514018429898, "z": 22.92394021049646}, {"x": -45.00572216538023, "y": -8.718490189247113, "z": 22.95346232444041}, {"x": -44.93700498674045, "y": -8.931650818562709, "z": 22.98243591582863}, {"x": -44.86710800288858, "y": -9.144591736810868, "z": 23.01086016314927}, {"x": -44.79603665226538, "y": -9.357295807764327, "z": 23.03873396077563}, {"x": -44.72380247161457, "y": -9.569733639630256, "z": 23.06605617737904}, {"x": -44.65041582584685, "y": -9.781909617212465, "z": 23.09282613025842}, {"x": -44.57586474739677, "y": -9.993790350320147, "z": 23.11904242762773}, {"x": -44.50017976820541, "y": -10.20535783813114, "z": 23.14470482154889}, {"x": -44.42336509368005, "y": -10.41660252443326, "z": 23.16981177101042}, {"x": -44.34543687457531, "y": -10.62751421018447, "z": 23.19436329950057}, {"x": -44.26639534721404, "y": -10.83807187964616, "z": 23.21835783654454}, {"x": -44.18627988031408, "y": -11.04826055669199, "z": 23.24179546676761}, {"x": -44.10509239161836, "y": -11.25809131827249, "z": 23.26467477234233}, {"x": -44.0228485837128, "y": -11.46754041962756, "z": 23.28699575307166}, {"x": -43.93956858591095, "y": -11.67660817678833, "z": 23.30875729424091}, {"x": -43.85527946518463, "y": -11.88528892772898, "z": 23.32995913819273}, {"x": -43.76998864506982, "y": -12.09360220780862, "z": 23.35060053125953}, {"x": -43.68370776480155, "y": -12.30152772446121, "z": 23.3706808482261}, {"x": -43.59646982936633, "y": -12.50908597026819, "z": 23.39019968860876}, {"x": -43.50827502401657, "y": -12.71628752056427, "z": 23.40915599965507}, {"x": -43.41913477105448, "y": -12.92314608954744, "z": 23.42754964281104}, {"x": -43.32905098671729, "y": -13.12966155624313, "z": 23.44537918011901}, {"x": -43.23804806825431, "y": -13.33585898615068, "z": 23.46264457043151}, {"x": -43.14610215556256, "y": -13.54175920707826, "z": 23.47934412777293}, {"x": -43.05322100773048, "y": -13.7473608558593, "z": 23.49547770197998}, {"x": -42.9593970579693, "y": -13.95268508230799, "z": 23.51104346342099}, {"x": -42.86462683707916, "y": -14.1577441994388, "z": 23.52604097561457}, {"x": -42.76887982691717, "y": -14.36255318014966, "z": 23.54046847791832}, {"x": -42.67215274765112, "y": -14.56709521296069, "z": 23.55432517192999}, {"x": -42.57443612707054, "y": -14.77139521552536, "z": 23.56760956942599}, {"x": -42.47570090082396, "y": -14.97544415260998, "z": 23.58032044661379}, {"x": -42.37593316082496, "y": -15.17924006561425, "z": 23.59245663238235}, {"x": -42.2751192794011, "y": -15.38276501338347, "z": 23.60401648514038}, {"x": -42.17325190656533, "y": -15.58602948956973, "z": 23.61499920469819}, {"x": -42.07029383681535, "y": -15.7890100596882, "z": 23.6254029183971}, {"x": -41.96625316108698, "y": -15.9916865588792, "z": 23.63522714716059}, {"x": -41.86111321795786, "y": -16.19405172506831, "z": 23.64446991719747}, {"x": -41.75486863377007, "y": -16.39609148412685, "z": 23.6531308918643}, {"x": -41.64749662038786, "y": -16.59778314612895, "z": 23.66120813480441}, {"x": -41.53901363056991, "y": -16.79909825751528, "z": 23.66870131273266}, {"x": -41.42940637893369, "y": -17.00003975117703, "z": 23.67560878332587}, {"x": -41.31866815157405, "y": -17.20057056966737, "z": 23.68193007297817}, {"x": -41.20680398221874, "y": -17.40067503664476, "z": 23.6876639416666}, {"x": -41.0938235770745, "y": -17.60032803854637, "z": 23.69280964353547}, {"x": -40.97972503512763, "y": -17.79952991332343, "z": 23.69736638277761}, {"x": -40.86450331088906, "y": -17.99823869386039, "z": 23.701333126318}, {"x": -40.74818642943158, "y": -18.19644470505931, "z": 23.70470954593664}, {"x": -40.63077057850294, "y": -18.39413379312876, "z": 23.70749438461242}, {"x": -40.51226848091864, "y": -18.59128957622425, "z": 23.7096876826976}, {"x": -40.39268497305105, "y": -18.78788481028632, "z": 23.71128805995841}, {"x": -40.27205603665178, "y": -18.98391115624008, "z": 23.71229578168402}, {"x": -40.15037398170055, "y": -19.17936716135742, "z": 23.71270950871637}, {"x": -40.02766232936757, "y": -19.37422265310708, "z": 23.71252952616695}, {"x": -39.90394019385436, "y": -19.56847647451718, "z": 23.7117547102069}, {"x": -39.77923190659607, "y": -19.76212033842639, "z": 23.7103852018824}, {"x": -39.65354149416126, "y": -19.95515872864278, "z": 23.70842022739465}, {"x": -39.52689504345847, "y": -20.14756528201104, "z": 23.70585967276123}, {"x": -39.3993230195191, "y": -20.33936182903988, "z": 23.70270315565796}, {"x": -39.27082855339231, "y": -20.53054609474658, "z": 23.69895016671792}, {"x": -39.1414325525956, "y": -20.72112431895286, "z": 23.69460067171039}, {"x": -39.01115061834624, "y": -20.91109414222294, "z": 23.68965377813551}, {"x": -38.88000822690119, "y": -21.10048375831532, "z": 23.6841097211466}, {"x": -38.74799111977097, "y": -21.28930011665104, "z": 23.67796731209355}, {"x": -38.61512596578326, "y": -21.47754747561391, "z": 23.67122683525411}, {"x": -38.48141165156359, "y": -21.66525220744548, "z": 23.66388685938592}, {"x": -38.34685062835982, "y": -21.85243067160485, "z": 23.65594747725556}, {"x": -38.21142323997719, "y": -22.0390956959833, "z": 23.64740720152904}, {"x": -38.07514118511703, "y": -22.22524610318294, "z": 23.63826583209702}, {"x": -37.93798943761905, "y": -22.41091676362186, "z": 23.62852200970477}, {"x": -37.79994629153596, "y": -22.59609967856924, "z": 23.61817510116254}, {"x": -37.66100352076416, "y": -22.7808039443206, "z": 23.60722397082679}, {"x": -37.52114987629512, "y": -22.96502553171064, "z": 23.59566748995931}, {"x": -37.38036724060861, "y": -23.14878270269462, "z": 23.58350485759859}, {"x": -37.23862411959674, "y": -23.33205072327275, "z": 23.57073459117842}, {"x": -37.09592771787298, "y": -23.5148264207184, "z": 23.55735622810237}, {"x": -36.95225143878864, "y": -23.69710685846511, "z": 23.5433680472825}, {"x": -36.80758465514526, "y": -23.87887946557845, "z": 23.52876981325241}, {"x": -36.6619064736057, "y": -24.06012202124879, "z": 23.51355972066637}, {"x": -36.51522895899101, "y": -24.24082031265361, "z": 23.49773763701882}, {"x": -36.36752404082345, "y": -24.4209733963393, "z": 23.48130189876013}, {"x": -36.21878875734313, "y": -24.60054267973182, "z": 23.46425232464293}, {"x": -36.06902315319881, "y": -24.77951816373506, "z": 23.44658755561074}, {"x": -35.91822980145581, "y": -24.95787860630349, "z": 23.42830721045222}, {"x": -35.76639644552799, "y": -25.13561737397733, "z": 23.40941036504707}, {"x": -35.61352522827686, "y": -25.31269110727297, "z": 23.38989635308134}, {"x": -35.4596343131751, "y": -25.48909905238375, "z": 23.36976470543777}, {"x": -35.30471136783135, "y": -25.66481962682609, "z": 23.34901448004297}, {"x": -35.1487671394894, "y": -25.8398326269819, "z": 23.32764563835762}, {"x": -34.99180764705057, "y": -26.01410987134296, "z": 23.30565704618722}, {"x": -34.83385819271536, "y": -26.18764784507579, "z": 23.28304902282111}, {"x": -34.67490448638258, "y": -26.36043008628403, "z": 23.25982036130403}, {"x": -34.51497564056545, "y": -26.53242671317691, "z": 23.23597151544874}, {"x": -34.35408303366791, "y": -26.70363576223491, "z": 23.21150136789986}, {"x": -34.19224419030049, "y": -26.87404359601531, "z": 23.18641035968931}, {"x": -34.02946108718183, "y": -27.04364059793254, "z": 23.16069767133611}, {"x": -33.86576697110329, "y": -27.21239996735702, "z": 23.13436359518868}, {"x": -33.70118108004216, "y": -27.38033983986805, "z": 23.10740769568743}, {"x": -33.5357090636513, "y": -27.5474419587195, "z": 23.07982994043956}, {"x": -33.36937699712789, "y": -27.713706482609, "z": 23.05163027666738}, {"x": -33.20220575452921, "y": -27.8791272351866, "z": 23.02280833021061}, {"x": -33.0342157716916, "y": -28.04372600720334, "z": 22.99336445633964}, {"x": -32.86540457087494, "y": -28.20749226370178, "z": 22.96329796436424}, {"x": -32.6958106528098, "y": -28.37043383923295, "z": 22.93260943750258}, {"x": -32.52543527316404, "y": -28.53257223682001, "z": 22.90129790438793}, {"x": -32.35428908061509, "y": -28.69391828399333, "z": 22.86936392983766}, {"x": -32.1823672151066, "y": -28.85447976111386, "z": 22.83680640840614}, {"x": -32.0096931236948, "y": -29.01426700020741, "z": 22.80362574075969}, {"x": -31.83624950292604, "y": -29.17331348370774, "z": 22.76982083975246}, {"x": -31.66203032682331, "y": -29.33161040682609, "z": 22.73539173766103}, {"x": -31.48703456532465, "y": -29.48917710446491, "z": 22.70033747809951}, {"x": -31.31125450853761, "y": -29.64601963338906, "z": 22.66465760900248}, {"x": -31.13466816114614, "y": -29.80215811935256, "z": 22.62835143377361}, {"x": -30.95725641973588, "y": -29.95757129542453, "z": 22.59141803885908}, {"x": -30.77902308600935, "y": -30.11227314489456, "z": 22.55385705078269}, {"x": -30.59993489035735, "y": -30.26626098895059, "z": 22.51566718741293}, {"x": -30.41998143768149, "y": -30.41952455206568, "z": 22.47684836036204}, {"x": -30.23914473559178, "y": -30.57204616741212, "z": 22.43739909463692}, {"x": -30.0574288492678, "y": -30.72382393847817, "z": 22.39731949048483}, {"x": -29.87479666675145, "y": -30.87484868068427, "z": 22.35660805178985}, {"x": -29.69125138619917, "y": -31.02508550768631, "z": 22.31526493192407}, {"x": -29.50678525031488, "y": -31.17452971068345, "z": 22.27328882729065}, {"x": -29.32139357350156, "y": -31.32316018097, "z": 22.23067981009687}, {"x": -29.13505954523418, "y": -31.47096172673176, "z": 22.18743696627107}, {"x": -28.94779218669483, "y": -31.61789433733848, "z": 22.14356013986528}, {"x": -28.75959672409047, "y": -31.76396188295823, "z": 22.09904884952146}, {"x": -28.57045781768669, "y": -31.90913203556649, "z": 22.05390264699665}, {"x": -28.38038732260078, "y": -32.05338345677229, "z": 22.00812153232183}, {"x": -28.18939108797283, "y": -32.1966887238374, "z": 21.96170483882749}, {"x": -27.99748291523516, "y": -32.33904397395495, "z": 21.91465301858294}, {"x": -27.80464999969016, "y": -32.48041757964008, "z": 21.86696524996851}, {"x": -27.61092596830775, "y": -32.62078478665877, "z": 21.8186422484974}, {"x": -27.41631336299633, "y": -32.76014030679785, "z": 21.76968315900103}, {"x": -27.22082656419662, "y": -32.89846283358245, "z": 21.72008883316211}, {"x": -27.02447024325804, "y": -33.035732517823, "z": 21.66985863257436}, {"x": -26.82728085044981, "y": -33.17192607391728, "z": 21.61899337901948}, {"x": -26.62926565986215, "y": -33.30705288273032, "z": 21.56749277750886}, {"x": -26.43043806071016, "y": -33.44108074316842, "z": 21.51535743101749}, {"x": -26.23082718515509, "y": -33.57400748811096, "z": 21.46258744174997}, {"x": -26.03045508526093, "y": -33.70582264594808, "z": 21.40918313641487}, {"x": -25.8293379141885, "y": -33.83653626368447, "z": 21.35514509968738}, {"x": -25.62748791583667, "y": -33.96612400803063, "z": 21.30047335742267}, {"x": -25.42494858412486, "y": -34.09459686888056, "z": 21.24516887470691}, {"x": -25.22172266097786, "y": -34.22196396785558, "z": 21.18923139601672}, {"x": -25.01783297983195, "y": -34.34822698594369, "z": 21.13266208529421}, {"x": -24.81329052874949, "y": -34.47338881312018, "z": 21.07546050923578}, {"x": -24.60812735221833, "y": -34.59746603256662, "z": 21.0176278360011}, {"x": -24.40233089094763, "y": -34.72048148165722, "z": 20.95916358985709}, {"x": -24.19591775539486, "y": -34.84242720931102, "z": 20.90006871081811}, {"x": -23.98889561068446, "y": -34.96333058720529, "z": 20.8403427972895}, {"x": -23.78126496210214, "y": -35.08320283707241, "z": 20.77998640593746}, {"x": -23.57301139033529, "y": -35.20206371992424, "z": 20.71899931338825}, {"x": -23.36413434973071, "y": -35.31990224580412, "z": 20.65738156686642}, {"x": -23.15463536521343, "y": -35.43674880562408, "z": 20.59513321147638}, {"x": -22.9444838702832, "y": -35.55260047792279, "z": 20.53225382343886}, {"x": -22.73367675923489, "y": -35.66745632020834, "z": 20.46874375021169}, {"x": -22.52220016250816, "y": -35.78130970228086, "z": 20.40460224935398}, {"x": -22.310050613071, "y": -35.89417095178842, "z": 20.33982990343597}, {"x": -22.09719116574879, "y": -36.00602628646189, "z": 20.2744257766774}, {"x": -21.88363108096392, "y": -36.11685458401001, "z": 20.20839056804835}, {"x": -21.66935308101226, "y": -36.22665834732556, "z": 20.1417234000249}, {"x": -21.45434786892134, "y": -36.33541793313301, "z": 20.07442500711853}, {"x": -21.23859842666334, "y": -36.44311605408289, "z": 20.00649479070013}, {"x": -21.02211673765329, "y": -36.54972335329797, "z": 19.93793334635552}, {"x": -20.80489338083192, "y": -36.65524622046553, "z": 19.86874045559647}, {"x": -20.58691551177466, "y": -36.75964556037447, "z": 19.79891643919409}, {"x": -20.36819461051514, "y": -36.862905956005, "z": 19.72846157397035}, {"x": -20.14873276172953, "y": -36.96500371477713, "z": 19.65737595624836}, {"x": -19.92853279386638, "y": -37.06593285683861, "z": 19.58566036137139}, {"x": -19.7075876416445, "y": -37.16565355520999, "z": 19.51331467042589}, {"x": -19.48592954766244, "y": -37.26415143513342, "z": 19.44034003106436}, {"x": -19.26355109655857, "y": -37.36141648378005, "z": 19.36673619295475}, {"x": -19.0404663385398, "y": -37.45742258743509, "z": 19.29250456404086}, {"x": -18.81668212382796, "y": -37.55214685912748, "z": 19.21764498585899}, {"x": -18.59223146119598, "y": -37.64557278759091, "z": 19.1421589598292}, {"x": -18.36711027946648, "y": -37.73769867766918, "z": 19.06604657770257}, {"x": -18.14134078579613, "y": -37.82848596828992, "z": 18.9893092394268}, {"x": -17.91494897537584, "y": -37.91793436327268, "z": 18.91194741851}, {"x": -17.68795311930432, "y": -38.00602934827881, "z": 18.83396230701758}, {"x": -17.4603655927835, "y": -38.09276927792708, "z": 18.75535485569915}, {"x": -17.23220980883852, "y": -38.17812396518462, "z": 18.67612599141853}, {"x": -17.00352392076827, "y": -38.26210719393065, "z": 18.59627713589709}, {"x": -16.77431003020083, "y": -38.34471207499936, "z": 18.51580895246782}, {"x": -16.54460057965671, "y": -38.42593328149305, "z": 18.43472325116528}, {"x": -16.31441535326372, "y": -38.50576978847564, "z": 18.35302048507758}, {"x": -16.08378691386235, "y": -38.58423823346016, "z": 18.2707026434566}, {"x": -15.8527097569005, "y": -38.66134498464493, "z": 18.18777008711706}, {"x": -15.62121949915706, "y": -38.73708439629613, "z": 18.10422477240028}, {"x": -15.38932738916097, "y": -38.81148535159211, "z": 18.02006711332618}, {"x": -15.15704282982044, "y": -38.88455611912036, "z": 17.93529884876077}, {"x": -14.92436439045844, "y": -38.95631297079967, "z": 17.84992052246601}, {"x": -14.69130899156446, "y": -39.02675589338167, "z": 17.76393342235871}, {"x": -14.45787563276164, "y": -39.09592374473455, "z": 17.6773382999939}, {"x": -14.22404533437362, "y": -39.16381096373996, "z": 17.59013595341933}, {"x": -13.98982476192917, "y": -39.23042933583977, "z": 17.50232743636282}, {"x": -13.75520376152662, "y": -39.2957835831196, "z": 17.41391311780725}, {"x": -13.52017384032771, "y": -39.35989189330936, "z": 17.324894312088}, {"x": -13.28470611362083, "y": -39.42274000329253, "z": 17.23527103952375}, {"x": -13.04881264287071, "y": -39.48432572708117, "z": 17.14504477145939}, {"x": -12.81246619601744, "y": -39.54465638870904, "z": 17.05421543490948}, {"x": -12.57565674021076, "y": -39.60371470512813, "z": 16.9627846272168}, {"x": -12.33836812885181, "y": -39.66148691248804, "z": 16.87075240414078}, {"x": -12.1006094542829, "y": -39.71795664321603, "z": 16.77812032723993}, {"x": -11.86235724910703, "y": -39.77312764187154, "z": 16.68488874822643}, {"x": -11.62360494435429, "y": -39.82695886669573, "z": 16.59105903206172}, {"x": -11.38435897760284, "y": -39.87944360413753, "z": 16.49663199722923}, {"x": -11.14461447765031, "y": -39.93055989862922, "z": 16.40160880361136}, {"x": -10.90436596470354, "y": -39.98029679221512, "z": 16.30599079684325}, {"x": -10.66361278756021, "y": -40.02861211158383, "z": 16.20977890175785}, {"x": -10.42237889559345, "y": -40.07550075609257, "z": 16.1129749393965}, {"x": -10.1806487583658, "y": -40.12094309879635, "z": 16.01557966757402}, {"x": -9.938438620106893, "y": -40.16491060535927, "z": 15.9175952833625}, {"x": -9.695755075693986, "y": -40.20738012153365, "z": 15.81902251889976}, {"x": -9.452623067131697, "y": -40.24833897574965, "z": 15.71986380799454}, {"x": -9.209032021560727, "y": -40.28777100059499, "z": 15.62012002847874}, {"x": -8.96501239697309, "y": -40.32563719589729, "z": 15.51979366549818}, {"x": -8.720582188925382, "y": -40.36193749798804, "z": 15.4188859409957}, {"x": -8.475755877227899, "y": -40.39664986451459, "z": 15.31739922893854}, {"x": -8.23054541490979, "y": -40.42976177566904, "z": 15.21533518643337}, {"x": -7.98498150676613, "y": -40.46124194699655, "z": 15.11269598225223}, {"x": -7.739091396067828, "y": -40.49110205175856, "z": 15.00948379892248}, {"x": -7.492879957196873, "y": -40.51931710962211, "z": 14.90570059435436}, {"x": -7.246386442301803, "y": -40.54587774129082, "z": 14.8013490785696}, {"x": -6.999633844327796, "y": -40.57077739453886, "z": 14.6964310045177}, {"x": -6.752652005950413, "y": -40.59402546876403, "z": 14.59094943993964}, {"x": -6.505446113091876, "y": -40.61561007791497, "z": 14.4849060084782}, {"x": -6.258064872072602, "y": -40.63552781831626, "z": 14.37830398158931}, {"x": -6.010519830162763, "y": -40.6537999359343, "z": 14.27114504120872}, {"x": -5.76283233318941, "y": -40.67042440655902, "z": 14.1634324528443}, {"x": -5.515016723700533, "y": -40.68541100784454, "z": 14.05516803066195}, {"x": -5.267105272860765, "y": -40.69876596786603, "z": 13.94635476321291}, {"x": -5.019098628528297, "y": -40.71052444101666, "z": 13.83699465899148}, {"x": -4.770999761503052, "y": -40.72067609266683, "z": 13.72709031081315}, {"x": -4.522827745040281, "y": -40.72924379782911, "z": 13.61664404589208}, {"x": -4.274580510501432, "y": -40.7362384884196, "z": 13.50565800602185}, {"x": -4.026254332037891, "y": -40.7416806516383, "z": 13.3941348123302}, {"x": -3.777838298490117, "y": -40.74555968199019, "z": 13.28207616579632}, {"x": -3.52934860250743, "y": -40.74789297834183, "z": 13.16948490667355}, {"x": -3.280756059262529, "y": -40.74868916913757, "z": 13.05636249273995}, {"x": -3.032059344076567, "y": -40.74793729799216, "z": 12.94271194875883}, {"x": -2.783247122281364, "y": -40.74563282042951, "z": 12.82853470499745}, {"x": -2.534325745178035, "y": -40.74177332933527, "z": 12.71383384357754}, {"x": -2.28526629462753, "y": -40.73635829070388, "z": 12.59861097762676}, {"x": -2.036073797818217, "y": -40.72935355433939, "z": 12.48286911229378}, {"x": -1.786748684594172, "y": -40.72076349990879, "z": 12.36661024854174}, {"x": -1.53728240041534, "y": -40.71056753775691, "z": 12.24983722728345}, {"x": -1.287668402060766, "y": -40.69875275737652, "z": 12.1325525704569}, {"x": -1.037913563704451, "y": -40.68528284764016, "z": 12.01475890294431}, {"x": -0.7880313728196134, "y": -40.67016126434647, "z": 11.89645930678565}, {"x": -0.5380056686785187, "y": -40.65335896563585, "z": 11.77765624373638}, {"x": -0.2878580974093343, "y": -40.63485229686817, "z": 11.65835327491731}, {"x": -0.03759438557672237, "y": -40.61462201134584, "z": 11.53855275355262}, {"x": 0.2127679716962064, "y": -40.59265832344708, "z": 11.41825861141104}, {"x": 0.4632376240596049, "y": -40.56893453630741, "z": 11.297473260793}, {"x": 0.7137771005524267, "y": -40.54342031948518, "z": 11.17620085886395}, {"x": 0.9643777677012615, "y": -40.51611597466184, "z": 11.05444408966981}, {"x": 1.215024152612194, "y": -40.48699377646559, "z": 10.93220712891167}, {"x": 1.465700968593127, "y": -40.45603793989118, "z": 10.80949302766677}, {"x": 1.716373727970296, "y": -40.42322315716214, "z": 10.68630582663417}, {"x": 1.967026526416148, "y": -40.38855764881811, "z": 10.56264910886028}, {"x": 2.217646141785659, "y": -40.35200530646032, "z": 10.43852676144465}, {"x": 2.46819054033994, "y": -40.31356077422777, "z": 10.3139429474563}, {"x": 2.718637704783275, "y": -40.27321441927969, "z": 10.188901365267}, {"x": 2.968960230844197, "y": -40.23096836417015, "z": 10.06340666358844}, {"x": 3.219141004400138, "y": -40.18680051078785, "z": 9.937462375698155}, {"x": 3.469126937689258, "y": -40.14071406174896, "z": 9.811073553952298}, {"x": 3.718908870317852, "y": -40.09271942633134, "z": 9.684243765398543}, {"x": 3.968452888507195, "y": -40.04280681475651, "z": 9.556978265025462}, {"x": 4.217733047998433, "y": -39.99098289625154, "z": 9.429280747607914}, {"x": 4.466708670750896, "y": -39.93725783205273, "z": 9.301156415895196}, {"x": 4.715374931478471, "y": -39.88165647477322, "z": 9.172609177889287}, {"x": 4.963704772091054, "y": -39.8241677073372, "z": 9.043644001817688}, {"x": 5.2116705801455, "y": -39.76482366159982, "z": 8.914265128718542}, {"x": 5.459264694176782, "y": -39.70363662621463, "z": 8.78447715541555}, {"x": 5.70647921200715, "y": -39.6406279483919, "z": 8.654284653438856}, {"x": 5.953304362865443, "y": -39.57579575156214, "z": 8.52369177424469}, {"x": 6.199720944681312, "y": -39.50917515382049, "z": 8.392703391661383}, {"x": 6.445751564522322, "y": -39.44077472870892, "z": 8.261323289788985}, {"x": 6.691383818978111, "y": -39.37059723262833, "z": 8.129556561334777}, {"x": 6.936623974556486, "y": -39.29865251778966, "z": 7.997406803295136}, {"x": 7.181468228839933, "y": -39.22495281182124, "z": 7.864879231408476}, {"x": 7.425943138220395, "y": -39.14949745261992, "z": 7.73197747853886}, {"x": 7.670033389487774, "y": -39.07226977297592, "z": 7.598706786106074}, {"x": 7.913747500074143, "y": -38.99328690899198, "z": 7.465071034965823}, {"x": 8.157095011434178, "y": -38.91253215107854, "z": 7.331075344148837}, {"x": 8.400081456673792, "y": -38.82999815001834, "z": 7.196724030399607}, {"x": 8.642697185034175, "y": -38.74566201566295, "z": 7.062022038700348}, {"x": 8.88494252898661, "y": -38.65953453908312, "z": 6.926974269703527}, {"x": 9.126830072130904, "y": -38.57158204443476, "z": 6.791585505034664}, {"x": 9.368336887947025, "y": -38.48179308510065, "z": 6.655861195868928}, {"x": 9.609462519978013, "y": -38.39015439853214, "z": 6.519805960310988}, {"x": 9.850197384035276, "y": -38.296658228376, "z": 6.383425714844505}, {"x": 10.09054543310527, "y": -38.20127420843889, "z": 6.246725068724142}, {"x": 10.33046945927522, "y": -38.10398639848715, "z": 6.109710325396822}, {"x": 10.56997257208084, "y": -38.00479329413365, "z": 5.972386264364202}, {"x": 10.80903620703646, "y": -37.90366499533663, "z": 5.834759359883253}, {"x": 11.04764401270465, "y": -37.80058873318441, "z": 5.6968346768855}, {"x": 11.28576413329225, "y": -37.69554784857193, "z": 5.558618661794037}, {"x": 11.52339150567398, "y": -37.58854473687721, "z": 5.420116869743454}, {"x": 11.76050334443136, "y": -37.47954047701708, "z": 5.281335658603972}, {"x": 11.99706219301256, "y": -37.36853786230293, "z": 5.142281159575735}, {"x": 12.23305100651839, "y": -37.2555239764881, "z": 5.002959564430425}, {"x": 12.46844437096817, "y": -37.14049487088429, "z": 4.863377558082672}, {"x": 12.70321639980966, "y": -37.02342617275029, "z": 4.723541151894944}, {"x": 12.93731957939097, "y": -36.90432839829286, "z": 4.583457555092795}, {"x": 13.17074814497561, "y": -36.78319852911434, "z": 4.443132740394083}, {"x": 13.40345860454849, "y": -36.6600241976239, "z": 4.302574290908314}, {"x": 13.63542175126266, "y": -36.53481089975739, "z": 4.161788257191285}, {"x": 13.86659692588766, "y": -36.40756833653116, "z": 4.020782390438184}, {"x": 14.0969742870152, "y": -36.27830712399989, "z": 3.879562960762993}, {"x": 14.32650830898205, "y": -36.14701868928728, "z": 3.738137667291709}, {"x": 14.55517067746796, "y": -36.01373803840836, "z": 3.596513109644765}, {"x": 14.78294416681752, "y": -35.87847156978207, "z": 3.454696764414479}, {"x": 15.00980741489904, "y": -35.74123914474355, "z": 3.312695606117353}, {"x": 15.23573312206654, "y": -35.60204680751215, "z": 3.170516762990934}, {"x": 15.46070091585386, "y": -35.46093799301747, "z": 3.028167608863736}, {"x": 15.68471808518064, "y": -35.3179175020171, "z": 2.885654863926721}, {"x": 15.90775711515786, "y": -35.17300403842735, "z": 2.742986176778479}, {"x": 16.1298186680006, "y": -35.02621955933722, "z": 2.600167953249788}, {"x": 16.35089709680744, "y": -34.87758652318384, "z": 2.457208040921394}, {"x": 16.57100802578437, "y": -34.72710795161623, "z": 2.31411273181943}, {"x": 16.79012792669118, "y": -34.57478968306884, "z": 2.170889971286093}, {"x": 17.00827282498201, "y": -34.42065831963528, "z": 2.027546130135238}, {"x": 17.22544666713855, "y": -34.26470368941106, "z": 1.884089071573259}, {"x": 17.44165241165224, "y": -34.10693028356611, "z": 1.740525443092569}, {"x": 17.6568807880915, "y": -33.94733189521322, "z": 1.596862983125783}, {"x": 17.87114379774273, "y": -33.7859237278766, "z": 1.453108860555971}, {"x": 18.08444563649444, "y": -33.62267466670819, "z": 1.309270636708003}, {"x": 18.29676670782941, "y": -33.45758955266288, "z": 1.165356045390769}, {"x": 18.50811280630937, "y": -33.29066013577749, "z": 1.021372443951437}, {"x": 18.71847852971947, "y": -33.12188097889153, "z": 0.8773280853817902}, {"x": 18.92786173972794, "y": -32.95122545115472, "z": 0.7332302457727661}, {"x": 19.1362312743806, "y": -32.77869347467293, "z": 0.5890876753569436}, {"x": 19.34359893474687, "y": -32.60427898127094, "z": 0.4449077063292716}, {"x": 19.54994022218878, "y": -32.42795584354225, "z": 0.3006993929949277}, {"x": 19.75524010607014, "y": -32.24971820568444, "z": 0.1564702545483774}, {"x": 19.95947189295861, "y": -32.06955775066599, "z": 0.01222945481842908}, {"x": 20.16263576421037, "y": -31.88747086035689, "z": -0.1320150988618589}, {"x": 20.36469896776555, "y": -31.70342496246098, "z": -0.276254265685597}, {"x": 20.56563294903594, "y": -31.51743220576025, "z": -0.4204796118154952}, {"x": 20.76542369683886, "y": -31.32947660729831, "z": -0.5646821365261726}, {"x": 20.9640445791773, "y": -31.13955324571381, "z": -0.7088528374128668}, {"x": 21.16146346670249, "y": -30.94764327188646, "z": -0.8529828878939385}, {"x": 21.35764282086451, "y": -30.75376422021316, "z": -0.997062723261937}, {"x": 21.55257531324029, "y": -30.55790235660222, "z": -1.141083655935134}, {"x": 21.74621046826726, "y": -30.36005176438674, "z": -1.28503564969775}, {"x": 21.93852108414132, "y": -30.16021999152695, "z": -1.428910040465557}, {"x": 22.12946927988459, "y": -29.95841583863352, "z": -1.572696467625929}, {"x": 22.31903795156162, "y": -29.75464021028592, "z": -1.716386125050665}, {"x": 22.5071703771991, "y": -29.54889360276806, "z": -1.859968567082796}, {"x": 22.69384299271085, "y": -29.34121053626117, "z": -2.003434742940313}, {"x": 22.87902785364621, "y": -29.13159147312844, "z": -2.146774318251023}, {"x": 23.06269210442545, "y": -28.92005806612957, "z": -2.289977882315534}, {"x": 23.24479686337971, "y": -28.70662484785734, "z": -2.433035341803683}, {"x": 23.42532137264967, "y": -28.49133649398746, "z": -2.575936864960148}, {"x": 23.60425179445827, "y": -28.27419612014899, "z": -2.718672756034972}, {"x": 23.78154821251152, "y": -28.05524037668022, "z": -2.861232871565719}, {"x": 23.95720486932062, "y": -27.83450035652879, "z": -3.003607934156523}, {"x": 24.13120785844845, "y": -27.61200742651536, "z": -3.145787544427586}, {"x": 24.30355610523084, "y": -27.3877754273934, "z": -3.287762701239981}, {"x": 24.47422023276128, "y": -27.16183671057433, "z": -3.429522887542774}, {"x": 24.64321865866597, "y": -26.93422631112087, "z": -3.571059239338467}, {"x": 24.81054317508625, "y": -26.70494927716813, "z": -3.712361324806789}, {"x": 24.97619423300952, "y": -26.47403072391671, "z": -3.853420244227762}, {"x": 25.14016509898753, "y": -26.241486197114, "z": -3.994225713011022}, {"x": 25.30247457852569, "y": -26.00733880681351, "z": -4.134768522261255}, {"x": 25.4631176393021, "y": -25.77157379065223, "z": -4.275038637750914}, {"x": 25.62208452846164, "y": -25.53421859352751, "z": -4.41502641816495}, {"x": 25.77938781774757, "y": -25.2952732621392, "z": -4.554722129834193}, {"x": 25.93502475051193, "y": -25.05474283679262, "z": -4.694115668430157}, {"x": 26.08899162867056, "y": -24.81261572525563, "z": -4.833197536903548}, {"x": 26.24127112760998, "y": -24.56891071797281, "z": -4.971957160907074}, {"x": 26.39188160986564, "y": -24.32362095269196, "z": -5.110385172688697}, {"x": 26.54079672183525, "y": -24.07673545554026, "z": -5.248470672307267}, {"x": 26.68801023913521, "y": -23.82826066941765, "z": -5.38620428336805}, {"x": 26.83350539357115, "y": -23.57819837295222, "z": -5.523574931353767}, {"x": 26.97728629486348, "y": -23.32654530268784, "z": -5.660573073650275}, {"x": 27.11931808574219, "y": -23.07328596073896, "z": -5.797187662126598}, {"x": 27.25958895244414, "y": -22.81844290439575, "z": -5.933408805146124}, {"x": 27.39808869708799, "y": -22.56200113683566, "z": -6.069225626549051}, {"x": 27.5347937168401, "y": -22.30396376220133, "z": -6.204627775979231}, {"x": 27.66967512374297, "y": -22.04432439737065, "z": -6.339604608897424}, {"x": 27.80271177568573, "y": -21.78310715595342, "z": -6.474145303012945}, {"x": 27.933894893354, "y": -21.52029547273115, "z": -6.608239512166657}, {"x": 28.06317764166046, "y": -21.25589877918559, "z": -6.741875983863343}, {"x": 28.19054391903877, "y": -20.98992906169, "z": -6.875044563577821}, {"x": 28.31596374580329, "y": -20.7223966565628, "z": -7.007733641545562}, {"x": 28.43941835968757, "y": -20.45330156896652, "z": -7.139933121656357}, {"x": 28.56085428691338, "y": -20.18265864782943, "z": -7.271631256473522}, {"x": 28.68026099512631, "y": -19.91049959517588, "z": -7.402817905473019}, {"x": 28.7976053403336, "y": -19.63682400161595, "z": -7.533481412134504}, {"x": 28.9128548518955, "y": -19.36165954992245, "z": -7.663611414203731}, {"x": 29.02597260913479, "y": -19.08502825323188, "z": -7.793196468052721}, {"x": 29.13694364727378, "y": -18.80697074198407, "z": -7.922225912461637}, {"x": 29.24573973328444, "y": -18.52749222399126, "z": -8.05068872611712}, {"x": 29.35232183321439, "y": -18.24664404454253, "z": -8.178573997326643}, {"x": 29.4566837155002, "y": -17.96445922262702, "z": -8.305871238066521}, {"x": 29.55880526754865, "y": -17.68097515306554, "z": -8.432569318129845}, {"x": 29.658674241099, "y": -17.39621762945856, "z": -8.55865822699711}, {"x": 29.75626405079834, "y": -17.1102401486636, "z": -8.684126755616274}, {"x": 29.85159356893224, "y": -16.82308050536929, "z": -8.80896529882642}, {"x": 29.94464402268796, "y": -16.53476265417456, "z": -8.933162779024956}, {"x": 30.03541865195987, "y": -16.24533227963754, "z": -9.05670984627018}, {"x": 30.1239169091379, "y": -15.95482396822708, "z": -9.17959567322376}, {"x": 30.21016167196881, "y": -15.66326980334695, "z": -9.30181093980419}, {"x": 30.29414428912882, "y": -15.37067906907508, "z": -9.423345197973335}, {"x": 30.37587286112514, "y": -15.07710027805365, "z": -9.544188975650801}, {"x": 30.45536756499365, "y": -14.78254174060134, "z": -9.664332279217293}, {"x": 30.53263178831596, "y": -14.48702431266276, "z": -9.783765360233238}, {"x": 30.60766925261818, "y": -14.19055570637707, "z": -9.902478691805724}, {"x": 30.6804843883764, "y": -13.8931699431053, "z": -10.02046221966142}, {"x": 30.75110217656287, "y": -13.5948618555676, "z": -10.13770680651466}, {"x": 30.81950432659127, "y": -13.29564082397996, "z": -10.25420215687824}, {"x": 30.88570273635292, "y": -12.99552370130295, "z": -10.36993937562647}, {"x": 30.94969550054254, "y": -12.69451917822136, "z": -10.48490802829718}, {"x": 31.01149361344299, "y": -12.39262755665404, "z": -10.59909935193154}, {"x": 31.07107204453044, "y": -12.08985246767836, "z": -10.71250299993258}, {"x": 31.1284426595957, "y": -11.78622027680378, "z": -10.82511015238262}, {"x": 31.183600850452, "y": -11.48171774185529, "z": -10.93691069906655}, {"x": 31.23653430090132, "y": -11.1763581416119, "z": -11.04789558347503}, {"x": 31.28722779412316, "y": -10.87014536537245, "z": -11.15805504440055}, {"x": 31.3356804049982, "y": -10.5631033580871, "z": -11.26737974079117}, {"x": 31.38188460406695, "y": -10.25521657371666, "z": -11.37586039759366}, {"x": 31.42580905677981, "y": -9.946508940845574, "z": -11.48348739579557}, {"x": 31.46745499960093, "y": -9.636991347253698, "z": -11.59025186438978}, {"x": 31.50680340553199, "y": -9.3266740321148, "z": -11.6961439111998}, {"x": 31.54384111216894, "y": -9.015558925717366, "z": -11.80115499612336}, {"x": 31.57853073300578, "y": -8.70367141371186, "z": -11.90527511856986}, {"x": 31.61087799874444, "y": -8.391033319854946, "z": -12.00849596640064}, {"x": 31.64085035565041, "y": -8.077645785660485, "z": -12.11080765436481}, {"x": 31.66842731518615, "y": -7.763540092315737, "z": -12.21220188497202}, {"x": 31.69358399602594, "y": -7.448738651175763, "z": -12.31266901154392}, {"x": 31.71631436399098, "y": -7.133272020143552, "z": -12.41220063397957}, {"x": 31.7365855012392, "y": -6.817147854602698, "z": -12.51078755834229}, {"x": 31.75437173577742, "y": -6.500421834119888, "z": -12.60842123909248}, {"x": 31.7696695934996, "y": -6.183118246577299, "z": -12.70509307672919}, {"x": 31.78245681467319, "y": -5.865274985384856, "z": -12.8007943921067}, {"x": 31.79271786609358, "y": -5.546923153222357, "z": -12.89551722679617}, {"x": 31.80043523417996, "y": -5.22812299201516, "z": -12.98925286651955}, {"x": 31.80562412649319, "y": -4.908905467726913, "z": -13.08199399927216}, {"x": 31.80825878140984, "y": -4.589309086932439, "z": -13.173732071797}, {"x": 31.80834783979324, "y": -4.26938933216381, "z": -13.26446029907413}, {"x": 31.80589430117178, "y": -3.949189194286836, "z": -13.35417048631707}, {"x": 31.80091947949228, "y": -3.628746343848476, "z": -13.4428562402202}, {"x": 31.79341423220665, "y": -3.308092386741715, "z": -13.53050987179179}, {"x": 31.78340429722471, "y": -2.987287063894553, "z": -13.61712516227238}, {"x": 31.77091138243468, "y": -2.666344767143819, "z": -13.70269502093671}, {"x": 31.75594584982436, "y": -2.345302718260411, "z": -13.78721321239521}, {"x": 31.73852216129304, "y": -2.024185300232513, "z": -13.870673318083}, {"x": 31.71866529909894, "y": -1.703034611419671, "z": -13.95306901879359}, {"x": 31.69640329657741, "y": -1.381849857877307, "z": -14.03439454099333}, {"x": 31.67173240456682, "y": -1.06066058958983, "z": -14.11464343237318}, {"x": 31.64468473603678, "y": -0.7394882451478959, "z": -14.19381040485544}, {"x": 31.61527179715113, "y": -0.4183456138190243, "z": -14.27188894025848}, {"x": 31.58351288478962, "y": -0.09723834253974874, "z": -14.34887414654444}, {"x": 31.54940026100909, "y": 0.2238139369212896, "z": -14.42475963296064}, {"x": 31.51296834387507, "y": 0.5447889896066751, "z": -14.49954073878468}, {"x": 31.47421732587771, "y": 0.865696216573719, "z": -14.57321132957961}, {"x": 31.43315178037573, "y": 1.18651371481074, "z": -14.64576674441312}, {"x": 31.38977450968195, "y": 1.507232833741652, "z": -14.71720126620327}, {"x": 31.34410233824518, "y": 1.827835098319875, "z": -14.78751014078897}, {"x": 31.29613102935395, "y": 2.148331931323252, "z": -14.85668824233086}, {"x": 31.24585178536791, "y": 2.468689961940691, "z": -14.92473067711844}, {"x": 31.19328233604049, "y": 2.788905384125112, "z": -14.99163288521903}, {"x": 31.13841442018968, "y": 3.108967904501275, "z": -15.05738980031151}, {"x": 31.08124550029451, "y": 3.428873021878684, "z": -15.1219974004086}, {"x": 31.02176089214232, "y": 3.748591330021446, "z": -15.18545054453454}, {"x": 30.95997955875611, "y": 4.068115105010487, "z": -15.24774566249153}, {"x": 30.89587441109729, "y": 4.387438685386626, "z": -15.3088777096834}, {"x": 30.82944430048014, "y": 4.706531554825818, "z": -15.36884337493787}, {"x": 30.76067999627152, "y": 5.025377187360813, "z": -15.42763785796347}, {"x": 30.6895849431379, "y": 5.343956384453095, "z": -15.48525794240926}, {"x": 30.61613124491443, "y": 5.662258705726693, "z": -15.54169926554633}, {"x": 30.54031496288291, "y": 5.980234366777039, "z": -15.59695856399669}, {"x": 30.46213616332284, "y": 6.297873631107908, "z": -15.65103204046493}, {"x": 30.38157701705103, "y": 6.615141061905371, "z": -15.70391635583058}, {"x": 30.29862779464598, "y": 6.932007650938066, "z": -15.75560838349469}, {"x": 30.21328446539886, "y": 7.248420435114436, "z": -15.80610471298104}, {"x": 30.12555709293892, "y": 7.564361257939815, "z": -15.85540291659373}, {"x": 30.03542070063347, "y": 7.879784248607969, "z": -15.90349962448813}, {"x": 29.9428919796392, "y": 8.194638713967407, "z": -15.9503930291516}, {"x": 29.84797387100138, "y": 8.50888480808501, "z": -15.99608004303369}, {"x": 29.75068360724315, "y": 8.822484744122765, "z": -16.04055944179261}, {"x": 29.6510150219837, "y": 9.135393264440152, "z": -16.08382862082897}, {"x": 29.54900651302755, "y": 9.447553279768597, "z": -16.12588673719783}, {"x": 29.44467466507713, "y": 9.758946996888351, "z": -16.16673180403575}, {"x": 29.3380375528607, "y": 10.06952527534066, "z": -16.20636318309374}, {"x": 29.22912014105431, "y": 10.37925507992704, "z": -16.24477963517123}, {"x": 29.11796145314507, "y": 10.68809402929545, "z": -16.28198062246073}, {"x": 29.00458977311451, "y": 10.99603679291426, "z": -16.31796569262179}, {"x": 28.88902029797618, "y": 11.30303898975311, "z": -16.35273424276005}, {"x": 28.77130239848882, "y": 11.60908252123085, "z": -16.38628645571103}, {"x": 28.65145808686904, "y": 11.91415216898669, "z": -16.41862167755649}, {"x": 28.52951747785285, "y": 12.21823811678356, "z": -16.4497406297472}, {"x": 28.40549470553993, "y": 12.52131295915449, "z": -16.47964271774278}, {"x": 28.27944133659351, "y": 12.82336603890187, "z": -16.50832904793153}, {"x": 28.15136369183732, "y": 13.12440216507408, "z": -16.53579918526359}, {"x": 28.02128765349863, "y": 13.42439761384425, "z": -16.56205437411584}, {"x": 27.88923426945503, "y": 13.72334794813083, "z": -16.58709450220817}, {"x": 27.75523425472887, "y": 14.02124485891534, "z": -16.61092081491686}, {"x": 27.61929034306568, "y": 14.31809727766847, "z": -16.63353370050296}, {"x": 27.48141952594319, "y": 14.61387343455853, "z": -16.65493427810279}, {"x": 27.34165094105397, "y": 14.908583719214, "z": -16.67512350146049}, {"x": 27.19998722831164, "y": 15.20222015417041, "z": -16.69410231242723}, {"x": 27.05643966715586, "y": 15.49478113733701, "z": -16.71187222538989}, {"x": 26.91101665768661, "y": 15.78624455767735, "z": -16.72843403363807}, {"x": 26.76374435265046, "y": 16.07662059418118, "z": -16.74378975088949}, {"x": 26.61460531920266, "y": 16.36590165365494, "z": -16.75794011397163}, {"x": 26.46361917808768, "y": 16.6540678803026, "z": -16.77088750547379}, {"x": 26.31078914496449, "y": 16.94111624609587, "z": -16.78263278041549}, {"x": 26.1561265137883, "y": 17.22704111848711, "z": -16.79317850911715}, {"x": 25.99961417945272, "y": 17.51183424500386, "z": -16.80252582075778}, {"x": 25.84126994671449, "y": 17.7954641451083, "z": -16.81067726107134}, {"x": 25.68109434657568, "y": 18.07793939118679, "z": -16.81763437599882}, {"x": 25.51907848342512, "y": 18.35923245856212, "z": -16.82339961424367}, {"x": 25.35522262412139, "y": 18.6393266782001, "z": -16.8279750864371}, {"x": 25.1895344449202, "y": 18.91818935660381, "z": -16.83136308331709}, {"x": 25.02201775894103, "y": 19.19581963007948, "z": -16.83356630122531}, {"x": 24.852654886312, "y": 19.47217556918423, "z": -16.83458685880278}, {"x": 24.68146885926868, "y": 19.74722770050564, "z": -16.83442800424509}, {"x": 24.50845779027335, "y": 20.02095038219349, "z": -16.83309187371993}, {"x": 24.33363328240394, "y": 20.29331514863804, "z": -16.8305822554458}, {"x": 24.15699229333167, "y": 20.56427848774153, "z": -16.82690150526375}, {"x": 23.97857483701866, "y": 20.83380196219737, "z": -16.82205376386866}, {"x": 23.79838476794321, "y": 21.10187008340253, "z": -16.81604177485495}, {"x": 23.61644392150946, "y": 21.36843314281683, "z": -16.80886989957635}, {"x": 23.43277935326382, "y": 21.6334624918921, "z": -16.80054146914484}, {"x": 23.24743026558344, "y": 21.89692389488564, "z": -16.7910609729555}, {"x": 23.06041808945769, "y": 22.1588078650674, "z": -16.78043246114425}, {"x": 22.87177224561116, "y": 22.41906561697011, "z": -16.76866036041315}, {"x": 22.68154588827484, "y": 22.67768994736745, "z": -16.75574938177814}, {"x": 22.48976299920585, "y": 22.93466419581282, "z": -16.74170384621233}, {"x": 22.29646036779088, "y": 23.18997787683132, "z": -16.72652904048334}, {"x": 22.10166827065412, "y": 23.44360557533393, "z": -16.71022919403231}, {"x": 21.90544201767716, "y": 23.69555138005727, "z": -16.69281000700142}, {"x": 21.70779119137439, "y": 23.94581524045072, "z": -16.67427569160717}, {"x": 21.50875888038724, "y": 24.19437960253985, "z": -16.65463212662416}, {"x": 21.3083750251101, "y": 24.44125068980747, "z": -16.6338836253024}, {"x": 21.1066753966133, "y": 24.68643126547246, "z": -16.61203606471877}, {"x": 20.90366819988017, "y": 24.9299300749727, "z": -16.58909400409615}, {"x": 20.69938971221072, "y": 25.17172760973504, "z": -16.56506311446429}, {"x": 20.49386833318051, "y": 25.41185012201663, "z": -16.53994835843963}, {"x": 20.28711352532543, "y": 25.6502930396713, "z": -16.51375513235318}, {"x": 20.07914613352427, "y": 25.88706308915384, "z": -16.48648882896609}, {"x": 19.86998771852067, "y": 26.1221532494412, "z": -16.45815452397814}, {"x": 19.65966109781906, "y": 26.35558952359121, "z": -16.4287580076268}, {"x": 19.44815713373417, "y": 26.58736486456075, "z": -16.39830406863702}, {"x": 19.2355076246206, "y": 26.81747758652179, "z": -16.36679883326975}, {"x": 19.02171712266515, "y": 27.04593897719466, "z": -16.33424698447109}, {"x": 18.80679847879055, "y": 27.27275521962821, "z": -16.30065483757106}, {"x": 18.59074299498216, "y": 27.49792334043906, "z": -16.26602707432252}, {"x": 18.37357919207147, "y": 27.72143573301457, "z": -16.23036995972607}, {"x": 18.15530025561458, "y": 27.94331446091022, "z": -16.19368836219856}, {"x": 17.93590454787929, "y": 28.16354121172574, "z": -16.15598837863596}, {"x": 17.71539727089179, "y": 28.38211581686248, "z": -16.11727524562439}, {"x": 17.49378819825409, "y": 28.59902751888499, "z": -16.07755480587183}, {"x": 17.27107156597475, "y": 28.81428848964627, "z": -16.0368326984649}, {"x": 17.04723763175772, "y": 29.02786602365406, "z": -15.99511440942157}, {"x": 16.82230721795212, "y": 29.23975723671732, "z": -15.95240601082239}, {"x": 16.59626849361259, "y": 29.44995025952223, "z": -15.9087127453279}, {"x": 16.36912563791139, "y": 29.6584288524157, "z": -15.86404111562695}, {"x": 16.14087524428838, "y": 29.86516026582006, "z": -15.81839627645557}, {"x": 15.91154625297586, "y": 30.07012959305019, "z": -15.77178501561117}, {"x": 15.68112519255149, "y": 30.27332334101279, "z": -15.72421257689363}, {"x": 15.44963201432876, "y": 30.47469896670826, "z": -15.6756859022745}, {"x": 15.21708389067689, "y": 30.67423846398082, "z": -15.62621055443507}, {"x": 14.9835067334507, "y": 30.87191597148913, "z": -15.57579353127899}, {"x": 14.74890814006239, "y": 31.06771642713612, "z": -15.52444089040027}, {"x": 14.51332175939519, "y": 31.26159267754075, "z": -15.4721595375125}, {"x": 14.27678773724001, "y": 31.45354575367563, "z": -15.41895611191021}, {"x": 14.03932377290537, "y": 31.64355175592297, "z": -15.36483734752641}, {"x": 13.80096631980246, "y": 31.83159745340938, "z": -15.30981044623921}, {"x": 13.56175093066163, "y": 32.01765998336813, "z": -15.25388193022459}, {"x": 13.32172402438975, "y": 32.20174956161885, "z": -15.19705944252984}, {"x": 13.08089633165001, "y": 32.3838547774594, "z": -15.1393493650103}, {"x": 12.83932117296372, "y": 32.56396422999956, "z": -15.08075960258137}, {"x": 12.59702745937789, "y": 32.74208925627935, "z": -15.02129647568801}, {"x": 12.35405076219859, "y": 32.9182352910195, "z": -14.96096792588363}, {"x": 12.11040473514794, "y": 33.09240681947272, "z": -14.89978029667562}, {"x": 11.86613721445706, "y": 33.26459766537394, "z": -14.83774132797026}, {"x": 11.62126851150101, "y": 33.43484041549797, "z": -14.77485758463348}, {"x": 11.37581509962599, "y": 33.60312908395292, "z": -14.71113649515596}, {"x": 11.12980451875871, "y": 33.7694777966871, "z": -14.64658492056216}, {"x": 10.88326338498117, "y": 33.9338919053094, "z": -14.5812098448706}, {"x": 10.63620793803826, "y": 34.09640336994518, "z": -14.51501841770177}, {"x": 10.38863964807675, "y": 34.25700408780853, "z": -14.44801717132186}, {"x": 10.14059537859408, "y": 34.41571044809995, "z": -14.38021353583786}, {"x": 9.89207606974882, "y": 34.57254016470094, "z": -14.31161374168216}, {"x": 9.643095991629787, "y": 34.72750515550337, "z": -14.24222540479252}, {"x": 9.393655154489428, "y": 34.88060710333331, "z": -14.1720545105489}, {"x": 9.14378442134349, "y": 35.03185903941366, "z": -14.10110864491733}, {"x": 8.893469761074266, "y": 35.18128603940575, "z": -14.02939375625634}, {"x": 8.642719243525791, "y": 35.32887735053881, "z": -13.95691724611176}, {"x": 8.391539816911711, "y": 35.47464793813551, "z": -13.88368522516842}, {"x": 8.13993926849964, "y": 35.61860210381972, "z": -13.80970479557566}, {"x": 7.887906157152889, "y": 35.76075709657092, "z": -13.73498231073512}, {"x": 7.635441773353982, "y": 35.90109111684799, "z": -13.65952443008781}, {"x": 7.382560073478031, "y": 36.0396240281801, "z": -13.58333782864965}, {"x": 7.129243173743923, "y": 36.17635109547422, "z": -13.50642875762068}, {"x": 6.875492911318605, "y": 36.31126779969565, "z": -13.42880421791478}, {"x": 6.621306420884749, "y": 36.44435601957596, "z": -13.35047012911195}, {"x": 6.366698393077379, "y": 36.5756211348212, "z": -13.27143375916717}, {"x": 6.111644580161838, "y": 36.7050501064659, "z": -13.19170086517667}, {"x": 5.85616422352097, "y": 36.83261455098744, "z": -13.1112788419853}, {"x": 5.600260150661217, "y": 36.95830966588941, "z": -13.03017351225594}, {"x": 5.343943199468961, "y": 37.0821172182487, "z": -12.94839227895083}, {"x": 5.087209027450657, "y": 37.2040194475654, "z": -12.86594121804757}, {"x": 4.830089106624888, "y": 37.32397882868124, "z": -12.78282764623598}, {"x": 4.572601824171453, "y": 37.44200111638091, "z": -12.69905810408992}, {"x": 4.31475762735593, "y": 37.55805425137223, "z": -12.61463971495439}, {"x": 4.056588277429622, "y": 37.67212452895892, "z": -12.52957952161966}, {"x": 3.798125374209546, "y": 37.78419173884238, "z": -12.44388437126831}, {"x": 3.539400731513838, "y": 37.89426427040164, "z": -12.35756177761387}, {"x": 3.280427204054963, "y": 38.00231765970596, "z": -12.27061836172013}, {"x": 3.021261026536183, "y": 38.10834718795243, "z": -12.18306201257137}, {"x": 2.761924298042829, "y": 38.21236179727485, "z": -12.09489920017442}, {"x": 2.502452044603503, "y": 38.3143632377166, "z": -12.00613794100747}, {"x": 2.242864666963285, "y": 38.41435070587368, "z": -11.91678459092215}, {"x": 1.983214417331613, "y": 38.51232990667594, "z": -11.82684707936175}, {"x": 1.723513031165094, "y": 38.60833029123695, "z": -11.73633184028028}, {"x": 1.463786970910849, "y": 38.70234342602007, "z": -11.64524655502781}, {"x": 1.204067804316981, "y": 38.79439093314988, "z": -11.55359785477093}, {"x": 0.9443827887912092, "y": 38.88448589881585, "z": -11.46139296862771}, {"x": 0.6847439050017762, "y": 38.97265948183328, "z": -11.36863874949625}, {"x": 0.4251660112767058, "y": 39.05890497261586, "z": -11.27534191021924}, {"x": 0.1656847313895424, "y": 39.14325545255317, "z": -11.18150956062059}, {"x": -0.09370216583635861, "y": 39.22572890340424, "z": -11.08714797819837}, {"x": -0.3529768948585933, "y": 39.30634128849425, "z": -10.99226446705178}, {"x": -0.61213153732358, "y": 39.38510127372876, "z": -10.89686490714067}, {"x": -0.8711391474649511, "y": 39.46203798228562, "z": -10.80095664358982}, {"x": -1.130017024306562, "y": 39.53717345138462, "z": -10.70454533188059}, {"x": -1.388746194275143, "y": 39.61050699994166, "z": -10.60763819077326}, {"x": -1.64732241861641, "y": 39.68206737137864, "z": -10.51024084446775}, {"x": -1.905741189779281, "y": 39.75186803795711, "z": -10.41236022832801}]', 1001, 104000, '#D4A574', '2025-11-29 08:12:52.147892', '2025-11-29 08:21:05.784434');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (6, '136472', '[{"x": 24.05251604137008, "y": 28.94667838931316, "z": -10.16978775603581}, {"x": 23.8613742573935, "y": 29.18189650082256, "z": -10.0412450741796}, {"x": 23.6688046230189, "y": 29.41541292184704, "z": -9.912076080968992}, {"x": 23.47477740710499, "y": 29.64722866303337, "z": -9.782288845934941}, {"x": 23.27930628882436, "y": 29.87732157337506, "z": -9.65189311847936}, {"x": 23.08238304140021, "y": 30.10569688414116, "z": -9.520896889613406}, {"x": 22.88400311973353, "y": 30.33234677025083, "z": -9.389309802039328}, {"x": 22.68414319883297, "y": 30.55724832075378, "z": -9.257139851244412}, {"x": 22.48282367709161, "y": 30.78038110537205, "z": -9.124396718995989}, {"x": 22.28001938624008, "y": 31.00173966945249, "z": -8.991088412983498}, {"x": 22.07573189833609, "y": 31.22128405247881, "z": -8.857224653351526}, {"x": 21.86996045818813, "y": 31.43898624812515, "z": -8.72281357508551}, {"x": 21.66272093634791, "y": 31.65482412449519, "z": -8.58786500109679}, {"x": 21.45399427933231, "y": 31.86876516831593, "z": -8.452387160560658}, {"x": 21.24381360709333, "y": 32.08075882023639, "z": -8.316390074086224}, {"x": 21.03218934912921, "y": 32.2907871848703, "z": -8.179882265056092}, {"x": 20.8191435645174, "y": 32.49881279804092, "z": -8.042873977522873}, {"x": 20.60469270377408, "y": 32.70479666832217, "z": -7.90537391247489}, {"x": 20.38889169698855, "y": 32.908711751616, "z": -7.767392543299924}, {"x": 20.17175088295413, "y": 33.11054713945129, "z": -7.628938783810944}, {"x": 19.95331506155871, "y": 33.31026300949205, "z": -7.490023232546697}, {"x": 19.73362306838342, "y": 33.50784948742518, "z": -7.350654932178911}, {"x": 19.5127210856323, "y": 33.70330011678577, "z": -7.210844627112992}, {"x": 19.29062593350514, "y": 33.89660481147972, "z": -7.070601398171157}, {"x": 19.06739987735034, "y": 34.0877480068966, "z": -6.929935912341689}, {"x": 18.84306692009427, "y": 34.27674989805267, "z": -6.788857195220181}, {"x": 18.61766050675638, "y": 34.46360262869064, "z": -6.647375883982771}, {"x": 18.39120810799869, "y": 34.64830718904791, "z": -6.50550092381778}, {"x": 18.16375912236377, "y": 34.83087518822134, "z": -6.363242809461854}, {"x": 17.93531575580995, "y": 35.01132565279018, "z": -6.220610391956662}, {"x": 17.70591667177001, "y": 35.18964860503733, "z": -6.077614044832857}, {"x": 17.47558360103681, "y": 35.36586950839364, "z": -5.934262427656257}, {"x": 17.24433739228549, "y": 35.54000112412363, "z": -5.790565730801564}, {"x": 17.0121784912352, "y": 35.71204981787415, "z": -5.646532556952954}, {"x": 16.77914788116866, "y": 35.88201947496628, "z": -5.502172984625957}, {"x": 16.54524210682812, "y": 36.04994259430769, "z": -5.357495421494642}, {"x": 16.31047311250793, "y": 36.21581421421912, "z": -5.212509786426131}, {"x": 16.07484952529379, "y": 36.37964665347558, "z": -5.067224386330265}, {"x": 15.8383906291536, "y": 36.54145519341247, "z": -4.921648955428756}, {"x": 15.6010758288518, "y": 36.70125383130107, "z": -4.775791633936412}, {"x": 15.36292610688939, "y": 36.85902928975057, "z": -4.629662078299902}, {"x": 15.12393966641664, "y": 37.01480679021353, "z": -4.483268321474699}, {"x": 14.88411390022235, "y": 37.16858576782241, "z": -4.336619808726188}, {"x": 14.64343535742745, "y": 37.32036318387437, "z": -4.189724405112139}, {"x": 14.40192360412335, "y": 37.47013401638812, "z": -4.04259146063955}, {"x": 14.159553949439, "y": 37.61791215140811, "z": -3.895228743079325}, {"x": 13.91632699905558, "y": 37.76366845348812, "z": -3.747645478917438}, {"x": 13.672241966063, "y": 37.9073993580374, "z": -3.599849381561409}, {"x": 13.4273037383525, "y": 38.04909395153039, "z": -3.451849645026865}, {"x": 13.18149011982741, "y": 38.18873641186352, "z": -3.303653932425253}, {"x": 12.93482430730154, "y": 38.32628822812146, "z": -3.155271391402269}, {"x": 12.68730458822531, "y": 38.46174757675163, "z": -3.006709790307141}, {"x": 12.43893868270126, "y": 38.59507715624569, "z": -2.857978418106206}, {"x": 12.18973750982713, "y": 38.72624820255076, "z": -2.709085144714329}, {"x": 11.93974020614555, "y": 38.85523461198384, "z": -2.560039348047482}, {"x": 11.68894916463795, "y": 38.9820265404453, "z": -2.410849087410258}, {"x": 11.43740230670019, "y": 39.106578198147, "z": -2.261523870231267}, {"x": 11.18513500342226, "y": 39.22888431471559, "z": -2.112071848374109}, {"x": 10.93218433631938, "y": 39.3489287219392, "z": -1.962502660211205}, {"x": 10.67857226034785, "y": 39.46669918389164, "z": -1.812824602269534}, {"x": 10.42436076331177, "y": 39.58217645180851, "z": -1.663047293986466}, {"x": 10.16957695310172, "y": 39.69538259797507, "z": -1.513178955353291}, {"x": 9.914256661087023, "y": 39.80630243926799, "z": -1.363229163453919}, {"x": 9.658437998710813, "y": 39.9149437914858, "z": -1.213206085755908}, {"x": 9.402169681339494, "y": 40.02131752745121, "z": -1.063119145693983}, {"x": 9.145462911576317, "y": 40.12544626679612, "z": -0.9129763661651481}, {"x": 8.888362525757303, "y": 40.22732094246793, "z": -0.7627870350161838}, {"x": 8.630898109365857, "y": 40.32697886018975, "z": -0.6125589771988359}, {"x": 8.373091413539392, "y": 40.42443314439981, "z": -0.462301202907586}, {"x": 8.11495420993331, "y": 40.51970036498622, "z": -0.3120213586805676}, {"x": 7.856528572584184, "y": 40.61279122400455, "z": -0.1617283138281865}, {"x": 7.597816610491513, "y": 40.70374829365924, "z": -0.01142951435167177}, {"x": 7.338833714194148, "y": 40.79256962918813, "z": 0.1388664382994671}, {"x": 7.079597499909918, "y": 40.87928319223167, "z": 0.2891522716103628}, {"x": 6.820124729828104, "y": 40.96391078826793, "z": 0.4394195968676133}, {"x": 6.560402615490101, "y": 41.04647765857666, "z": 0.5896613854000203}, {"x": 6.300453680976973, "y": 41.12697987844216, "z": 0.7398694579985813}, {"x": 6.040279612355293, "y": 41.20545849650211, "z": 0.8900369018757178}, {"x": 5.779876222201919, "y": 41.2819185221618, "z": 1.040155761159594}, {"x": 5.519238914745857, "y": 41.35637367982842, "z": 1.19021938278446}, {"x": 5.25838267885692, "y": 41.42883253261706, "z": 1.340220029954194}, {"x": 4.99728433311316, "y": 41.49932435961399, "z": 1.490151199690282}, {"x": 4.735941806522826, "y": 41.56783088955283, "z": 1.64000535937636}, {"x": 4.474354963818631, "y": 41.63437057769477, "z": 1.789776186514744}, {"x": 4.212516828263595, "y": 41.69894382414987, "z": 1.939456288045778}, {"x": 3.950404658048241, "y": 41.76155130860325, "z": 2.089039466498445}, {"x": 3.688030374889584, "y": 41.8221701641294, "z": 2.23851852034137}, {"x": 3.425381121913891, "y": 41.88081686272955, "z": 2.387887360912777}, {"x": 3.162447116098887, "y": 41.93746028390192, "z": 2.537138781278047}, {"x": 2.899230868950051, "y": 41.99208629944648, "z": 2.686266660334515}, {"x": 2.635748435569463, "y": 42.044675316101, "z": 2.835263828112091}, {"x": 2.371988469603947, "y": 42.09522165603511, "z": 2.984124093574405}, {"x": 2.107971902711473, "y": 42.14367817342851, "z": 3.132840174806237}, {"x": 1.8437213869442, "y": 42.19004447016335, "z": 3.281405794759432}, {"x": 1.579253305798165, "y": 42.23429549805034, "z": 3.429813596639226}, {"x": 1.31458486107111, "y": 42.27641378150129, "z": 3.578057094484912}, {"x": 1.049765535754866, "y": 42.31637331164674, "z": 3.726128812098879}, {"x": 0.7848174248220003, "y": 42.35419008489703, "z": 3.874022247275089}, {"x": 0.5197701626980816, "y": 42.38983640335621, "z": 4.02172993903928}, {"x": 0.2546661481407703, "y": 42.42331850696308, "z": 4.169245338650341}, {"x": -0.01045388521458969, "y": 42.4546395756017, "z": 4.316561051292142}, {"x": -0.2755728764771028, "y": 42.48381629339048, "z": 4.463670626152609}, {"x": -0.5406452467561542, "y": 42.51083478443702, "z": 4.610566774129484}, {"x": -0.8056362796960661, "y": 42.5357340741395, "z": 4.757243158477729}, {"x": -1.070525977207734, "y": 42.55852089260004, "z": 4.903692730552939}, {"x": -1.335291265381271, "y": 42.57921438385954, "z": 5.049909384832669}, {"x": -1.599892815159833, "y": 42.59782701104603, "z": 5.195886243704028}, {"x": -1.864322981977346, "y": 42.6144024842346, "z": 5.34161734708768}, {"x": -2.128564453860314, "y": 42.62893723931557, "z": 5.487096067788549}, {"x": -2.392591214371306, "y": 42.64146756831152, "z": 5.632316671156567}, {"x": -2.656390771493097, "y": 42.65201569025917, "z": 5.777272726449279}, {"x": -2.919966199298461, "y": 42.66061059723977, "z": 5.921958715554096}, {"x": -3.183294900055234, "y": 42.66725406035355, "z": 6.066368482144504}, {"x": -3.446371570616267, "y": 42.67199470236381, "z": 6.210496658928491}, {"x": -3.709201799505914, "y": 42.67483760769183, "z": 6.354337245571844}, {"x": -3.971779652651029, "y": 42.67580589810561, "z": 6.497885102644843}, {"x": -4.234094608290794, "y": 42.67491594615494, "z": 6.641134513741112}, {"x": -4.49616453847055, "y": 42.67220378510957, "z": 6.784080503343834}, {"x": -4.757991599141531, "y": 42.66765812468917, "z": 6.926717553168467}, {"x": -5.019571779465665, "y": 42.66131168083133, "z": 7.069040893956146}, {"x": -5.280919671563717, "y": 42.65317147192636, "z": 7.211045207005882}, {"x": -5.542051915846499, "y": 42.64324855435627, "z": 7.352725843156556}, {"x": -5.802962991110951, "y": 42.63153358817468, "z": 7.494077697829954}, {"x": -6.063668680148446, "y": 42.61805645315574, "z": 7.63509633507812}, {"x": -6.324189322290865, "y": 42.60279416284624, "z": 7.775776785221916}, {"x": -6.584524487275877, "y": 42.58574727758519, "z": 7.916114634027641}, {"x": -6.844676810059222, "y": 42.56690602821893, "z": 8.056105002898239}, {"x": -7.104665552122575, "y": 42.54627125768074, "z": 8.195743537078126}, {"x": -7.364485658414765, "y": 42.52380150917213, "z": 8.33502533614566}, {"x": -7.624126330230775, "y": 42.49950378433392, "z": 8.47394598161518}, {"x": -7.883592957319146, "y": 42.47335033669582, "z": 8.612500562779834}, {"x": -8.142875631955818, "y": 42.44532185850248, "z": 8.750684521383048}, {"x": -8.40194362243804, "y": 42.41538898852715, "z": 8.88849274478858}, {"x": -8.660783625505813, "y": 42.38355979479431, "z": 9.025920529516595}, {"x": -8.919377078113369, "y": 42.34979505295689, "z": 9.162962717572732}, {"x": -9.177681879043426, "y": 42.31409568867667, "z": 9.2996144764251}, {"x": -9.435669138329718, "y": 42.27645446898296, "z": 9.435870561171964}, {"x": -9.693317598782196, "y": 42.23687673558626, "z": 9.571726104124439}, {"x": -9.95058370016458, "y": 42.19534134713309, "z": 9.707175886444885}, {"x": -10.20742860343116, "y": 42.15188169373889, "z": 9.842215022258102}, {"x": -10.46383363512504, "y": 42.10649454654963, "z": 9.976838398513188}, {"x": -10.7197628880824, "y": 42.0591959298027, "z": 10.11104129816022}, {"x": -10.97517911053735, "y": 42.00999784893678, "z": 10.24481879763968}, {"x": -11.23006684822535, "y": 41.95893965416511, "z": 10.37816627159759}, {"x": -11.48440527313201, "y": 41.90601528186867, "z": 10.51107896951274}, {"x": -11.73815820692994, "y": 41.85126488394031, "z": 10.64355247997132}, {"x": -11.99131582605095, "y": 41.79470988985877, "z": 10.77558226068206}, {"x": -12.24386838908551, "y": 41.73637918810351, "z": 10.90716405748775}, {"x": -12.49579177426058, "y": 41.67628069986706, "z": 11.03829358731678}, {"x": -12.7470748863225, "y": 41.61446721120986, "z": 11.16896681127755}, {"x": -12.99772327738793, "y": 41.55094413340449, "z": 11.29917957849631}, {"x": -13.24771867719728, "y": 41.48574117146514, "z": 11.42892799229774}, {"x": -13.49705404706732, "y": 41.41888190499605, "z": 11.55820817677501}, {"x": -13.74573897548126, "y": 41.35040562706332, "z": 11.68701644066299}, {"x": -13.99377362535111, "y": 41.28030864914239, "z": 11.81534907636999}, {"x": -14.24114784568225, "y": 41.20863479501016, "z": 11.94320257988976}, {"x": -14.48788100010248, "y": 41.13539728490954, "z": 12.07057347598664}, {"x": -14.73398004730685, "y": 41.0606151497729, "z": 12.19745838637644}, {"x": -14.97944309995764, "y": 40.98429294639296, "z": 12.32385401099122}, {"x": -15.22428391702782, "y": 40.90647067003336, "z": 12.44975719350288}, {"x": -15.46852729544547, "y": 40.82713600675459, "z": 12.57516487364224}, {"x": -15.71217028790978, "y": 40.74630496916564, "z": 12.7000739902414}, {"x": -15.95522943747409, "y": 40.6639812708876, "z": 12.82448160124783}, {"x": -16.19772598495313, "y": 40.58017467096474, "z": 12.94838476924438}, {"x": -16.4396669837192, "y": 40.49485790672928, "z": 13.07178066625789}, {"x": -16.68105129981697, "y": 40.40804964392176, "z": 13.1946663576884}, {"x": -16.92190375900027, "y": 40.31972874978425, "z": 13.31703907295272}, {"x": -17.16222208883635, "y": 40.22988219092692, "z": 13.43889588382977}, {"x": -17.40199891079429, "y": 40.13848750621225, "z": 13.56023391617007}, {"x": -17.64123438527113, "y": 40.04554953569664, "z": 13.68105005557658}, {"x": -17.87992731173831, "y": 39.95102598779357, "z": 13.80134134943471}, {"x": -18.11804447524049, "y": 39.85491537582099, "z": 13.92110457529884}, {"x": -18.35557713162577, "y": 39.75720335165408, "z": 14.04033662096901}, {"x": -18.5925071968228, "y": 39.65788368108791, "z": 14.15903410763493}, {"x": -18.82880207177125, "y": 39.55692973813382, "z": 14.27719385788175}, {"x": -19.0644266648671, "y": 39.45436486349359, "z": 14.39481237851164}, {"x": -19.29936948399345, "y": 39.35017430541607, "z": 14.51188642064389}, {"x": -19.533587618193, "y": 39.24436624430598, "z": 14.62841251326694}, {"x": -19.76705058717486, "y": 39.13694925260778, "z": 14.74438754234666}, {"x": -19.99973833162851, "y": 39.02795286352216, "z": 14.85980809079786}, {"x": -20.23162986405405, "y": 38.9173671405682, "z": 14.97467112224323}, {"x": -20.46268288977289, "y": 38.80523011294871, "z": 15.08897335045699}, {"x": -20.69289203187261, "y": 38.69155982909727, "z": 15.20271194630805}, {"x": -20.92223725915078, "y": 38.57638007341485, "z": 15.31588374700105}, {"x": -21.15069537043224, "y": 38.45970280729716, "z": 15.42848612473665}, {"x": -21.37825116956143, "y": 38.34157904269783, "z": 15.54051614825011}, {"x": -21.60491160492782, "y": 38.22201362194964, "z": 15.65197137852498}, {"x": -21.83064940686339, "y": 38.10103745220086, "z": 15.76284896277167}, {"x": -22.05546287015374, "y": 37.97867809198198, "z": 15.87314666362451}, {"x": -22.2793544962967, "y": 37.85497194641103, "z": 15.9828618559396}, {"x": -22.50232400701849, "y": 37.72992074337423, "z": 16.09199247856522}, {"x": -22.72435678155395, "y": 37.60357218699134, "z": 16.20053604148574}, {"x": -22.94547687854477, "y": 37.47594232020199, "z": 16.30849070073991}, {"x": -23.1656822112382, "y": 37.34705184124024, "z": 16.41585411825445}, {"x": -23.38497500798749, "y": 37.21691492534233, "z": 16.52262456952908}, {"x": -23.60336578591796, "y": 37.08557332242952, "z": 16.62879987588017}, {"x": -23.82088066232258, "y": 36.95302161973898, "z": 16.73437856138516}, {"x": -24.03751193298249, "y": 36.81928493373972, "z": 16.8393586083366}, {"x": -24.2532859581509, "y": 36.68437685730864, "z": 16.94373865754609}, {"x": -24.46822129046566, "y": 36.54831069885943, "z": 17.04751680495116}, {"x": -24.68233166412815, "y": 36.41107287445725, "z": 17.15069186368575}, {"x": -24.89562126997153, "y": 36.27269012698215, "z": 17.25326200669388}, {"x": -25.10812761662995, "y": 36.13314914177772, "z": 17.35522612901375}, {"x": -25.31985138691294, "y": 35.99244390228112, "z": 17.45658249005043}, {"x": -25.5308048857331, "y": 35.8505638162418, "z": 17.55733004523316}, {"x": -25.74100041291495, "y": 35.70751218247622, "z": 17.65746693387446}, {"x": -25.95045295006274, "y": 35.56324984026283, "z": 17.7569920241738}, {"x": -26.15914109080312, "y": 35.41777492447586, "z": 17.85590339517938}, {"x": -26.36707850307945, "y": 35.27106990644492, "z": 17.95419981286868}, {"x": -26.5742544039329, "y": 35.12311702576359, "z": 18.05187914522015}, {"x": -26.78065195296894, "y": 34.9738867402544, "z": 18.14894002314193}, {"x": -26.98624588492508, "y": 34.82338847089699, "z": 18.24538015867011}, {"x": -27.19103563434253, "y": 34.6715946001803, "z": 18.34119798666236}, {"x": -27.39497634488567, "y": 34.51849981296503, "z": 18.43639105187452}, {"x": -27.59804695517746, "y": 34.36410462844192, "z": 18.53095777570633}, {"x": -27.80022402796972, "y": 34.20842119095195, "z": 18.62489568783514}, {"x": -28.00148644472619, "y": 34.05143246911702, "z": 18.71820317028318}, {"x": -28.20178722578165, "y": 33.89316660626821, "z": 18.81087774302796}, {"x": -28.40112293924338, "y": 33.73363342400976, "z": 18.90291789240619}, {"x": -28.59946194140129, "y": 33.57284570048206, "z": 18.99432121915698}, {"x": -28.79677983184867, "y": 33.41081572045689, "z": 19.08508631213949}, {"x": -28.9930546896885, "y": 33.24758576796712, "z": 19.17521093412409}, {"x": -29.18828986382824, "y": 33.08315864707442, "z": 19.26469389277258}, {"x": -29.38244823362215, "y": 32.91756236988742, "z": 19.35353304010004}, {"x": -29.57552969488012, "y": 32.7508255215636, "z": 19.44172729292758}, {"x": -29.76752659659361, "y": 32.58297714803587, "z": 19.529274684978}, {"x": -29.95843446689103, "y": 32.41402391196784, "z": 19.61617434769964}, {"x": -30.14823257643474, "y": 32.24401217126664, "z": 19.70242442260955}, {"x": -30.33694418590926, "y": 32.07295963769477, "z": 19.78802421097257}, {"x": -30.52455595470396, "y": 31.90088576676918, "z": 19.87297202527043}, {"x": -30.71107090343773, "y": 31.72781302838155, "z": 19.95726728888609}, {"x": -30.89649312831244, "y": 31.55377982261745, "z": 20.04090838884908}, {"x": -31.08084449923837, "y": 31.37878691808807, "z": 20.12389493995643}, {"x": -31.2641093339287, "y": 31.20286433158716, "z": 20.20622552360293}, {"x": -31.446317090026, "y": 31.02603412483813, "z": 20.287899885497}, {"x": -31.62747816394872, "y": 30.84831030089202, "z": 20.36891668953365}, {"x": -31.80760610216346, "y": 30.66969322227163, "z": 20.4492758321309}, {"x": -31.98670412435459, "y": 30.49021499172447, "z": 20.52897610446512}, {"x": -32.16481303438214, "y": 30.30987184059799, "z": 20.60801749072833}, {"x": -32.34192932802512, "y": 30.12866565331048, "z": 20.68639887988968}, {"x": -32.51807563515846, "y": 29.9466020521208, "z": 20.76412040988866}, {"x": -32.69326939306095, "y": 29.76368722415971, "z": 20.84118099576287}, {"x": -32.8675345295549, "y": 29.57989365222512, "z": 20.91758071989076}, {"x": -33.04085834209375, "y": 29.39522537258972, "z": 20.99331846993447}, {"x": -33.21327206563694, "y": 29.20967114856492, "z": 21.06839434151553}, {"x": -33.3847722416497, "y": 29.02320984569475, "z": 21.14280709410732}, {"x": -33.55535787359724, "y": 28.83581874894869, "z": 21.21655668539359}, {"x": -33.72501729499585, "y": 28.64749935345533, "z": 21.28964174418743}, {"x": -33.89376339295326, "y": 28.45821916236192, "z": 21.36206205420336}, {"x": -34.06155645817887, "y": 28.26796284730784, "z": 21.4338159742445}, {"x": -34.22838889508558, "y": 28.07672602820077, "z": 21.50490313188238}, {"x": -34.39423909819702, "y": 27.8845033314558, "z": 21.57532179161175}, {"x": -34.55908871800498, "y": 27.69127307593463, "z": 21.6450714730821}, {"x": -34.72289146311317, "y": 27.49705145944257, "z": 21.71415029755017}, {"x": -34.88564688031519, "y": 27.30183996461452, "z": 21.7825577442708}, {"x": -35.04731458500291, "y": 27.10563861542052, "z": 21.85029193881044}, {"x": -35.20787004104639, "y": 26.90845990949361, "z": 21.91735237285274}, {"x": -35.36728602792468, "y": 26.71033413457464, "z": 21.98373722110667}, {"x": -35.52556025646683, "y": 26.51126286221323, "z": 22.04944613716437}, {"x": -35.68264754291626, "y": 26.31127074218558, "z": 22.11447743156584}, {"x": -35.83854870565708, "y": 26.11038764567994, "z": 22.17883082418605}, {"x": -35.99324659368628, "y": 25.90863431365754, "z": 22.24250473044621}, {"x": -36.14673175715886, "y": 25.70602425576011, "z": 22.30549908464231}, {"x": -36.29897954533629, "y": 25.50260118931154, "z": 22.36781245857374}, {"x": -36.45001054529286, "y": 25.29838537775737, "z": 22.42944491856321}, {"x": -36.59980196167744, "y": 25.09339559570535, "z": 22.49039521207316}, {"x": -36.74835794651742, "y": 24.88766376544739, "z": 22.55066359034138}, {"x": -36.89567844196487, "y": 24.68122346081812, "z": 22.61024887122612}, {"x": -37.04178037175201, "y": 24.47408281156174, "z": 22.66915142971475}, {"x": -37.18664329353636, "y": 24.26627488209351, "z": 22.72737028046994}, {"x": -37.33029832635678, "y": 24.05782959010812, "z": 22.7849059861303}, {"x": -37.47274897458676, "y": 23.84876024639797, "z": 22.84175764760473}, {"x": -37.61400812526201, "y": 23.63908136905894, "z": 22.8979259539921}, {"x": -37.7540790407548, "y": 23.42882699081907, "z": 22.95341015222936}, {"x": -37.89300257268575, "y": 23.21800287862424, "z": 23.00821104985669}, {"x": -38.03077124280333, "y": 23.00661707653572, "z": 23.0623279793713}, {"x": -38.16741403449814, "y": 22.79469085981724, "z": 23.11576191243648}, {"x": -38.30295047885006, "y": 22.58223316351536, "z": 23.16851233229128}, {"x": -38.43740934974691, "y": 22.36923202877368, "z": 23.2205802473086}, {"x": -38.57078593256738, "y": 22.1556987450579, "z": 23.27196513634921}, {"x": -38.70312435942786, "y": 21.94163293098479, "z": 23.32266807998293}, {"x": -38.83442838305396, "y": 21.72701565565839, "z": 23.37268858525602}, {"x": -38.96471258081307, "y": 21.51183765511632, "z": 23.42202766414084}, {"x": -39.09398154481423, "y": 21.29609766107659, "z": 23.47068475485624}, {"x": -39.22226358409406, "y": 21.07976633504992, "z": 23.51866080217761}, {"x": -39.34953279045023, "y": 20.86282347767832, "z": 23.56595504222852}, {"x": -39.47580092770273, "y": 20.64526310730946, "z": 23.61256818749253}, {"x": -39.60105720922865, "y": 20.42706365882443, "z": 23.65849931815352}, {"x": -39.72529309754891, "y": 20.20820006815936, "z": 23.70374901960502}, {"x": -39.84847308800857, "y": 19.9886735379825, "z": 23.74831615748778}, {"x": -39.97060482517858, "y": 19.76847467548332, "z": 23.79220113368543}, {"x": -40.0916476391849, "y": 19.54758617258259, "z": 23.8354026939062}, {"x": -40.21158128403685, "y": 19.32601565954572, "z": 23.87792115304707}, {"x": -40.33037875023655, "y": 19.10377400599726, "z": 23.91975516158445}, {"x": -40.44803295266451, "y": 18.88085634964989, "z": 23.96090505002729}, {"x": -40.56449441990756, "y": 18.65727720479542, "z": 24.00136955898186}, {"x": -40.67976421357865, "y": 18.43306252156881, "z": 24.04114906726571}, {"x": -40.7938176538502, "y": 18.20821870379065, "z": 24.08024232167506}, {"x": -40.906639280419, "y": 17.98276161349084, "z": 24.11864981282725}, {"x": -41.01820169081164, "y": 17.75672598640148, "z": 24.15637045638502}, {"x": -41.12852002036155, "y": 17.53013035960775, "z": 24.19340485302999}, {"x": -41.23756249542271, "y": 17.30298813954941, "z": 24.22975204428275}, {"x": -41.34533185006253, "y": 17.07533671393091, "z": 24.26541282270891}, {"x": -41.45182389237053, "y": 16.84720029142565, "z": 24.30038635839261}, {"x": -41.55704788016288, "y": 16.61859103573009, "z": 24.33467350395544}, {"x": -41.66097937282713, "y": 16.38953998455518, "z": 24.36827357375464}, {"x": -41.76364703056992, "y": 16.1600803106311, "z": 24.40118762877342}, {"x": -41.86504648666291, "y": 15.93022064277487, "z": 24.43341511241503}, {"x": -41.96518643034164, "y": 15.69998599838525, "z": 24.46495717823297}, {"x": -42.06406912752919, "y": 15.46940697173016, "z": 24.49581340087296}, {"x": -42.16172966077476, "y": 15.23849509685678, "z": 24.5259850708591}, {"x": -42.25815518859473, "y": 15.00726034685001, "z": 24.55547183970254}, {"x": -42.35337457868144, "y": 14.7757346610088, "z": 24.58427511467395}, {"x": -42.44740426619586, "y": 14.54392544101884, "z": 24.61239472203731}, {"x": -42.54026936846501, "y": 14.31183506650322, "z": 24.63983219959416}, {"x": -42.63196875582976, "y": 14.07947935233281, "z": 24.66658739631205}, {"x": -42.72254918549368, "y": 13.84686781833108, "z": 24.69266190556004}, {"x": -42.81201495084251, "y": 13.61398501891322, "z": 24.71805568585805}, {"x": -42.90038760953803, "y": 13.38083783281929, "z": 24.74277036834957}, {"x": -42.98768184217484, "y": 13.14742499996051, "z": 24.76680589220712}, {"x": -43.07393266524529, "y": 12.91372713959845, "z": 24.79016390125774}, {"x": -43.15912632334852, "y": 12.67972649578042, "z": 24.81284429519766}, {"x": -43.24329035248604, "y": 12.44542195548851, "z": 24.83484853452417}, {"x": -43.32642538232749, "y": 12.21078270698701, "z": 24.85617634806574}, {"x": -43.40853299305439, "y": 11.9757871328343, "z": 24.87682908537094}, {"x": -43.48959314950272, "y": 11.74042557964476, "z": 24.89680631029408}, {"x": -43.56962264325136, "y": 11.50468132816535, "z": 24.91610912220387}, {"x": -43.64858669492425, "y": 11.26852272334418, "z": 24.93473687742336}, {"x": -43.72647234983521, "y": 11.03195221950799, "z": 24.95269050208909}, {"x": -43.80325746888351, "y": 10.79496003191838, "z": 24.9699691563144}, {"x": -43.87893085615563, "y": 10.55753333638374, "z": 24.98657360774054}, {"x": -43.95344266166873, "y": 10.31967355800079, "z": 25.0025029771769}, {"x": -44.0267918254189, "y": 10.08139959838533, "z": 25.01775803422606}, {"x": -44.0989475197954, "y": 9.842702071624238, "z": 25.03233784012513}, {"x": -44.16988646873722, "y": 9.603596777476703, "z": 25.04624313620611}, {"x": -44.23957850147178, "y": 9.364106499224588, "z": 25.05947306992677}, {"x": -44.30802881130123, "y": 9.124246870020299, "z": 25.07202848330864}, {"x": -44.37519682693771, "y": 8.884024963863403, "z": 25.08390858839257}, {"x": -44.44107936748578, "y": 8.643481977490037, "z": 25.09511435755362}, {"x": -44.50566644170486, "y": 8.402633026473202, "z": 25.10564517523218}, {"x": -44.56895626982165, "y": 8.161495177523978, "z": 25.11550208461927}, {"x": -44.63092058686766, "y": 7.920096828785043, "z": 25.12468453837511}, {"x": -44.69158096930275, "y": 7.678474049680998, "z": 25.13319374887336}, {"x": -44.75092438352113, "y": 7.43663204819349, "z": 25.14102936079214}, {"x": -44.80895228573896, "y": 7.194606399677766, "z": 25.14819268152696}, {"x": -44.86566503305598, "y": 6.952424621418603, "z": 25.1546834729982}, {"x": -44.92108800147103, "y": 6.710104722879612, "z": 25.16050318692643}, {"x": -44.97520340802384, "y": 6.467659631760319, "z": 25.16565169977489}, {"x": -45.02803623725788, "y": 6.225130751585263, "z": 25.17013053663414}, {"x": -45.07959805679242, "y": 5.982524413868553, "z": 25.17393973073389}, {"x": -45.12990539199254, "y": 5.73985778028406, "z": 25.17708099094074}, {"x": -45.17895918041372, "y": 5.497152146607916, "z": 25.17955445444424}, {"x": -45.22680260600269, "y": 5.254427339577004, "z": 25.18136187266895}, {"x": -45.2734376563109, "y": 5.011674048964093, "z": 25.18250349745357}, {"x": -45.31888661053008, "y": 4.76891723640176, "z": 25.18298120877202}, {"x": -45.363170449767, "y": 4.526159266905589, "z": 25.18279531370557}, {"x": -45.40632329084884, "y": 4.283395891208207, "z": 25.18194774548091}, {"x": -45.44834109567299, "y": 4.040619431278822, "z": 25.18043890484035}, {"x": -45.48926216216458, "y": 3.79784124692903, "z": 25.1782707061132}, {"x": -45.52909826321806, "y": 3.555031068056444, "z": 25.1754434354926}, {"x": -45.56786017987033, "y": 3.312180429971828, "z": 25.17195893579278}, {"x": -45.60554727078269, "y": 3.069278304089458, "z": 25.16781745462489}, {"x": -45.64218743069288, "y": 2.826309604520644, "z": 25.1630206709203}, {"x": -45.67775961081978, "y": 2.583237821086168, "z": 25.15756863160982}, {"x": -45.71226485831076, "y": 2.340065953903834, "z": 25.1514628294928}, {"x": -45.74569533323455, "y": 2.096768658081025, "z": 25.14470311894949}, {"x": -45.77804322604673, "y": 1.853328066417477, "z": 25.13729073644944}, {"x": -45.80926913788259, "y": 1.609733559528124, "z": 25.12922537093709}, {"x": -45.83937530762915, "y": 1.36599513301657, "z": 25.12050817153006}, {"x": -45.8683326099027, "y": 1.122088051064662, "z": 25.1111387440314}, {"x": -45.89611583305073, "y": 0.878025476351291, "z": 25.10111809547627}, {"x": -45.9226988328078, "y": 0.6338153197485128, "z": 25.09044578846015}, {"x": -45.94807894241338, "y": 0.3894670939542655, "z": 25.07912286932562}, {"x": -45.97221318199382, "y": 0.1449799310682408, "z": 25.06714893861769}, {"x": -45.9950941279773, "y": -0.09960613028528582, "z": 25.05452507914301}, {"x": -46.01670909095174, "y": -0.3442868558695301, "z": 25.04125103509654}, {"x": -46.03704661044352, "y": -0.589042214069476, "z": 25.02732801109551}, {"x": -46.05607983459187, "y": -0.8338490348331232, "z": 25.01275579131235}, {"x": -46.0738231595829, "y": -1.078672254390758, "z": 24.99753566351458}, {"x": -46.09025856275184, "y": -1.32351129427569, "z": 24.98166761121752}, {"x": -46.10538157988498, "y": -1.568323846962513, "z": 24.96515306368327}, {"x": -46.11919338956424, "y": -1.813088414987185, "z": 24.94799210328287}, {"x": -46.13170955001002, "y": -2.057783319681776, "z": 24.93018628981247}, {"x": -46.14291159730494, "y": -2.302395146832919, "z": 24.91173586242977}, {"x": -46.15282069600063, "y": -2.546878360060568, "z": 24.89264244905578}, {"x": -46.16144549321659, "y": -2.791230892353052, "z": 24.87290639902339}, {"x": -46.16879356398611, "y": -3.035425829224778, "z": 24.85252950974282}, {"x": -46.17486893256336, "y": -3.279440768970208, "z": 24.83151230979098}, {"x": -46.17970853100095, "y": -3.523250666667622, "z": 24.809856656219}, {"x": -46.18331249554993, "y": -3.766861822476653, "z": 24.78756316471561}, {"x": -46.18570046482298, "y": -4.010237453835173, "z": 24.76463381866695}, {"x": -46.18689712523502, "y": -4.253374715568251, "z": 24.74106936013123}, {"x": -46.18693007663387, "y": -4.496266712369033, "z": 24.71687182537751}, {"x": -46.18580166722797, "y": -4.738912654333468, "z": 24.69204208011337}, {"x": -46.18355324617972, "y": -4.981290622543737, "z": 24.66658226653594}, {"x": -46.18020394313784, "y": -5.223427708631319, "z": 24.64049324814923}, {"x": -46.17576822361231, "y": -5.465318335213837, "z": 24.61377710522229}, {"x": -46.17026202289615, "y": -5.706971196576085, "z": 24.58643473227038}, {"x": -46.16371950879229, "y": -5.948395862100247, "z": 24.55846819150866}, {"x": -46.15613435523683, "y": -6.18962716415741, "z": 24.52987825813155}, {"x": -46.14752097388939, "y": -6.430657908115641, "z": 24.50066684297356}, {"x": -46.13788934856042, "y": -6.671523224108104, "z": 24.47083459292539}, {"x": -46.12723815615887, "y": -6.912242897251881, "z": 24.4403831859603}, {"x": -46.11554556870443, "y": -7.152837560721196, "z": 24.40931302212794}, {"x": -46.10282038162311, "y": -7.39330769308992, "z": 24.3776255942268}, {"x": -46.089040926626, "y": -7.633693184214114, "z": 24.34532118586366}, {"x": -46.07418399139556, "y": -7.873987037107107, "z": 24.31240108271227}, {"x": -46.05823225273566, "y": -8.114199546997195, "z": 24.27886538611252}, {"x": -46.04117609160127, "y": -8.354332747304438, "z": 24.24471527396933}, {"x": -46.02297344139823, "y": -8.594398799300892, "z": 24.20995082498985}, {"x": -46.00361214794371, "y": -8.834366069006503, "z": 24.17457314647755}, {"x": -45.98307644326902, "y": -9.074244958590901, "z": 24.13858235055532}, {"x": -45.96134262869445, "y": -9.314017282116023, "z": 24.101979636037}, {"x": -45.93838536760794, "y": -9.553667875584374, "z": 24.06476517770983}, {"x": -45.91420814028507, "y": -9.793168053237512, "z": 24.02694016134889}, {"x": -45.88878667455486, "y": -10.0325230794226, "z": 23.98850488384197}, {"x": -45.86210731436908, "y": -10.27168848430088, "z": 23.94946069060055}, {"x": -45.83416998417748, "y": -10.51065043504259, "z": 23.90980799013666}, {"x": -45.80497567814518, "y": -10.74938633325062, "z": 23.86954821251746}, {"x": -45.77450460527883, "y": -10.98788244802931, "z": 23.82868192869778}, {"x": -45.7427700231232, "y": -11.22609281215938, "z": 23.78721067068907}, {"x": -45.70977581685446, "y": -11.46401970652679, "z": 23.74513508016577}, {"x": -45.67551731544709, "y": -11.70162940080374, "z": 23.70245680514051}, {"x": -45.63999953384783, "y": -11.93889994968445, "z": 23.65917668891153}, {"x": -45.60324767565206, "y": -12.17580365876381, "z": 23.61529649616693}, {"x": -45.56525828479006, "y": -12.41234336011635, "z": 23.57081714720408}, {"x": -45.5260440306694, "y": -12.64847447855786, "z": 23.52574049436446}, {"x": -45.48562891701393, "y": -12.88419427698818, "z": 23.48006761543053}, {"x": -45.44402827545461, "y": -13.11948673226783, "z": 23.43380043943287}, {"x": -45.40124657672058, "y": -13.35434314201628, "z": 23.38694014863692}, {"x": -45.35731944151874, "y": -13.58873328533054, "z": 23.33948880796263}, {"x": -45.31226665458514, "y": -13.82267737222558, "z": 23.29144772831751}, {"x": -45.26609938452599, "y": -14.05615528248588, "z": 23.24281894953004}, {"x": -45.21884301175, "y": -14.28916935912891, "z": 23.19360381970152}, {"x": -45.17052905261254, "y": -14.52171954927855, "z": 23.14380445441188}, {"x": -45.12116115666151, "y": -14.75383019546907, "z": 23.09342223003831}, {"x": -45.07076085957281, "y": -14.98548438093771, "z": 23.04245917441252}, {"x": -45.01935255950631, "y": -15.2167155614591, "z": 22.99091662795652}, {"x": -44.96693991495161, "y": -15.44753638937569, "z": 22.93879651386136}, {"x": -44.91352127059664, "y": -15.67796717534318, "z": 22.88609997770613}, {"x": -44.85911309457767, "y": -15.90801222927964, "z": 22.83282872586167}, {"x": -44.80370624597502, "y": -16.13771708871898, "z": 22.77898378362041}, {"x": -44.74728417351743, "y": -16.36707690693658, "z": 22.72456667708748}, {"x": -44.68984442695541, "y": -16.59611457674153, "z": 22.66957819535803}, {"x": -44.63137524870821, "y": -16.82484183353109, "z": 22.61401963672138}, {"x": -44.57184235126919, "y": -17.05327941568651, "z": 22.55789166957032}, {"x": -44.51123251359704, "y": -17.28140589749887, "z": 22.50119544759576}, {"x": -44.44953091309137, "y": -17.50924516467852, "z": 22.44393154137674}, {"x": -44.38670400109907, "y": -17.73678294910818, "z": 22.38610108477239}, {"x": -44.32273041727811, "y": -17.96401153505959, "z": 22.32770471145946}, {"x": -44.25760357747914, "y": -18.19091031530493, "z": 22.26874351212263}, {"x": -44.19129521872465, "y": -18.41748890500342, "z": 22.20921813502642}, {"x": -44.12378320191753, "y": -18.64370317129449, "z": 22.1491297744453}, {"x": -44.05506680521398, "y": -18.86954534997876, "z": 22.08847923525598}, {"x": -43.98513257077644, "y": -19.09499279946262, "z": 22.0272677730068}, {"x": -43.91396099122566, "y": -19.32002924207638, "z": 21.96549633438552}, {"x": -43.84155747355687, "y": -19.54460943176133, "z": 21.90316631779781}, {"x": -43.76792279574561, "y": -19.76873680517357, "z": 21.84027877519323}, {"x": -43.69304175303504, "y": -19.99237202622193, "z": 21.77683516413953}, {"x": -43.61692216949124, "y": -20.21549231844798, "z": 21.71283672179372}, {"x": -43.5395775332412, "y": -20.43806852177571, "z": 21.64828508568269}, {"x": -43.46100341377773, "y": -20.66009733108122, "z": 21.58318161572431}, {"x": -43.38120703777256, "y": -20.88152886261226, "z": 21.5175280220413}, {"x": -43.30021317453284, "y": -21.10235955692408, "z": 21.45132582062093}, {"x": -43.21802582014602, "y": -21.32256600144492, "z": 21.38457684895954}, {"x": -43.13465384019268, "y": -21.5421319712567, "z": 21.31728272822502}, {"x": -43.05012601502835, "y": -21.76102277936598, "z": 21.24944541972469}, {"x": -42.96446204764209, "y": -21.97925061217891, "z": 21.18106674844763}, {"x": -42.87766943894164, "y": -22.1967830740868, "z": 21.11214875511454}, {"x": -42.78978161042502, "y": -22.41361622229334, "z": 21.04269330271241}, {"x": -42.70082414842532, "y": -22.62974160698002, "z": 20.97270251757311}, {"x": -42.61080891157288, "y": -22.84517006887569, "z": 20.90217841439706}, {"x": -42.51976158280065, "y": -23.0598753076938, "z": 20.83112313344828}, {"x": -42.42771756510083, "y": -23.27388357835763, "z": 20.75953872077412}, {"x": -42.33468424360451, "y": -23.48719601090887, "z": 20.68742733715771}, {"x": -42.2406808826839, "y": -23.69982541529402, "z": 20.61479099268377}, {"x": -42.14573260758247, "y": -23.9117755057732, "z": 20.54163167902677}, {"x": -42.04984669498617, "y": -24.12308867482847, "z": 20.46795132030789}, {"x": -41.95301893199677, "y": -24.33375901112953, "z": 20.39375180943743}, {"x": -41.85526791750506, "y": -24.54381591002869, "z": 20.31903490915163}, {"x": -41.75658749271447, "y": -24.75327867504712, "z": 20.24380225337335}, {"x": -41.65696114493565, "y": -24.96217401768022, "z": 20.16805541286813}, {"x": -41.55638252685305, "y": -25.17049416813886, "z": 20.09179582501583}, {"x": -41.45484587815214, "y": -25.37827683900419, "z": 20.01502486834026}, {"x": -41.35231554718644, "y": -25.5855176677468, "z": 19.93774380871923}, {"x": -41.24877975217736, "y": -25.79222076386855, "z": 19.85995398504705}, {"x": -41.14422556832136, "y": -25.99837999851473, "z": 19.78165659835184}, {"x": -41.03862573143845, "y": -26.20401304124319, "z": 19.70285289404358}, {"x": -40.93195249196535, "y": -26.409084933899, "z": 19.62354403304299}, {"x": -40.82420533381465, "y": -26.61359839258242, "z": 19.54373137112892}, {"x": -40.71535759227193, "y": -26.81753727556288, "z": 19.46341612639683}, {"x": -40.60539080541208, "y": -27.0208873823887, "z": 19.38259972524474}, {"x": -40.49430141279397, "y": -27.22361090853176, "z": 19.3012835022853}, {"x": -40.38208661708025, "y": -27.4257143190458, "z": 19.21946903688447}, {"x": -40.26872143725556, "y": -27.62715899792655, "z": 19.13715769472878}, {"x": -40.15421517285824, "y": -27.82792483737745, "z": 19.05435116855215}, {"x": -40.03856812844394, "y": -28.02798672060126, "z": 18.9710509993536}, {"x": -39.92177402728388, "y": -28.22733707557946, "z": 18.88725905909464}, {"x": -39.80383340447202, "y": -28.42592697794899, "z": 18.80297695193411}, {"x": -39.68476969682364, "y": -28.62375376974538, "z": 18.71820667880392}, {"x": -39.56457452697759, "y": -28.82079191248917, "z": 18.63294997718472}, {"x": -39.44325959608721, "y": -29.01702050320897, "z": 18.54720896936881}, {"x": -39.320843992212, "y": -29.21240688598761, "z": 18.46098547514396}, {"x": -39.19734395369255, "y": -29.40695721100586, "z": 18.37428180635204}, {"x": -39.07276001707107, "y": -29.60063266358841, "z": 18.28709994281884}, {"x": -38.94712919389244, "y": -29.79342524936821, "z": 18.19944227480534}, {"x": -38.82046613179722, "y": -29.98532314285804, "z": 18.11131082965328}, {"x": -38.69278548448523, "y": -30.17632514654062, "z": 18.02270815968854}, {"x": -38.56411032471971, "y": -30.36640005348589, "z": 17.93363640640128}, {"x": -38.43447893664995, "y": -30.55556627190544, "z": 17.84409818918082}, {"x": -38.30389503431179, "y": -30.74381413807228, "z": 17.75409571942775}, {"x": -38.17239091603526, "y": -30.93114551941096, "z": 17.6636317152864}, {"x": -38.03999326847872, "y": -31.11756118672963, "z": 17.57270833862556}, {"x": -37.90671971864261, "y": -31.30309312748372, "z": 17.48132824947606}, {"x": -37.77257456725213, "y": -31.48773031711714, "z": 17.38949358050552}, {"x": -37.63759321723198, "y": -31.6715000918249, "z": 17.29720697192038}, {"x": -37.5017745102619, "y": -31.85442268458407, "z": 17.20447038247275}, {"x": -37.36512111336894, "y": -32.03652216128976, "z": 17.11128627455744}, {"x": -37.2276364455842, "y": -32.21780088641096, "z": 17.01765641290829}, {"x": -37.08932680305681, "y": -32.3983035015956, "z": 16.92358306938999}, {"x": -36.95016050594001, "y": -32.57803466337565, "z": 16.82906774561123}, {"x": -36.8101389092032, "y": -32.75700858038077, "z": 16.73411255332338}, {"x": -36.66924598205145, "y": -32.93523514346847, "z": 16.63871887411264}, {"x": -36.52745904817444, "y": -33.11273838879126, "z": 16.54288867628057}, {"x": -36.38474826475108, "y": -33.28949734287858, "z": 16.4466231477499}, {"x": -36.24111337098179, "y": -33.46552609904813, "z": 16.34992421893581}, {"x": -36.09651568664984, "y": -33.64081839675479, "z": 16.25279309692775}, {"x": -35.95093778363996, "y": -33.81536367484789, "z": 16.15523171568925}, {"x": -35.80436543857508, "y": -33.98913586776203, "z": 16.05724131020839}, {"x": -35.65678991554049, "y": -34.16214318939397, "z": 15.95882395600634}, {"x": -35.50817652584563, "y": -34.33435043925856, "z": 15.85998095253397}, {"x": -35.35853336303482, "y": -34.50574036215767, "z": 15.76071441522442}, {"x": -35.20784573770241, "y": -34.6762933942691, "z": 15.66102576388502}, {"x": -35.05610361387021, "y": -34.84599623863245, "z": 15.56091732385608}, {"x": -34.90329933087431, "y": -35.01480305948252, "z": 15.46039062061232}, {"x": -34.74945166029397, "y": -35.18270955563332, "z": 15.35944808734508}, {"x": -34.59453994901238, "y": -35.34968841541581, "z": 15.25809137555883}, {"x": -34.43857669522306, "y": -35.51571277603973, "z": 15.15632307044568}, {"x": -34.28157026530702, "y": -35.68075309473164, "z": 15.05414489833344}, {"x": -34.12353141016268, "y": -35.84480708027108, "z": 14.95155959479514}, {"x": -33.96445317762173, "y": -36.00783155335645, "z": 14.84856906748018}, {"x": -33.80437258389131, "y": -36.16981221238861, "z": 14.74517621726863}, {"x": -33.64329273794293, "y": -36.33073431717177, "z": 14.64138300285357}, {"x": -33.48122879648995, "y": -36.49058325686163, "z": 14.53719244880676}, {"x": -33.31819866167731, "y": -36.64932476292657, "z": 14.43260667868841}, {"x": -33.1542390975096, "y": -36.80696642227981, "z": 14.32762885780234}, {"x": -32.98934768139485, "y": -36.963488322469, "z": 14.22226119360549}, {"x": -32.82356385646757, "y": -37.11887819237784, "z": 14.11650701285131}, {"x": -32.65691159772343, "y": -37.27313123162649, "z": 14.01036862933077}, {"x": -32.48941450820332, "y": -37.42626252641288, "z": 13.90384938172564}, {"x": -32.32108234056577, "y": -37.5782524408023, "z": 13.79695159434193}, {"x": -32.15196227885769, "y": -37.72911757676935, "z": 13.68967870390935}, {"x": -31.98205719940864, "y": -37.87887111812807, "z": 13.58203303795739}, {"x": -31.81138826744676, "y": -38.02752406296392, "z": 13.47401794797683}, {"x": -31.63997110307751, "y": -38.17508051446864, "z": 13.36563565231489}, {"x": -31.46782707908243, "y": -38.32158055853166, "z": 13.25688940670893}, {"x": -31.29493666381614, "y": -38.46703076058548, "z": 13.14778122055439}, {"x": -31.1213206143732, "y": -38.61144807666484, "z": 13.03831414989303}, {"x": -30.9469688351022, "y": -38.75485432196, "z": 12.92849005188704}, {"x": -30.77187141122182, "y": -38.89727455856737, "z": 12.81831185447622}, {"x": -30.59600713974394, "y": -39.03870191558616, "z": 12.7077811683163}, {"x": -30.4193831016407, "y": -39.17916058825314, "z": 12.59690073737997}, {"x": -30.24195807381944, "y": -39.31865645038677, "z": 12.48567208339548}, {"x": -30.06372195561729, "y": -39.45718403831069, "z": 12.37409790723263}, {"x": -29.88465646605358, "y": -39.59473388508039, "z": 12.2621796520497}, {"x": -29.70475039869795, "y": -39.73131705762572, "z": 12.14992006694138}, {"x": -29.52396547726726, "y": -39.86690624608083, "z": 12.0373206719334}, {"x": -29.34231121353342, "y": -40.00148926016963, "z": 11.92438423996397}, {"x": -29.15976220986485, "y": -40.13505630666211, "z": 11.81111231885745}, {"x": -28.97630725554697, "y": -40.2675903436904, "z": 11.69750784943367}, {"x": -28.79193389624096, "y": -40.39905372260621, "z": 11.58357254333725}, {"x": -28.60665689055232, "y": -40.52944184191451, "z": 11.46930945246188}, {"x": -28.42044750148512, "y": -40.65872906200963, "z": 11.35472040188317}, {"x": -28.2333205163421, "y": -40.78688522741494, "z": 11.23980860761666}, {"x": -28.04527646013371, "y": -40.9138880249906, "z": 11.12457600565525}, {"x": -27.85632217346424, "y": -41.03972862712636, "z": 11.00902591916558}, {"x": -27.6664467994594, "y": -41.16436532607918, "z": 10.89316044047235}, {"x": -27.47568640333509, "y": -41.28778063662176, "z": 10.77698310514863}, {"x": -27.28403532424894, "y": -41.4099607360366, "z": 10.66049611528338}, {"x": -27.09150998053936, "y": -41.5308815243448, "z": 10.54370308792256}, {"x": -26.89812425442851, "y": -41.65051230973098, "z": 10.426606358216}, {"x": -26.70391124448128, "y": -41.76885290765653, "z": 10.30920973350804}, {"x": -26.50886385400157, "y": -41.8858794789298, "z": 10.19151564705523}, {"x": -26.31302445873201, "y": -42.00157053623605, "z": 10.07352804852299}, {"x": -26.11641168690971, "y": -42.1159203817234, "z": 9.955249550843291}, {"x": -25.91905096013055, "y": -42.22892896643793, "z": 9.836684218707594}, {"x": -25.72095469039297, "y": -42.34057326187391, "z": 9.717834678951274}, {"x": -25.52217434906825, "y": -42.45085975217049, "z": 9.598705112805364}, {"x": -25.32271306716943, "y": -42.5597952471692, "z": 9.479298283580611}, {"x": -25.12260436186794, "y": -42.66737603631775, "z": 9.359618409819273}, {"x": -24.92187185999098, "y": -42.77360622774609, "z": 9.239668228753699}, {"x": -24.72054764460163, "y": -42.87851516444114, "z": 9.119451964203723}, {"x": -24.518625017066, "y": -42.98210770103346, "z": 8.998972280475892}, {"x": -24.31614274951618, "y": -43.08439817080667, "z": 8.878233247274235}, {"x": -24.11309973438175, "y": -43.1854161209485, "z": 8.757237392904667}, {"x": -23.90950145328512, "y": -43.285183156127, "z": 8.635988693731962}, {"x": -23.70534090369949, "y": -43.38370512874189, "z": 8.514489493039774}, {"x": -23.5006362537645, "y": -43.48101404682453, "z": 8.392743517673502}, {"x": -23.295351492046, "y": -43.5771292937653, "z": 8.270752903366247}, {"x": -23.08948737275754, "y": -43.67205284208836, "z": 8.148521253292191}, {"x": -22.88302690148814, "y": -43.76579602538724, "z": 8.026050547944108}, {"x": -22.67595820228086, "y": -43.85837615825395, "z": 7.903344283630479}, {"x": -22.46824302604004, "y": -43.94977994235541, "z": 7.780404422120399}, {"x": -22.25989112397888, "y": -44.04000404242839, "z": 7.657234467943085}, {"x": -22.05086862626246, "y": -44.1290535486162, "z": 7.533836318120195}, {"x": -21.84116153371437, "y": -44.21691207171558, "z": 7.410213510393728}, {"x": -21.6307522551512, "y": -44.30355592114019, "z": 7.286368077773757}, {"x": -21.41964764619277, "y": -44.38898262237018, "z": 7.162303687362864}, {"x": -21.20781078442978, "y": -44.47317233301108, "z": 7.038022446331254}, {"x": -20.99525463768975, "y": -44.55609408788597, "z": 6.913528160408494}, {"x": -20.78197056482911, "y": -44.63773574478984, "z": 6.788823085252448}, {"x": -20.56795836519461, "y": -44.71808293210815, "z": 6.66391112245404}, {"x": -20.35320267779405, "y": -44.79709928174014, "z": 6.538794635585401}, {"x": -20.13773369274317, "y": -44.87476567483025, "z": 6.413477726658416}, {"x": -19.92153571738948, "y": -44.95107070797778, "z": 6.287962943858012}, {"x": -19.70462326973912, "y": -45.02598200702096, "z": 6.16225447629865}, {"x": -19.48700484563561, "y": -45.09947530386061, "z": 6.036354965863441}, {"x": -19.26870530515118, "y": -45.17154334603998, "z": 5.910268777019833}, {"x": -19.04971241442566, "y": -45.24216076338992, "z": 5.783998694354135}, {"x": -18.83006616049453, "y": -45.31129940228505, "z": 5.657549187787902}, {"x": -18.60977649382751, "y": -45.37895462214943, "z": 5.530923214048593}, {"x": -18.38886490867472, "y": -45.44511152521574, "z": 5.404125435802568}, {"x": -18.16734356646626, "y": -45.50974600310465, "z": 5.277158876247449}, {"x": -17.94525997068408, "y": -45.5728548067598, "z": 5.150028272268909}, {"x": -17.72261309275442, "y": -45.63443818685792, "z": 5.022736814492178}, {"x": -17.4994402253507, "y": -45.69447670121805, "z": 4.895289394375395}, {"x": -17.27576653835817, "y": -45.75297251608333, "z": 4.767689254978372}, {"x": -17.05162572417222, "y": -45.80993826629059, "z": 4.639941362149584}, {"x": -16.82702008471117, "y": -45.86537183188261, "z": 4.512049021777211}, {"x": -16.60199894395119, "y": -45.91927728708281, "z": 4.384017173889072}, {"x": -16.37656816675108, "y": -45.97168321833544, "z": 4.255849049847117}, {"x": -16.15074599276912, "y": -46.02259833615947, "z": 4.127549560648925}, {"x": -15.92454079885856, "y": -46.0720329980638, "z": 3.999121890011305}, {"x": -15.69798196765115, "y": -46.12001660588091, "z": 3.870570788858299}, {"x": -15.47104565656161, "y": -46.16657416971531, "z": 3.741899225351367}, {"x": -15.24374729040916, "y": -46.21170949512467, "z": 3.613111775750331}, {"x": -15.01607815959904, "y": -46.25544994876504, "z": 3.484211254021762}, {"x": -14.78803119896897, "y": -46.297815441963, "z": 3.355202038744358}, {"x": -14.55957589590042, "y": -46.33880651580427, "z": 3.226086804505823}, {"x": -14.33072458950579, "y": -46.3784278798768, "z": 3.09686987763234}, {"x": -14.1014418141188, "y": -46.41669862644105, "z": 2.967553843664804}, {"x": -13.87171395781353, "y": -46.45360464219283, "z": 2.838142910661333}, {"x": -13.64152233006837, "y": -46.48913805913147, "z": 2.708639682203164}, {"x": -13.41086610215965, "y": -46.52329880721692, "z": 2.579048481082276}, {"x": -13.1797047208786, "y": -46.5560740740061, "z": 2.449371969911254}, {"x": -12.94804818027536, "y": -46.58743337477059, "z": 2.319614549097115}, {"x": -12.71588134843461, "y": -46.61737429854448, "z": 2.189779037739278}, {"x": -12.48319740568227, "y": -46.64587651413223, "z": 2.059869968068104}, {"x": -12.24997996001606, "y": -46.67291011371427, "z": 1.92989023754714}, {"x": -12.01625218692826, "y": -46.69845419035369, "z": 1.79984454352704}, {"x": -11.78199187487545, "y": -46.72249928955019, "z": 1.669736015493021}, {"x": -11.54721168024745, "y": -46.74500485586404, "z": 1.539569509045032}, {"x": -11.31191793485822, "y": -46.76595297637116, "z": 1.409348255087463}, {"x": -11.0761278881881, "y": -46.78532883609097, "z": 1.279077259945721}, {"x": -10.83982865654158, "y": -46.80310641005688, "z": 1.148759941355064}, {"x": -10.60305805905401, "y": -46.81925215535288, "z": 1.01840143293791}, {"x": -10.365820685406, "y": -46.83376339656903, "z": 0.8880053043766543}, {"x": -10.12813442845003, "y": -46.84661191226751, "z": 0.757576897790202}, {"x": -9.890014030217507, "y": -46.85777412624209, "z": 0.6271199552565737}, {"x": -9.651502378915897, "y": -46.8672389050476, "z": 0.4966398882108503}, {"x": -9.412596952863913, "y": -46.87500174521664, "z": 0.3661405715165391}, {"x": -9.173336738338053, "y": -46.8810306022366, "z": 0.2356276165857209}, {"x": -8.933748386822266, "y": -46.88532707391023, "z": 0.1051050519290962}, {"x": -8.69386360781341, "y": -46.8878880334528, "z": -0.02542141414390933}, {"x": -8.453693373539112, "y": -46.88870442925347, "z": -0.1559476155725829}, {"x": -8.21329271117305, "y": -46.88776938467283, "z": -0.2864677364569414}, {"x": -7.972674133639688, "y": -46.88510720985681, "z": -0.4169775915969926}, {"x": -7.731865847049382, "y": -46.88071094965825, "z": -0.5474713490500752}, {"x": -7.490892111963184, "y": -46.87459123369195, "z": -0.6779447542959968}, {"x": -7.249791795085171, "y": -46.86676884036667, "z": -0.8083919658337684}, {"x": -7.008558664067185, "y": -46.85726779401816, "z": -0.93880884187026}, {"x": -6.767225863967534, "y": -46.84608936116487, "z": -1.06918968394412}, {"x": -6.52580044504697, "y": -46.83327203957916, "z": -1.199530456350593}, {"x": -6.284286986358346, "y": -46.81883506399029, "z": -1.329825629094619}, {"x": -6.042673309786272, "y": -46.80279267851731, "z": -1.460071369883833}, {"x": -5.800980164807441, "y": -46.78515905980583, "z": -1.590262286727695}, {"x": -5.559180364635732, "y": -46.76596821161565, "z": -1.720394644068947}, {"x": -5.317267966184239, "y": -46.74521310353188, "z": -1.850463255457459}, {"x": -5.075230815666224, "y": -46.72290732668662, "z": -1.980464540548086}, {"x": -4.833063949655277, "y": -46.6990591636474, "z": -2.110393330793991}, {"x": -4.59072977651397, "y": -46.67366907991904, "z": -2.240246022035544}, {"x": -4.34823619754208, "y": -46.64671534289778, "z": -2.370017475097216}, {"x": -4.105564268111546, "y": -46.61821044695093, "z": -2.499704010594033}, {"x": -3.862701130400986, "y": -46.58813448939118, "z": -2.629300375416545}, {"x": -3.619631799100457, "y": -46.5564702215587, "z": -2.758802824501207}, {"x": -3.376370281938164, "y": -46.52320131277538, "z": -2.888206032868847}, {"x": -3.132889750999986, "y": -46.48832468895812, "z": -3.017506059889719}, {"x": -2.889198622107101, "y": -46.45179832295884, "z": -3.146697382396995}, {"x": -2.645301012558897, "y": -46.41361454005262, "z": -3.275775927395194}, {"x": -2.401204415783596, "y": -46.37375530819102, "z": -3.404736054452503}, {"x": -2.156896691736832, "y": -46.33219864504609, "z": -3.533573517332914}, {"x": -1.912409915802759, "y": -46.28891101449935, "z": -3.662282517645463}, {"x": -1.667743788049539, "y": -46.24389510791769, "z": -3.790858673993086}, {"x": -1.42290995813983, "y": -46.19711518099559, "z": -3.91929602099601}, {"x": -1.177924405490907, "y": -46.1485526146221, "z": -4.047589954593294}, {"x": -0.9328215046501063, "y": -46.09819238153132, "z": -4.175734380863851}, {"x": -0.6875974061823373, "y": -46.04602937207538, "z": -4.303724611384551}, {"x": -0.4422879045812509, "y": -45.99202535179684, "z": -4.431554403403047}, {"x": -0.1969180072291593, "y": -45.93618489627766, "z": -4.559218850152122}, {"x": 0.04848793760579843, "y": -45.87849381596646, "z": -4.686711591427424}, {"x": 0.2939145046161251, "y": -45.81894008255834, "z": -4.814027588769806}, {"x": 0.5393095203392311, "y": -45.75750930933724, "z": -4.941160321344335}, {"x": 0.784658819192422, "y": -45.69422175771174, "z": -5.068104629543571}, {"x": 1.029932205927756, "y": -45.62905723562924, "z": -5.194853974687152}, {"x": 1.275096397253769, "y": -45.562025581943, "z": -5.321403092911705}, {"x": 1.520112300103736, "y": -45.49313694231988, "z": -5.447745321019497}, {"x": 1.764973086227248, "y": -45.42240925192455, "z": -5.573875360458707}, {"x": 2.009634962472349, "y": -45.34983712247096, "z": -5.699786619499044}, {"x": 2.254077348911623, "y": -45.27546232557724, "z": -5.825473833889636}, {"x": 2.498286406943672, "y": -45.19929728784895, "z": -5.950930485414528}, {"x": 2.742253676376749, "y": -45.12136329647993, "z": -6.076151460981481}, {"x": 2.985950075493143, "y": -45.04167948213181, "z": -6.201130406376275}, {"x": 3.229389558901445, "y": -44.96028890958634, "z": -6.325862304262309}, {"x": 3.472567270782252, "y": -44.87718964762, "z": -6.450340979470401}, {"x": 3.715482746146915, "y": -44.79241476955804, "z": -6.574561663253458}, {"x": 3.958141996700765, "y": -44.7059816883242, "z": -6.698518366604974}, {"x": 4.200573827974788, "y": -44.61790520264638, "z": -6.822206387411271}, {"x": 4.442771271422369, "y": -44.52817620356722, "z": -6.945619846780889}, {"x": 4.684754359263914, "y": -44.43682380893357, "z": -7.068754110352494}, {"x": 4.926541872280812, "y": -44.3438322732483, "z": -7.191603292435699}, {"x": 5.168145954583863, "y": -44.24919941789436, "z": -7.314162713089993}, {"x": 5.409563724218722, "y": -44.15291707004147, "z": -7.436426510030397}, {"x": 5.650825732909432, "y": -44.05498981790462, "z": -7.558389921912835}, {"x": 5.891930531341881, "y": -43.9553784066465, "z": -7.680046931676153}, {"x": 6.132877695723067, "y": -43.85408574578599, "z": -7.801392608531525}, {"x": 6.373672242711076, "y": -43.75109208688258, "z": -7.922420850388029}, {"x": 6.614325313810935, "y": -43.6463797074331, "z": -8.043126588771207}, {"x": 6.854814259468537, "y": -43.53991732081366, "z": -8.163503565901806}, {"x": 7.095144338392966, "y": -43.43171131923541, "z": -8.283546562526853}, {"x": 7.33531201494881, "y": -43.32172083658905, "z": -8.403249207955007}, {"x": 7.575301083043799, "y": -43.20993217978911, "z": -8.522606074916412}, {"x": 7.815089197243188, "y": -43.0963268261708, "z": -8.64161059482449}, {"x": 8.054680002181088, "y": -42.98089773302843, "z": -8.760257234163232}, {"x": 8.294043515659672, "y": -42.86360335652292, "z": -8.87853934352616}, {"x": 8.533157225820744, "y": -42.74445034753163, "z": -8.99645117977142}, {"x": 8.772006254607403, "y": -42.62341481289761, "z": -9.113985920272334}, {"x": 9.010571253760437, "y": -42.50048257528719, "z": -9.23113770189299}, {"x": 9.248807865261494, "y": -42.3756333992208, "z": -9.347899547956741}, {"x": 9.48670158481613, "y": -42.24888141861472, "z": -9.464265392351397}, {"x": 9.724223794584042, "y": -42.12019497504414, "z": -9.5802281947123}, {"x": 9.961335714903667, "y": -41.98958174326455, "z": -9.695781806852741}, {"x": 10.19800358099355, "y": -41.8570402006632, "z": -9.810919035783598}, {"x": 10.43421044191113, "y": -41.72257840080703, "z": -9.925633571189326}, {"x": 10.66990794777801, "y": -41.58618179360207, "z": -10.03991820155667}, {"x": 10.90506491726493, "y": -41.44788734492186, "z": -10.15376657912607}, {"x": 11.13966066450006, "y": -41.30769505373097, "z": -10.26717147973541}, {"x": 11.3736660567759, "y": -41.16562453489555, "z": -10.38012658011278}, {"x": 11.60704390529918, "y": -41.02169277824325, "z": -10.49262477066094}, {"x": 11.8397902129411, "y": -40.87594199717068, "z": -10.60465978472063}, {"x": 12.07188553665951, "y": -40.72836997778837, "z": -10.71622460520334}, {"x": 12.30330927993343, "y": -40.57902064652941, "z": -10.827313139874}, {"x": 12.53406048187139, "y": -40.42791693370744, "z": -10.93791863250489}, {"x": 12.76414860441293, "y": -40.27508458008968, "z": -11.04803515611942}, {"x": 12.99356023957389, "y": -40.12052798452051, "z": -11.15765610069337}, {"x": 13.22230646584071, "y": -39.96429181184308, "z": -11.26677570257323}, {"x": 13.45040458299742, "y": -39.80636878440296, "z": -11.37538749810036}, {"x": 13.67785639288198, "y": -39.64677381668582, "z": -11.48348575758744}, {"x": 13.90466481854442, "y": -39.48551153852393, "z": -11.59106409693963}, {"x": 14.13085678035421, "y": -39.32259750002754, "z": -11.69811686134841}, {"x": 14.35643443192337, "y": -39.15800242498021, "z": -11.80463764905297}, {"x": 14.58139727429587, "y": -38.99174300185162, "z": -11.9106206640761}, {"x": 14.80576013387311, "y": -38.82380338612955, "z": -12.0160594451345}, {"x": 15.02952954497694, "y": -38.65417375030835, "z": -12.12094812838723}, {"x": 15.25269109245738, "y": -38.48283100705578, "z": -12.22528015046918}, {"x": 15.47525186542102, "y": -38.30978743352895, "z": -12.32904949722017}, {"x": 15.69721419265067, "y": -38.13500369739774, "z": -12.43224954473078}, {"x": 15.91855978982638, "y": -37.95847472718083, "z": -12.53487413714211}, {"x": 16.13927800083626, "y": -37.78018424572238, "z": -12.63691646594747}, {"x": 16.35936949098287, "y": -37.60012585181062, "z": -12.73837021924523}, {"x": 16.57880920017518, "y": -37.41826196238763, "z": -12.83922855902717}, {"x": 16.79757572332198, "y": -37.23460465554712, "z": -12.93948504551497}, {"x": 17.01566289641795, "y": -37.04912734064774, "z": -13.03913267860114}, {"x": 17.23304613113862, "y": -36.86181870178668, "z": -13.13816489367363}, {"x": 17.44969068163665, "y": -36.67266074853298, "z": -13.23657460437363}, {"x": 17.66558182722181, "y": -36.48166522747977, "z": -13.33435506087815}, {"x": 17.88069417992702, "y": -36.28879730788427, "z": -13.43149906384539}, {"x": 18.09498545252708, "y": -36.09406751815399, "z": -13.52799981597524}, {"x": 18.30843116418043, "y": -35.89746988197036, "z": -13.62385003789355}, {"x": 18.52100736004314, "y": -35.69900712239155, "z": -13.71904275595724}, {"x": 18.73266779919185, "y": -35.49866227522921, "z": -13.81357060411937}, {"x": 18.94337660782435, "y": -35.29646859145543, "z": -13.90742656033565}, {"x": 19.15311213131535, "y": -35.09241706660844, "z": -14.00060323153936}, {"x": 19.36183065922069, "y": -34.88652536008643, "z": -14.09309355234179}, {"x": 19.56949347924658, "y": -34.6788083335603, "z": -14.18489019147914}, {"x": 19.77608218055826, "y": -34.46930334335478, "z": -14.27598613650573}, {"x": 19.98156675868649, "y": -34.25800732222016, "z": -14.36637411662424}, {"x": 20.18590908645051, "y": -34.04496889387112, "z": -14.45604718204632}, {"x": 20.38910040260043, "y": -33.83021327758248, "z": -14.54499829422748}, {"x": 20.59112789620975, "y": -33.61377338613885, "z": -14.6332207346541}, {"x": 20.79196967215204, "y": -33.39566732711838, "z": -14.72070766567259}, {"x": 20.99162322731888, "y": -33.17595232102661, "z": -14.80745255537565}, {"x": 21.1900994939706, "y": -32.95463363874349, "z": -14.89344885097827}, {"x": 21.3873867053874, "y": -32.73174497535955, "z": -14.97869019981962}, {"x": 21.58349081594401, "y": -32.50730845890247, "z": -15.06317020753749}, {"x": 21.77843076088009, "y": -32.28135397492547, "z": -15.14688272866912}, {"x": 21.97221141372041, "y": -32.05387103588908, "z": -15.22982157653242}, {"x": 22.16483216447108, "y": -31.82489421100524, "z": -15.31198062539759}, {"x": 22.35631805795494, "y": -31.59441916056954, "z": -15.39335370365102}, {"x": 22.54667240039531, "y": -31.36244911664822, "z": -15.47393473508883}, {"x": 22.73589244251415, "y": -31.12897594395509, "z": -15.55371757081021}, {"x": 22.92398899863501, "y": -30.89402056885563, "z": -15.63269606505376}, {"x": 23.11097308935309, "y": -30.65755217950744, "z": -15.71086407132228}, {"x": 23.29682815084179, "y": -30.4195774328574, "z": -15.78821542076467}, {"x": 23.48155910500036, "y": -30.18008740154554, "z": -15.86474388227134}, {"x": 23.66516711688402, "y": -29.93907859605443, "z": -15.94044314749311}, {"x": 23.84763638218363, "y": -29.69652215516154, "z": -16.01530697239998}, {"x": 24.02895022921793, "y": -29.4524363969252, "z": -16.08932902482554}, {"x": 24.20911420398184, "y": -29.2067968619993, "z": -16.16250300426627}, {"x": 24.38810261741172, "y": -28.95959689275187, "z": -16.23482247231332}, {"x": 24.56589452287812, "y": -28.71082524364022, "z": -16.30628111258202}, {"x": 24.74247890123114, "y": -28.46049235283725, "z": -16.37687240170308}, {"x": 24.91783816897562, "y": -28.20856529349824, "z": -16.44658993525004}, {"x": 25.0919314770905, "y": -27.95505810445307, "z": -16.51542713967589}, {"x": 25.26474804476363, "y": -27.69996487165026, "z": -16.58337764613811}, {"x": 25.43626218928651, "y": -27.44328489218005, "z": -16.65043480058704}, {"x": 25.60643693600399, "y": -27.18500356673218, "z": -16.71659213816292}, {"x": 25.77523895246732, "y": -26.92515008555796, "z": -16.78184295406419}, {"x": 25.94265296636245, "y": -26.66370963781771, "z": -16.8461807987314}, {"x": 26.10862937405109, "y": -26.40069673345864, "z": -16.90959892353328}, {"x": 26.27313695229852, "y": -26.13612407061484, "z": -16.97209089331896}, {"x": 26.43615061589864, "y": -25.87001976398784, "z": -17.03365002545392}, {"x": 26.5976383188348, "y": -25.60237833085244, "z": -17.09426996055033}, {"x": 26.75755307558593, "y": -25.33324533882433, "z": -17.15394402552111}, {"x": 26.91588400340435, "y": -25.06264146922842, "z": -17.21266599981049}, {"x": 27.07259974591687, "y": -24.79059744710869, "z": -17.27042944716276}, {"x": 27.22767251717405, "y": -24.51713831423683, "z": -17.32722839514051}, {"x": 27.38108649843362, "y": -24.24232307189625, "z": -17.38305659467908}, {"x": 27.53284331786974, "y": -23.96616429928365, "z": -17.43790839089265}, {"x": 27.68291567765568, "y": -23.68870752596018, "z": -17.49177783738348}, {"x": 27.83130888889906, "y": -23.40998860199717, "z": -17.54465954026849}, {"x": 27.97802883585408, "y": -23.13004669299017, "z": -17.5965478207239}, {"x": 28.12307825500639, "y": -22.84889139016219, "z": -17.64743767433439}, {"x": 28.26645350799716, "y": -22.56657309341022, "z": -17.69732367318323}, {"x": 28.40818566243848, "y": -22.28310158550343, "z": -17.74620098087325}, {"x": 28.54827307977927, "y": -21.99849383696963, "z": -17.79406433307066}, {"x": 28.68672393975923, "y": -21.71276011422038, "z": -17.84090909148846}, {"x": 28.823551911365, "y": -21.42592911807793, "z": -17.88673007240219}, {"x": 28.95877575404753, "y": -21.13798285139768, "z": -17.9315227307665}, {"x": 29.09238182649216, "y": -20.84893958032612, "z": -17.97528198035072}, {"x": 29.22439062814025, "y": -20.55880029401094, "z": -18.01800334429517}, {"x": 29.35480455269832, "y": -20.2675646080733, "z": -18.05968169874998}, {"x": 29.48361873611929, "y": -19.97521499062618, "z": -18.10031256785658}, {"x": 29.61082233246809, "y": -19.68177371789175, "z": -18.13989087679262}, {"x": 29.73643168194491, "y": -19.38722089266333, "z": -18.17841221851332}, {"x": 29.86042155168076, "y": -19.09155423457646, "z": -18.21587149740026}, {"x": 29.98278504707288, "y": -18.79477066304112, "z": -18.25226432616845}, {"x": 30.10351481497992, "y": -18.4968786549032, "z": -18.2875856424457}, {"x": 30.22260141318251, "y": -18.19785069678137, "z": -18.32183106941481}, {"x": 30.34000732972606, "y": -17.89770302172552, "z": -18.35499550265078}, {"x": 30.45573400484841, "y": -17.59643208305933, "z": -18.38707466210618}, {"x": 30.56975490000329, "y": -17.29403520237397, "z": -18.41806351924913}, {"x": 30.6820434204357, "y": -16.99050418733709, "z": -18.44795778922178}, {"x": 30.79257086208311, "y": -16.68586425647583, "z": -18.47675240472178}, {"x": 30.90132913660743, "y": -16.38009982710822, "z": -18.50444316966485}, {"x": 31.00826726207263, "y": -16.07322328242978, "z": -18.53102504457797}, {"x": 31.11336431762735, "y": -15.76524825581245, "z": -18.5564938556997}, {"x": 31.21659254394487, "y": -15.45619380554897, "z": -18.58084463879582}, {"x": 31.31792230734836, "y": -15.14605570855656, "z": -18.60407335715328}, {"x": 31.41730452270247, "y": -14.83487447108248, "z": -18.62617507530338}, {"x": 31.51473069692305, "y": -14.52266615699365, "z": -18.64714582107741}, {"x": 31.61015676307727, "y": -14.20945503371313, "z": -18.66698083557769}, {"x": 31.70355281714653, "y": -13.89527017556756, "z": -18.6856763992749}, {"x": 31.79489277627121, "y": -13.58016511524712, "z": -18.70322795487639}, {"x": 31.88416892614991, "y": -13.26415601363998, "z": -18.71963205893374}, {"x": 31.97133888369953, "y": -12.94729340136256, "z": -18.73488449867555}, {"x": 32.05640431378284, "y": -12.62962286933634, "z": -18.74898217870938}, {"x": 32.13935476287233, "y": -12.31118754178437, "z": -18.76192120235928}, {"x": 32.22018507834759, "y": -11.9920161629507, "z": -18.77369892061759}, {"x": 32.29888402008702, "y": -11.67217284451064, "z": -18.78431189903979}, {"x": 32.37548170888505, "y": -11.35168448474879, "z": -18.7937578755215}, {"x": 32.44996824816374, "y": -11.03058413200737, "z": -18.80203371753927}, {"x": 32.52235855969513, "y": -10.70890590651405, "z": -18.8091375292265}, {"x": 32.59266747246991, "y": -10.38668954016689, "z": -18.81506647952289}, {"x": 32.66091888751374, "y": -10.063937373539, "z": -18.81981892846829}, {"x": 32.72710352485092, "y": -9.740683459409972, "z": -18.82339226735258}, {"x": 32.79125664470694, "y": -9.416945495565884, "z": -18.82578511603969}, {"x": 32.85338431800675, "y": -9.092731194632366, "z": -18.82699501007756}, {"x": 32.91349515885806, "y": -8.768041487377161, "z": -18.82702065777303}, {"x": 32.97158871788332, "y": -8.442904677015925, "z": -18.82585969714172}, {"x": 33.02769354626372, "y": -8.117311245059692, "z": -18.82351102474154}, {"x": 33.08179010271316, "y": -7.791266475734516, "z": -18.81997239188948}, {"x": 33.13388905946324, "y": -7.464779749755865, "z": -18.81524277447844}, {"x": 33.18399083536664, "y": -7.137859374781435, "z": -18.80932004242559}, {"x": 33.23209781533355, "y": -6.810488925562895, "z": -18.80220330946222}, {"x": 33.27818269502702, "y": -6.48268791043743, "z": -18.79389048249622}, {"x": 33.32226202848422, "y": -6.154457887784968, "z": -18.78438077799611}, {"x": 33.3643135449255, "y": -5.825796573422109, "z": -18.77367230224651}, {"x": 33.40432580493536, "y": -5.496706274018774, "z": -18.76176441865622}, {"x": 33.4422810740097, "y": -5.167208962460671, "z": -18.74865526912575}, {"x": 33.4781824106339, "y": -4.837292767993509, "z": -18.73434434948028}, {"x": 33.51198611964812, "y": -4.506969879389181, "z": -18.71882994966141}, {"x": 33.54368753013203, "y": -4.176257187662418, "z": -18.70211166475024}, {"x": 33.57326410360815, "y": -3.845165753717243, "z": -18.68418788737691}, {"x": 33.60069593899846, "y": -3.513696216358171, "z": -18.66505842233488}, {"x": 33.62594286973705, "y": -3.181883509554882, "z": -18.64472179262973}, {"x": 33.64900678904371, "y": -2.849740482737489, "z": -18.62317788987654}, {"x": 33.66984352218228, "y": -2.517283238868236, "z": -18.60042535706638}, {"x": 33.68843114155462, "y": -2.184542623306688, "z": -18.57646431541308}, {"x": 33.70474442451005, "y": -1.851560567005996, "z": -18.55129361491019}, {"x": 33.71877489732033, "y": -1.518352873698848, "z": -18.52491360057571}, {"x": 33.73047594647277, "y": -1.184966018666815, "z": -18.49732338897438}, {"x": 33.73985124372626, "y": -0.8514473245570919, "z": -18.46852366328798}, {"x": 33.74688069632524, "y": -0.5178339309491631, "z": -18.43851385155258}, {"x": 33.75155454991796, "y": -0.1841647938138894, "z": -18.4072950018966}, {"x": 33.75385624083604, "y": 0.1494936938781563, "z": -18.37486702589654}, {"x": 33.75381271129682, "y": 0.4831040551546096, "z": -18.3412315011428}, {"x": 33.75140663019851, "y": 0.8166242712587712, "z": -18.30638877093159}, {"x": 33.74665716780262, "y": 1.15000126967966, "z": -18.27034085318206}, {"x": 33.73957935871477, "y": 1.483188814624584, "z": -18.2330885776308}, {"x": 33.73020034010963, "y": 1.81616520397056, "z": -18.19463439986639}, {"x": 33.7185166798978, "y": 2.148883655866368, "z": -18.15497949680201}, {"x": 33.70457653723511, "y": 2.481310294943284, "z": -18.11412672005923}, {"x": 33.68839215201314, "y": 2.813429642633834, "z": -18.07207760034341}, {"x": 33.66998723476475, "y": 3.145221681875917, "z": -18.02883521402361}, {"x": 33.64937646097543, "y": 3.476654383566621, "z": -17.98440124093979}, {"x": 33.62660213915609, "y": 3.807727001050827, "z": -17.9387789992172}, {"x": 33.60165629554332, "y": 4.138429024331233, "z": -17.89197037686907}, {"x": 33.57456983778371, "y": 4.468740344649741, "z": -17.84397883074906}, {"x": 33.54535591759538, "y": 4.798656313080043, "z": -17.79480637774613}, {"x": 33.51403149335457, "y": 5.128183351803582, "z": -17.74445666309811}, {"x": 33.4805859247401, "y": 5.457303044600637, "z": -17.69293179972173}, {"x": 33.44505320596215, "y": 5.786012005980326, "z": -17.64023550305929}, {"x": 33.407420246607, "y": 6.114316760461011, "z": -17.58637004920276}, {"x": 33.36769314452449, "y": 6.442207471842704, "z": -17.53133936556639}, {"x": 33.3258696528292, "y": 6.769670740943829, "z": -17.47514582997438}, {"x": 33.28196548880393, "y": 7.09671726798758, "z": -17.41779346060845}, {"x": 33.2359495620487, "y": 7.423339491516336, "z": -17.35928479035125}, {"x": 33.18783570845589, "y": 7.74952116197531, "z": -17.29962397291535}, {"x": 33.13761085747792, "y": 8.075263920174809, "z": -17.23881363288425}, {"x": 33.08526725389662, "y": 8.400565227321135, "z": -17.1768580831181}, {"x": 33.0307791891079, "y": 8.725400776714633, "z": -17.11376013213786}, {"x": 32.97416106273872, "y": 9.049764243609161, "z": -17.04952420638805}, {"x": 32.91537572736692, "y": 9.37365193869207, "z": -16.98415317807479}, {"x": 32.85441397455389, "y": 9.697036605734777, "z": -16.91765160791262}, {"x": 32.79125813099549, "y": 10.01989531359977, "z": -16.85002254401637}, {"x": 32.72590303633805, "y": 10.34221841040277, "z": -16.78127071219718}, {"x": 32.65830626038105, "y": 10.66397283629779, "z": -16.71139930091064}, {"x": 32.58847635794832, "y": 10.98511959678453, "z": -16.64041325366213}, {"x": 32.51638925748234, "y": 11.30563835231958, "z": -16.56831598237759}, {"x": 32.44203306813411, "y": 11.62549160507953, "z": -16.49511262770092}, {"x": 32.36538854366661, "y": 11.9446261770046, "z": -16.42080686574272}, {"x": 32.28647507551221, "y": 12.26300640868084, "z": -16.34540426125264}, {"x": 32.20526676154314, "y": 12.58059412688302, "z": -16.2689088867362}, {"x": 32.12178041542423, "y": 12.89732942663148, "z": -16.19132665063589}, {"x": 32.03602495780656, "y": 13.21317063742747, "z": -16.11266205899427}, {"x": 31.9480218705744, "y": 13.52808371294593, "z": -16.03292150771071}, {"x": 31.85776783072389, "y": 13.84201743396594, "z": -15.9521099020089}, {"x": 31.76531304100931, "y": 14.15492714142931, "z": -15.87023404462736}, {"x": 31.67066927269647, "y": 14.4667925708263, "z": -15.78729931454613}, {"x": 31.57386756765531, "y": 14.77757640487346, "z": -15.70331287772439}, {"x": 31.47493306682205, "y": 15.08724519804553, "z": -15.61828033538085}, {"x": 31.37391497322417, "y": 15.39578787972706, "z": -15.53220908855341}, {"x": 31.27081519263521, "y": 15.70318972653449, "z": -15.44510499410532}, {"x": 31.16567942153984, "y": 16.00942115834256, "z": -15.35697562327396}, {"x": 31.05853156911603, "y": 16.31448159625497, "z": -15.26782695033121}, {"x": 30.94939929275924, "y": 16.618367505228, "z": -15.17766668885245}, {"x": 30.83828845593025, "y": 16.92106288905789, "z": -15.08650091747492}, {"x": 30.72524633570002, "y": 17.22256300924829, "z": -14.99433738053338}, {"x": 30.61026974729354, "y": 17.52287965917009, "z": -14.90118219186838}, {"x": 30.49337872669303, "y": 17.82199705178934, "z": -14.80704322207147}, {"x": 30.37458575491247, "y": 18.11991166970393, "z": -14.71192669276919}, {"x": 30.25391568710791, "y": 18.41663271665805, "z": -14.61584050691421}, {"x": 30.13135088127902, "y": 18.712158333605, "z": -14.51879092205913}, {"x": 30.00692011638975, "y": 19.00647334498531, "z": -14.42078593082387}, {"x": 29.88062033043683, "y": 19.29959203149695, "z": -14.32183184079157}, {"x": 29.75245380075332, "y": 19.59150989118424, "z": -14.22193667230079}, {"x": 29.62240998249328, "y": 19.88221388996145, "z": -14.12110683878049}, {"x": 29.49051315620554, "y": 20.17170286535794, "z": -14.01935047119314}, {"x": 29.35673603541107, "y": 20.45998418257252, "z": -13.91667399833615}, {"x": 29.22108248871945, "y": 20.74703389309571, "z": -13.8130855397052}, {"x": 29.08354568034072, "y": 21.03284795146156, "z": -13.70859161077234}, {"x": 28.94412523557091, "y": 21.31742234694453, "z": -13.60320041802113}, {"x": 28.80278900983859, "y": 21.60073833986366, "z": -13.49691851336317}, {"x": 28.65955274392807, "y": 21.88276769617532, "z": -13.38975416411405}, {"x": 28.51439471320679, "y": 22.16350872378775, "z": -13.28171404709088}, {"x": 28.36730533427382, "y": 22.44292960768812, "z": -13.17280648866593}, {"x": 28.21826971255162, "y": 22.72099722678264, "z": -13.06303820563174}, {"x": 28.06730094626812, "y": 22.99768562046674, "z": -12.95241770040678}, {"x": 27.91436914295446, "y": 23.27296841671692, "z": -12.84095194267445}, {"x": 27.75948795113266, "y": 23.54678900336075, "z": -12.72864961624794}, {"x": 27.60266004735615, "y": 23.81911959547877, "z": -12.61551789600208}, {"x": 27.44389654271739, "y": 24.08992204224016, "z": -12.50156578515961}, {"x": 27.28319236501014, "y": 24.35914889300698, "z": -12.38680076372434}, {"x": 27.12059146897796, "y": 24.62675220341097, "z": -12.27123211073681}, {"x": 26.95610000887641, "y": 24.89271117361076, "z": -12.15486768212018}, {"x": 26.78974836950204, "y": 25.15697450067795, "z": -12.03771715527633}, {"x": 26.62156717191682, "y": 25.41950936072649, "z": -11.91978866859688}, {"x": 26.45160513951822, "y": 25.68029421820584, "z": -11.80109211300819}, {"x": 26.27987220508275, "y": 25.93930971712242, "z": -11.68163587841686}, {"x": 26.10642364732313, "y": 26.19651747011998, "z": -11.56143006378269}, {"x": 25.93129231097404, "y": 26.45191947238635, "z": -11.44048320227231}, {"x": 25.75451391580903, "y": 26.70550141644103, "z": -11.31880548411762}, {"x": 25.57611142082088, "y": 26.95724956353687, "z": -11.19640553723984}, {"x": 25.39614256382129, "y": 27.2071575775257, "z": -11.07329356804226}, {"x": 25.21461665026193, "y": 27.45524148573698, "z": -10.94947815578901}, {"x": 25.03156697767373, "y": 27.70148198337713, "z": -10.82496946681262}, {"x": 24.8470213713084, "y": 27.94588634293336, "z": -10.69977612755402}, {"x": 24.66101246095968, "y": 28.18846297955287, "z": -10.57390828853698}, {"x": 24.47353892117567, "y": 28.42921703804345, "z": -10.44737448412655}, {"x": 24.28464219156933, "y": 28.66813726465125, "z": -10.32018481428954}, {"x": 24.09433101794076, "y": 28.9052506149724, "z": -10.1923478034425}, {"x": 23.90261734141623, "y": 29.1405532171467, "z": -10.06387345556803}, {"x": 23.70950718511614, "y": 29.37404589812543, "z": -9.934770226845762}, {"x": 23.51503185852181, "y": 29.60573417222313, "z": -9.805048152389281}, {"x": 23.31917656832983, "y": 29.83563680014049, "z": -9.674715664138985}, {"x": 23.12195733821958, "y": 30.06373566819288, "z": -9.543782656443076}, {"x": 22.92337996873583, "y": 30.29004641359873, "z": -9.412257492638915}, {"x": 22.72344905370463, "y": 30.51457196229866, "z": -9.280150053958929}, {"x": 22.5221465105221, "y": 30.73730973151808, "z": -9.147468641270468}]', 1009, 112897, '#C49A6C', '2025-11-29 08:12:56.907458', '2025-11-29 08:21:09.015156');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (8, '199', '[{"x": -0.1274050117418709, "y": 0.2893178073687911, "z": 0.03532924103153413}, {"x": -0.158182095450693, "y": 0.2777347279443002, "z": 0.03720550091193599}, {"x": -0.1875572135614597, "y": 0.2636865558586102, "z": 0.03875171992813567}, {"x": -0.2153318548803028, "y": 0.2473851448393054, "z": 0.03996700394139503}, {"x": -0.2413427092972225, "y": 0.2290546033447183, "z": 0.04085468892545321}, {"x": -0.2654606032814933, "y": 0.2089249760054965, "z": 0.04142172696281921}, {"x": -0.2875884098771769, "y": 0.1872268391609989, "z": 0.04167805288477971}, {"x": -0.3076582688181808, "y": 0.1641868978014173, "z": 0.04163596947321855}, {"x": -0.3256284159616622, "y": 0.140024576205227, "z": 0.04130957803649294}, {"x": -0.3414798676272195, "y": 0.1149495283832651, "z": 0.04071427084615747}, {"x": -0.3552131465565736, "y": 0.08915995514919564, "z": 0.0398662933105511}, {"x": -0.3668451803356114, "y": 0.0628415972726492, "z": 0.03878237721764989}, {"x": -0.3764064549795318, "y": 0.03616727278414959, "z": 0.03747944185074701}, {"x": -0.3839384679073798, "y": 0.009296835467245076, "z": 0.03597435698441101}, {"x": -0.3894914957599125, "y": -0.01762255372510617, "z": 0.03428376033064214}, {"x": -0.3931226723875081, "y": -0.04445593356513705, "z": 0.03242392155063215}, {"x": -0.3948943593122611, "y": -0.07107990191716787, "z": 0.03041064514843236}, {"x": -0.3948727834263157, "y": -0.09738188597910877, "z": 0.0282592051589407}, {"x": -0.3931269131447987, "y": -0.1232593680415753, "z": 0.02598430534203701}, {"x": -0.3897275434480718, "y": -0.1486190998763016, "z": 0.02360005946518658}, {"x": -0.3847465612532014, "y": -0.173376329509254, "z": 0.02111998711364581}, {"x": -0.3782563646248595, "y": -0.1974540567461107, "z": 0.01855702126103401}, {"x": -0.3703294119562396, "y": -0.2207823281245324, "z": 0.01592352453864063}, {"x": -0.3610378800710278, "y": -0.2432975776809989, "z": 0.01323131175084361}, {"x": -0.3504534129924088, "y": -0.2649420167687097, "z": 0.01049167669789338}, {"x": -0.338646945758909, "y": -0.2856630739076139, "z": 0.007715421793211131}, {"x": -0.3256885900666196, "y": -0.3054128840854592, "z": 0.004912889310116135}, {"x": -0.3116475706520351, "y": -0.3241478258938315, "z": 0.002093993373266426}, {"x": -0.2965922031952333, "y": -0.3418281042427699, "z": -0.0007317479664671993}, {"x": -0.2805899061314361, "y": -0.3584173760476287, "z": -0.003555181058864858}, {"x": -0.2637072401310001, "y": -0.3738824161422908, "z": -0.006367485730884605}, {"x": -0.2460099701684609, "y": -0.388192820682852, "z": -0.009160145355148915}, {"x": -0.2275631460761645, "y": -0.4013207454201499, "z": -0.0119249180726082}, {"x": -0.2084311982920932, "y": -0.4132406764047634, "z": -0.0146538092720692}, {"x": -0.1886780461875111, "y": -0.42392923092041, "z": -0.01733904538626135}, {"x": -0.1683672169182617, "y": -0.4333649867043083, "z": -0.019973049034375}, {"x": -0.1475619732014611, "y": -0.441528337794669, "z": -0.02254841552202602}, {"x": -0.126325448791713, "y": -0.4484013756388631, "z": -0.02505789069941839}, {"x": -0.1047207907299726, "y": -0.4539677943968086, "z": -0.02749435017565694}, {"x": -0.08281130767347726, "y": -0.4582128196808955, "z": -0.02985077989065064}, {"x": -0.06066062379406604, "y": -0.4611231602861885, "z": -0.03212025805517528}, {"x": -0.03833283785984741, "y": -0.462686982783837, "z": -0.03429593848404345}, {"x": -0.0158926871945143, "y": -0.4628939091786157, "z": -0.03637103536686149}, {"x": 0.006594283759502039, "y": -0.4617350381709694, "z": -0.03833880954567154}, {"x": 0.02906155056473107, "y": -0.4592029909178746, "z": -0.04019255639925257}, {"x": 0.05144143195918204, "y": -0.4552919825584195, "z": -0.04192559547057717}, {"x": 0.07366490956143233, "y": -0.4499979211622319, "z": -0.04353126201769517}, {"x": 0.09566144479321037, "y": -0.4433185361742928, "z": -0.04500290072016021}, {"x": 0.1173587939769953, "y": -0.4352535388698261, "z": -0.04633386183426346}, {"x": 0.1386828229357963, "y": -0.425804817797911, "z": -0.04751750016222706}, {"x": 0.1595573229066826, "y": -0.4149766726799283, "z": -0.04854717728475101}, {"x": 0.1799038302032231, "y": -0.4027760907331123, "z": -0.04941626760467871}, {"x": 0.1996414528544181, "y": -0.3892130698995565, "z": -0.05011816886387126}, {"x": 0.21868670844437, "y": -0.3743009939591063, "z": -0.05064631792746505}, {"x": 0.2369533786192748, "y": -0.3580570649629627, "z": -0.05099421278105592}, {"x": 0.254352387263678, "y": -0.3405027988023684, "z": -0.05115544185800748}, {"x": 0.2707917112286725, "y": -0.3216645899642555, "z": -0.05112372200598996}, {"x": 0.2861763347761624, "y": -0.3015743515401354, "z": -0.05089294661231013}, {"x": 0.3004082616396918, "y": -0.280270236231749, "z": -0.05045724563224861}, {"x": 0.3133866018399065, "y": -0.2577974432837223, "z": -0.04981105949518418}, {"x": 0.3250077541586175, "y": -0.2342091147678259, "z": -0.04894922908572768}, {"x": 0.335165709460657, "y": -0.2095673221859183, "z": -0.04786710418936595}, {"x": 0.3437525047871593, "y": -0.1839441406247275, "z": -0.04656067292125506}, {"x": 0.350658863161227, "y": -0.1574228022933411, "z": -0.04502671467550638}, {"x": 0.3557750590375657, "y": -0.1300989137517604, "z": -0.04326297897525595}, {"x": 0.3589920537788223, "y": -0.1020817110096263, "z": -0.04126839218421616}, {"x": 0.3602029486667392, "y": -0.07349531347075156, "z": -0.03904329324797026}, {"x": 0.3593048036223107, "y": -0.04447992106880873, "z": -0.03658969833522157}, {"x": 0.3562008664747819, "y": -0.01519287879866561, "z": -0.03391159229736566}, {"x": 0.3508032483184674, "y": 0.01419049039420408, "z": -0.03101524211225067}, {"x": 0.3430360629101771, "y": 0.04347640854538892, "z": -0.02790952381035847}, {"x": 0.3328390197443851, "y": 0.07245267029903506, "z": -0.02460624976638463}, {"x": 0.3201714192853827, "y": 0.1008893445238947, "z": -0.02112047779566638}, {"x": 0.3050164438037324, "y": 0.1285403298272325, "z": -0.01747077757988742}, {"x": 0.2873855694541984, "y": 0.1551459376059667, "z": -0.01367942423949539}, {"x": 0.2673228490939506, "y": 0.1804366451952108, "z": -0.009772484426910926}, {"x": 0.2449087397605573, "y": 0.2041380985843479, "z": -0.00577975853855101}, {"x": 0.2202630874331987, "y": 0.2259773450555527, "z": -0.001734545121735214}, {"x": 0.1935468522390247, "y": 0.2456901432119444, "z": 0.002326798289619799}, {"x": 0.1649621780089455, "y": 0.2630290425622192, "z": 0.006365509082561753}, {"x": 0.1347504951356865, "y": 0.2777717688028635, "z": 0.01034127883660467}, {"x": 0.1031884986751235, "y": 0.2897293242767211, "z": 0.01421328419687945}, {"x": 0.07058205253366143, "y": 0.2987531483575732, "z": 0.01794133113675931}, {"x": 0.03725830628393634, "y": 0.3047407055994415, "z": 0.02148703466682068}, {"x": 0.003556531858476312, "y": 0.3076389899602777, "z": 0.02481494564942992}, {"x": -0.03018165123372681, "y": 0.3074456384192926, "z": 0.02789353832938781}, {"x": -0.06362192545426314, "y": 0.3042076025074269, "z": 0.03069598680368018}, {"x": -0.09644610121776881, "y": 0.2980175843537073, "z": 0.0332006832653198}, {"x": -0.128359554225321, "y": 0.2890086578682549, "z": 0.03539148056728415}]', 89, 88, '#8C7853', '2025-11-29 08:13:00.183384', '2025-11-29 08:24:39.599796');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (13, '299', '[{"x": -0.5103237167464161, "y": -0.5125218681397521, "z": 0.0224043370195318}, {"x": -0.495936548811856, "y": -0.5266865191219927, "z": 0.02137960001101315}, {"x": -0.4811622967089359, "y": -0.5404400909797371, "z": 0.0203381759130563}, {"x": -0.4660127039989688, "y": -0.5537720873064623, "z": 0.01928088653522451}, {"x": -0.450499793001967, "y": -0.5666723514937186, "z": 0.01820856510338792}, {"x": -0.4346358548645465, "y": -0.5791310738274983, "z": 0.01712205558906849}, {"x": -0.4184334394659194, "y": -0.591138798286009, "z": 0.01602221203354847}, {"x": -0.4019053451712699, "y": -0.6026864290363081, "z": 0.01490989786731775}, {"x": -0.3850646084417553, "y": -0.6137652366275675, "z": 0.01378598522542495}, {"x": -0.3679244933103167, "y": -0.6243668638790421, "z": 0.01265135425928946}, {"x": -0.3504984807324132, "y": -0.634483331461098, "z": 0.01150689244552296}, {"x": -0.3328002578207213, "y": -0.6441070431679409, "z": 0.01035349389229956}, {"x": -0.3148437069727546, "y": -0.6532307908809423, "z": 0.009192058643805673}, {"x": -0.2966428949002719, "y": -0.6618477592217276, "z": 0.00802349198329204}, {"x": -0.2782120615692441, "y": -0.6699515298944275, "z": 0.006848703735240489}, {"x": -0.2595656090590512, "y": -0.6775360857167403, "z": 0.005668607567149855}, {"x": -0.240718090349474, "y": -0.6845958143396752, "z": 0.004484120291435831}, {"x": -0.2216841980439531, "y": -0.6911255116560714, "z": 0.003296161167931941}, {"x": -0.2024787530374559, "y": -0.6971203848981973, "z": 0.002105651207467839}, {"x": -0.1831166931371696, "y": -0.7025760554249376, "z": 0.0009135124769914745}, {"x": -0.1636130616441596, "y": -0.707488561199279, "z": -0.0002793325933056178}, {"x": -0.1439829959039656, "y": -0.7118543589569798, "z": -0.001471961900411674}, {"x": -0.1242417158340048, "y": -0.7156703260674939, "z": -0.002663454356027929}, {"x": -0.1044045124355218, "y": -0.7189337620883941, "z": -0.003852890570783498}, {"x": -0.08448673629770037, "y": -0.7216423900146907, "z": -0.005039353534710026}, {"x": -0.06450378610141308, "y": -0.7237943572246113, "z": -0.006221929293567407}, {"x": -0.04447109712996338, "y": -0.7253882361235352, "z": -0.007399707620620004}, {"x": -0.02440412979403851, "y": -0.7264230244879313, "z": -0.008571782683470268}, {"x": -0.004318358177964579, "y": -0.7268981455112659, "z": -0.009737253705571332}, {"x": 0.01577074138577567, "y": -0.7268134475539837, "z": -0.01089522562204099}, {"x": 0.03584770170693161, "y": -0.7261692035997678, "z": -0.01204480972941784}, {"x": 0.05589707608607938, "y": -0.7249661104204063, "z": -0.01318512432900175}, {"x": 0.07590344961485032, "y": -0.7232052874516851, "z": -0.01431529536343358}, {"x": 0.09585145042133289, "y": -0.7208882753828355, "z": -0.01543445704617694}, {"x": 0.1157257608543261, "y": -0.7180170344621505, "z": -0.01654175248357134}, {"x": 0.1355111286002462, "y": -0.7145939425214526, "z": -0.01763633428913698}, {"x": 0.1551923777265833, "y": -0.7106217927222175, "z": -0.01871736518981564}, {"x": 0.1747544196459439, "y": -0.7061037910261845, "z": -0.01978401862384565}, {"x": 0.1941822639948195, "y": -0.7010435533933874, "z": -0.02083547932996744}, {"x": 0.2134610294213271, "y": -0.6954451027105928, "z": -0.02187094392767271}, {"x": 0.2325759542762796, "y": -0.6893128654531969, "z": -0.02288962148821019}, {"x": 0.2515124072020433, "y": -0.6826516680836938, "z": -0.02389073409607145}, {"x": 0.270255897613741, "y": -0.6754667331898752, "z": -0.02487351740068462}, {"x": 0.2887920860674548, "y": -0.6677636753659839, "z": -0.02583722115804984}, {"x": 0.3071067945101736, "y": -0.6595484968400874, "z": -0.026781109762059}, {"x": 0.3251860164063176, "y": -0.6508275828509875, "z": -0.02770446276524368}, {"x": 0.3430159267357574, "y": -0.6416076967780315, "z": -0.02860657538870397}, {"x": 0.3605828918583243, "y": -0.6318959750272298, "z": -0.02948675902097556}, {"x": 0.377873479239885, "y": -0.6216999216771273, "z": -0.03034434170559614}, {"x": 0.394874467035114, "y": -0.6110274028879336, "z": -0.03117866861714207}, {"x": 0.4115728535221608, "y": -0.5998866410774337, "z": -0.03198910252550937}, {"x": 0.427955866384539, "y": -0.5882862088672605, "z": -0.03277502424820435}, {"x": 0.4440109718354572, "y": -0.5762350228031347, "z": -0.03353583309045446}, {"x": 0.4597258835800452, "y": -0.5637423368527166, "z": -0.03427094727291066}, {"x": 0.4750885716108891, "y": -0.5508177356847513, "z": -0.03497980434673832}, {"x": 0.4900872708323476, "y": -0.5374711277332225, "z": -0.03566186159590046}, {"x": 0.5047104895091785, "y": -0.5237127380502546, "z": -0.03631659642643589}, {"x": 0.5189470175350726, "y": -0.5095531009515498, "z": -0.03694350674253497}, {"x": 0.532785934516743, "y": -0.495003052458188, "z": -0.03754211130921583}, {"x": 0.5462166176692798, "y": -0.4800737225386726, "z": -0.03811195010140608}, {"x": 0.5592287495185231, "y": -0.4647765271551644, "z": -0.03865258463923059}, {"x": 0.5718123254062676, "y": -0.4491231601179117, "z": -0.03916359830931262}, {"x": 0.5839576607941437, "y": -0.4331255847519592, "z": -0.03964459667188996}, {"x": 0.595655398362076, "y": -0.4167960253802932, "z": -0.04009520775355122}, {"x": 0.606896514897247, "y": -0.4001469586276709, "z": -0.04051508232539895}, {"x": 0.6176723279694456, "y": -0.3831911045494145, "z": -0.04090389416647065}, {"x": 0.6279745023887977, "y": -0.3659414175895464, "z": -0.04126134031223095}, {"x": 0.637795056441861, "y": -0.3484110773727204, "z": -0.04158714128795666}, {"x": 0.6471263679020515, "y": -0.3306134793344276, "z": -0.04188104132686087}, {"x": 0.6559611798104457, "y": -0.3125622251940573, "z": -0.04214280857278458}, {"x": 0.6642926060230063, "y": -0.2942711132754599, "z": -0.04237223526729856}, {"x": 0.6721141365203113, "y": -0.2757541286797344, "z": -0.04256913792105549}, {"x": 0.6794196424759057, "y": -0.257025433315046, "z": -0.0427333574692391}, {"x": 0.6862033810794191, "y": -0.2380993557883781, "z": -0.04286475941095353}, {"x": 0.6924600001106271, "y": -0.2189903811642209, "z": -0.04296323393240299}, {"x": 0.6981845422606636, "y": -0.199713140595312, "z": -0.04302869601371014}, {"x": 0.703372449196627, "y": -0.1802824008306623, "z": -0.04306108551922856}, {"x": 0.7080195653658674, "y": -0.1607130536062314, "z": -0.04306036727120643}, {"x": 0.7121221415362858, "y": -0.1410201049237544, "z": -0.04302653110666533}, {"x": 0.7156768380690365, "y": -0.1212186642233727, "z": -0.04295959191736493}, {"x": 0.718680727920094, "y": -0.1013239334558777, "z": -0.04285958967273219}, {"x": 0.7211312993672532, "y": -0.0813511960605096, "z": -0.0427265894256454}, {"x": 0.7230264584592209, "y": -0.06131580585439882, "z": -0.04256068130097032}, {"x": 0.7243645311835536, "y": -0.04123317583989786, "z": -0.04236198046675533}, {"x": 0.7251442653503775, "y": -0.02111876693611978, "z": -0.04213062708800558}, {"x": 0.7253648321888574, "y": -0.0009880766411326791, "z": -0.0418667862629547}, {"x": 0.7250258276535417, "y": 0.01914337236863764, "z": -0.04157064794176415}, {"x": 0.7241272734377943, "y": 0.03926004369515516, "z": -0.04124242682758159}, {"x": 0.7226696176915968, "y": 0.05934639872492059, "z": -0.04088236225989285}, {"x": 0.7206537354410927, "y": 0.07938690817763995, "z": -0.04049071808010505}, {"x": 0.7180809287073318, "y": 0.09936606369039577, "z": -0.04006778247930518}, {"x": 0.714952926321769, "y": 0.1192683894301481, "z": -0.03961386782814468}, {"x": 0.7112718834361913, "y": 0.1390784537272295, "z": -0.03912931048880996}, {"x": 0.7070403807248633, "y": 0.1587808807223322, "z": -0.03861447060904881}, {"x": 0.7022614232768379, "y": 0.178360362019312, "z": -0.03806973189823507}, {"x": 0.6969384391765373, "y": 0.1978016683359668, "z": -0.0374955013854668}, {"x": 0.6910752777709044, "y": 0.217089661144781, "z": -0.03689220915970932}, {"x": 0.6846762076215953, "y": 0.2362093042954971, "z": -0.03626030809200515}, {"x": 0.6777459141408848, "y": 0.2551456756112091, "z": -0.03560027353978787}, {"x": 0.6702894969101892, "y": 0.2738839784495129, "z": -0.03491260303335588}, {"x": 0.6623124666802935, "y": 0.2924095532201769, "z": -0.03419781594456902}, {"x": 0.6538207420526208, "y": 0.310707888850606, "z": -0.03345645313785296}, {"x": 0.6448206458411033, "y": 0.328764634190277, "z": -0.03268907660360675}, {"x": 0.6353189011144557, "y": 0.346565609345207, "z": -0.03189626907412689}, {"x": 0.6253226269189, "y": 0.3640968169334034, "z": -0.03107863362217535}, {"x": 0.6148393336816474, "y": 0.381344453252138, "z": -0.03023679324233632}, {"x": 0.6038769182957098, "y": 0.3982949193477877, "z": -0.02937139041532184}, {"x": 0.5924436588868841, "y": 0.4149348319788966, "z": -0.02848308665540486}, {"x": 0.5805482092640393, "y": 0.4312510344630332, "z": -0.02757256204117397}, {"x": 0.5681995930541179, "y": 0.4472306073979373, "z": -0.02664051472982252}, {"x": 0.5554071975235718, "y": 0.4628608792473911, "z": -0.02568766045520311}, {"x": 0.542180767088252, "y": 0.4781294367821876, "z": -0.02471473200989666}, {"x": 0.5285303965140937, "y": 0.4930241353665182, "z": -0.02372247871156318}, {"x": 0.5144665238112466, "y": 0.507533109080096, "z": -0.02271166585386161}, {"x": 0.4999999228246342, "y": 0.5216447806662746, "z": -0.02168307414224476}, {"x": 0.4851416955242914, "y": 0.5353478712964135, "z": -0.02063749911495454}, {"x": 0.4699032639990964, "y": 0.5486314101407784, "z": -0.01957575054956222}, {"x": 0.4542963621579383, "y": 0.5614847437362409, "z": -0.01849865185541967}, {"x": 0.438333027142674, "y": 0.5738975451410845, "z": -0.01740703945240469}, {"x": 0.4220255904575843, "y": 0.5858598228672743, "z": -0.01630176213636699}, {"x": 0.4053866688204051, "y": 0.597361929580595, "z": -0.01518368043169764}, {"x": 0.3884291547403719, "y": 0.6083945705591399, "z": -0.01405366593146752}, {"x": 0.3711662068290786, "y": 0.6189488119007189, "z": -0.01291260062559832}, {"x": 0.3536112398503222, "y": 0.62901608846986, "z": -0.01176137621755158}, {"x": 0.3357779145154664, "y": 0.6385882115751926, "z": -0.01060089343003709}, {"x": 0.3176801270312251, "y": 0.6476573763681508, "z": -0.009432061300266466}, {"x": 0.2993319984071382, "y": 0.6562161689540703, "z": -0.008255796465290653}, {"x": 0.2807478635303737, "y": 0.6642575732069365, "z": -0.00707302243798484}, {"x": 0.261942260015866, "y": 0.6717749772792165, "z": -0.005884668874258508}, {"x": 0.2429299168401252, "y": 0.6787621797984262, "z": -0.004691670832088695}, {"x": 0.2237257427674393, "y": 0.6852133957422871, "z": -0.003494968022988356}, {"x": 0.2043448145775659, "y": 0.6911232619845883, "z": -0.002295504056546634}, {"x": 0.1848023651042663, "y": 0.6964868425040901, "z": -0.00109422567868271}, {"x": 0.1651137710944679, "y": 0.7012996332491153, "z": 0.0001079179957181983}, {"x": 0.1452945408981261, "y": 0.7055575666507443, "z": 0.001309976255110288}, {"x": 0.1253603019991791, "y": 0.7092570157778351, "z": 0.002510997567840318}, {"x": 0.1053267883983064, "y": 0.7123947981274156, "z": 0.003710030362241178}, {"x": 0.08520982785850593, "y": 0.7149681790443356, "z": 0.004906123809548439}, {"x": 0.06502532902479254, "y": 0.7169748747644182, "z": 0.006098328608904705}, {"x": 0.04478926842959984, "y": 0.7184130550757204, "z": 0.007285697773713996}, {"x": 0.02451767739572859, "y": 0.7192813455928987, "z": 0.008467287418590142}, {"x": 0.004226628848936262, "y": 0.7195788296400701, "z": 0.00964215754613953}, {"x": -0.01606777594750122, "y": 0.7193050497379765, "z": 0.01080937283280918}, {"x": -0.03634942072370114, "y": 0.7184600086916849, "z": 0.01196800341302307}, {"x": -0.05660218758679473, "y": 0.7170441702755029, "z": 0.01311712566082561}, {"x": -0.07680997044433921, "y": 0.715058459512214, "z": 0.01425582296824488}, {"x": -0.09695668845439577, "y": 0.712504262544219, "z": 0.01538318651958769}, {"x": -0.117026299489003, "y": 0.7093834260946759, "z": 0.01649831606087221}, {"x": -0.1370028135976775, "y": 0.7056982565171105, "z": 0.01760032066360616}, {"x": -0.1568703064574269, "y": 0.7014515184325679, "z": 0.01868831948211939}, {"x": -0.1766129327956852, "y": 0.6966464329538246, "z": 0.01976144250365694}, {"x": -0.1962149397725108, "y": 0.6912866754966758, "z": 0.02081883129044745}, {"x": -0.2156606803083383, "y": 0.6853763731788421, "z": 0.02185963971296149}, {"x": -0.2349346263435464, "y": 0.6789201018075445, "z": 0.02288303467358254}, {"x": -0.2540213820161045, "y": 0.67192288245732, "z": 0.02388819681991914}, {"x": -0.272905696743577, "y": 0.6643901776401748, "z": 0.02487432124699621}, {"x": -0.2915724781958063, "y": 0.6563278870706813, "z": 0.02584061818757246}, {"x": -0.3100068051446632, "y": 0.6477423430291602, "z": 0.02678631368984272}, {"x": -0.3281939401773436, "y": 0.6386403053266034, "z": 0.02771065028179636}, {"x": -0.3461193422598026, "y": 0.629028955875522, "z": 0.02861288762151768}, {"x": -0.363768679137057, "y": 0.6189158928714265, "z": 0.02949230313272996}, {"x": -0.3811278395572575, "y": 0.6083091245901147, "z": 0.0303481926249001}, {"x": -0.3981829453066084, "y": 0.5972170628064842, "z": 0.03117987089724108}, {"x": -0.4149203630424541, "y": 0.5856485158410845, "z": 0.03198667232596824}, {"x": -0.4313267159120323, "y": 0.5736126812410511, "z": 0.03276795143418194}, {"x": -0.4473888949447081, "y": 0.5611191381025523, "z": 0.03352308344377578}, {"x": -0.4630940702057382, "y": 0.5481778390423339, "z": 0.03425146480878118}, {"x": -0.4784297016998979, "y": 0.5347991018263629, "z": 0.03495251372958862}, {"x": -0.4933835500136022, "y": 0.5209936006639855, "z": 0.03562567064749889}, {"x": -0.5079436866844474, "y": 0.5067723571764218, "z": 0.03627039871908102}, {"x": -0.5220985042874096, "y": 0.4921467310488329, "z": 0.03688618426983514}, {"x": -0.5358367262272576, "y": 0.4771284103755939, "z": 0.03747253722668085}, {"x": -0.5491474162270829, "y": 0.4617294017088151, "z": 0.03802899152881716}, {"x": -0.5620199875032119, "y": 0.4459620198205411, "z": 0.03855510551652841}, {"x": -0.5744442116171744, "y": 0.4298388771894495, "z": 0.03905046229753884}, {"x": -0.5864102269958262, "y": 0.4133728732232527, "z": 0.03951467009055359}, {"x": -0.5979085471112113, "y": 0.3965771832283653, "z": 0.03994736254565967}, {"x": -0.6089300683121904, "y": 0.3794652471386799, "z": 0.04034819904129014}, {"x": -0.6194660773003556, "y": 0.3620507580156226, "z": 0.04071686495749437}, {"x": -0.629508258243439, "y": 0.3443476503317648, "z": 0.0410530719252744}, {"x": -0.639048699519544, "y": 0.3263700880508298, "z": 0.04135655805181643}, {"x": -0.6480799000863819, "y": 0.3081324525167112, "z": 0.04162708812143832}, {"x": -0.6565947754700416, "y": 0.2896493301645151, "z": 0.04186445377212371}, {"x": -0.6645866633682701, "y": 0.270935500066769, "z": 0.04206847364754785}, {"x": -0.6720493288637304, "y": 0.2520059213280196, "z": 0.04223899352452915}, {"x": -0.678976969243191, "y": 0.2328757203411141, "z": 0.04237588641586928}, {"x": -0.685364218419109, "y": 0.2135601779185207, "z": 0.04247905264857182}, {"x": -0.6912061509505757, "y": 0.1940747163120904, "z": 0.04254841991745748}, {"x": -0.6964982856611229, "y": 0.1744348861347031, "z": 0.04258394331421912}, {"x": -0.7012365888514189, "y": 0.1546563531972644, "z": 0.04258560533198556}, {"x": -0.7054174771054319, "y": 0.1347548852745309, "z": 0.04255341584548763}, {"x": -0.7090378196891974, "y": 0.1147463388132414, "z": 0.04248741206694341}, {"x": -0.7120949405418902, "y": 0.0946466455960156, "z": 0.04238765847780446}, {"x": -0.714586619859143, "y": 0.07447179937460022, "z": 0.04225424673656157}, {"x": -0.7165110952692711, "y": 0.05423784248576253, "z": 0.04208729556280853}, {"x": -0.7178670626035417, "y": 0.03396085246311333, "z": 0.04188695059779522}, {"x": -0.7186536762618103, "y": 0.01365692865812942, "z": 0.04165338424175206}, {"x": -0.7188705491755621, "y": -0.006657821116643885, "z": 0.0413867954682706}, {"x": -0.7185177523707305, "y": -0.02696729390932757, "z": 0.04108740961606006}, {"x": -0.7175958141331068, "y": -0.04725540490268868, "z": 0.04075547815842016}, {"x": -0.7161057187796095, "y": -0.06750610062787188, "z": 0.04039127845079325}, {"x": -0.7140489050390882, "y": -0.08770337210560265, "z": 0.039995113456779}, {"x": -0.7114272640467594, "y": -0.1078312679028052, "z": 0.03956731145301572}, {"x": -0.7082431369567562, "y": -0.1278739070928171, "z": 0.03910822571335036}, {"x": -0.704499312177665, "y": -0.147815492107633, "z": 0.03861823417273869}, {"x": -0.7001990222362784, "y": -0.1676403214708697, "z": 0.03809773907133316}, {"x": -0.69534594027516, "y": -0.187332802400426, "z": 0.03754716657923305}, {"x": -0.6899441761899426, "y": -0.2068774632700924, "z": 0.03696696640238671}, {"x": -0.6839982724126176, "y": -0.2262589659196706, "z": 0.03635761137014944}, {"x": -0.6775131993473418, "y": -0.2454621178034473, "z": 0.03571959700501488}, {"x": -0.6704943504656184, "y": -0.2644718839671967, "z": 0.03505344107504885}, {"x": -0.6629475370679595, "y": -0.2832733988442361, "z": 0.03435968312956644}, {"x": -0.6548789827193928, "y": -0.3018519778613064, "z": 0.03363888401860399}, {"x": -0.6462953173664165, "y": -0.3201931288454724, "z": 0.03289162539674545}, {"x": -0.6372035711432271, "y": -0.3382825632235301, "z": 0.03211850921187112}, {"x": -0.6276111678752528, "y": -0.3561062070057587, "z": 0.03132015717940519}, {"x": -0.6175259182882136, "y": -0.3736502115462013, "z": 0.03049721024264266}, {"x": -0.606956012931101, "y": -0.3909009640720138, "z": 0.0296503280197431}, {"x": -0.5959100148216268, "y": -0.4078450979747684, "z": 0.02878018823798198}, {"x": -0.5843968518228309, "y": -0.4244695028569482, "z": 0.0278874861558536}, {"x": -0.5724258087596661, "y": -0.4407613343272228, "z": 0.02697293397362271}, {"x": -0.5600065192844834, "y": -0.4567080235384414, "z": 0.0260372602329231}, {"x": -0.5471489575004393, "y": -0.4722972864626334, "z": 0.02508120920600129}, {"x": -0.5338634293519249, "y": -0.4875171328976531, "z": 0.02410554027520519}, {"x": -0.520160563791175, "y": -0.5023558752004571, "z": 0.02311102730331368}]', 225, 224.7, '#FFC649', '2025-11-29 08:13:11.778791', '2025-11-29 08:24:41.454569');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (2, '399', '[{"x": 0.3852591523363919, "y": 0.9080742366251103, "z": -0.00005651734053206637}, {"x": 0.3690834753697245, "y": 0.9145817046521206, "z": -0.00005743707650690118}, {"x": 0.3527957136744031, "y": 0.9208071880682539, "z": -0.00005828596207631605}, {"x": 0.3364007986843264, "y": 0.9267490675971398, "z": -0.00005902696105645984}, {"x": 0.3199035733384781, "y": 0.9324058098107597, "z": -0.00005962663593203231}, {"x": 0.3033087877147986, "y": 0.9377759220891886, "z": -0.00006005913676460849}, {"x": 0.2866211165691983, "y": 0.9428579052921785, "z": -0.00006030981962956461}, {"x": 0.2698451990162085, "y": 0.9476502174130703, "z": -0.00006037736035894576}, {"x": 0.2529856912785216, "y": 0.9521512597092999, "z": -0.00006027361682423902}, {"x": 0.2360473178270794, "y": 0.956359388410559, "z": -0.00006002134844828412}, {"x": 0.2190349083153144, "y": 0.9602729453793869, "z": -0.00005965067539080624}, {"x": 0.2019534153359251, "y": 0.963890296180578, "z": -0.00005919538482768044}, {"x": 0.1848079155605258, "y": 0.9672098654503559, "z": -0.00005868987943685218}, {"x": 0.1676036005149112, "y": 0.9702301642569892, "z": -0.00005816706210626463}, {"x": 0.1503457631167674, "y": 0.9729498086822185, "z": -0.00005765706863630766}, {"x": 0.1330397840984102, "y": 0.9753675314434556, "z": -0.00005718659083945774}, {"x": 0.1156911202608356, "y": 0.9774821891424585, "z": -0.00005677852248972461}, {"x": 0.09830529491802323, "y": 0.979292767436872, "z": -0.00005645172543832621}, {"x": 0.08088788997897599, "y": 0.9807983857396335, "z": -0.00005622079518963688}, {"x": 0.06344453871905223, "y": 0.9819983023106466, "z": -0.00005609577841791582}, {"x": 0.045980918241579, "y": 0.9828919199566954, "z": -0.00005608185129666111}, {"x": 0.02850274081044451, "y": 0.9834787920549577, "z": -0.00005617900528890983}, {"x": 0.01101574355837503, "y": 0.983758628298749, "z": -0.00005638180524062522}, {"x": -0.006474323548529518, "y": 0.9837312994571539, "z": -0.00005667928345807964}, {"x": -0.02396171129251404, "y": 0.9833968405311866, "z": -0.00005705501702391876}, {"x": -0.04144068597911045, "y": 0.9827554519008392, "z": -0.0000574874133033899}, {"x": -0.05890554510161348, "y": 0.98180749824975, "z": -0.00005795021354880289}, {"x": -0.07635063378602122, "y": 0.9805535050668065, "z": -0.00005841322863929746}, {"x": -0.09377036207199048, "y": 0.9789941522458142, "z": -0.00005884334868110673}, {"x": -0.1111592229559701, "y": 0.9771302637516074, "z": -0.00005920591040324064}, {"x": -0.1285118104190795, "y": 0.9749627917152824, "z": -0.00005946653607789198}, {"x": -0.1458228352392627, "y": 0.9724927931512181, "z": -0.00005959352944172516}, {"x": -0.1630871345061827, "y": 0.9697213984621574, "z": -0.00005956077569690581}, {"x": -0.1802996693910421, "y": 0.9666497735832607, "z": -0.00005935082503389791}, {"x": -0.1974555064808792, "y": 0.9632790816571944, "z": -0.00005895752007058811}, {"x": -0.2145497820791981, "y": 0.9596104535533081, "z": -0.00005838736028696862}, {"x": -0.2315776553696088, "y": 0.9556449763873174, "z": -0.00005765900330595601}, {"x": -0.2485342616229881, "y": 0.9513837040507208, "z": -0.00005680089575428302}, {"x": -0.2654146768869086, "y": 0.9468276859613003, "z": -0.00005584769412824352}, {"x": -0.2822139004646064, "y": 0.9419780045409663, "z": -0.00005483646665487067}, {"x": -0.2989268545193841, "y": 0.9368358113272826, "z": -0.00005380351118734178}, {"x": -0.3155483953913907, "y": 0.9314023551977191, "z": -0.00005278218119372547}, {"x": -0.3320733301420244, "y": 0.9256790008210085, "z": -0.00005180168806104583}, {"x": -0.3484964333446373, "y": 0.9196672387570881, "z": -0.0000508866127499872}, {"x": -0.36481246142965, "y": 0.9133686900106531, "z": -0.00005005681064718525}, {"x": -0.3810161638197762, "y": 0.9067851078456676, "z": -0.00004932745043261045}, {"x": -0.3971022913229701, "y": 0.8999183790292049, "z": -0.00004870901853210036}, {"x": -0.4130656028947787, "y": 0.8927705258740571, "z": -0.00004820720775185675}, {"x": -0.4289008721381488, "y": 0.8853437096844217, "z": -0.00004782268148194351}, {"x": -0.4446028949071146, "y": 0.8776402355133948, "z": -0.0000475507640961514}, {"x": -0.4601664991593393, "y": 0.8696625575199117, "z": -0.00004738115437214377}, {"x": -0.4755865577579495, "y": 0.8614132837136342, "z": -0.00004729778749358375}, {"x": -0.4908580042846224, "y": 0.8528951786009736, "z": -0.00004727897466006472}, {"x": -0.5059758512092406, "y": 0.8441111622962086, "z": -0.00004729792232013351}, {"x": -0.5209352091610613, "y": 0.8350643050558264, "z": -0.00004732368026369532}, {"x": -0.5357313057467595, "y": 0.8257578168028196, "z": -0.00004732250610565403}, {"x": -0.5503595024122114, "y": 0.8161950317900124, "z": -0.00004725958523623415}, {"x": -0.5648153080981797, "y": 0.8063793888911285, "z": -0.00004710102384579156}, {"x": -0.5790943886124529, "y": 0.7963144080741417, "z": -0.00004681603180223404}, {"x": -0.5931925705011161, "y": 0.7860036636307629, "z": -0.00004637920522500403}, {"x": -0.6071058377822974, "y": 0.7754507551087878, "z": -0.00004577277253615413}, {"x": -0.6208303196278953, "y": 0.7646592779435125, "z": -0.00004498856874209881}, {"x": -0.6343622676561997, "y": 0.7536327974042812, "z": -0.00004402938308597431}, {"x": -0.6476980235048996, "y": 0.7423748308652061, "z": -0.0000429092719147705}, {"x": -0.6608339805434325, "y": 0.7308888432842805, "z": -0.00004165254401180343}, {"x": -0.6737665465172962, "y": 0.7191782582446079, "z": -0.00004029143863688903}, {"x": -0.6864921146370684, "y": 0.7072464825758883, "z": -0.00003886291162713791}, {"x": -0.6990070482280716, "y": 0.6950969385711471, "z": -0.00003740520960873864}, {"x": -0.711307679683493, "y": 0.6827330963207774, "z": -0.0000359548974909356}, {"x": -0.7233903204725921, "y": 0.6701585002100322, "z": -0.00003454474364002262}, {"x": -0.7352512770790893, "y": 0.6573767868366658, "z": -0.00003320253099135401}, {"x": -0.7468868681096912, "y": 0.6443916946628617, "z": -0.00003195061247379523}, {"x": -0.7582934394338943, "y": 0.631207067545669, "z": -0.00003080592530961256}, {"x": -0.7694673760180415, "y": 0.6178268548269598, "z": -0.00002978019156280267}, {"x": -0.7804051105093398, "y": 0.604255110368921, "z": -0.00002888010302372301}, {"x": -0.7911031295006067, "y": 0.5904959922728656, "z": -0.00002810737267202045}, {"x": -0.8015579788872812, "y": 0.5765537642885431, "z": -0.00002745861341523685}, {"x": -0.8117662699514715, "y": 0.562432799179149, "z": -0.00002692507592760913}, {"x": -0.8217246878145071, "y": 0.5481375835272462, "z": -0.00002649234474711941}, {"x": -0.8314300036188456, "y": 0.5336727226412161, "z": -0.00002614015350088179}, {"x": -0.8408790911093623, "y": 0.5190429434592978, "z": -0.00002584252266333305}, {"x": -0.8500689471355335, "y": 0.5042530929120486, "z": -0.00002556842229182148}, {"x": -0.8589967141696647, "y": 0.4893081294314462, "z": -0.00002528309469742696}, {"x": -0.8676597016966576, "y": 0.4742131063760995, "z": -0.0000249500371912855}, {"x": -0.8760554028564431, "y": 0.4589731478759289, "z": -0.00002453347967195274}, {"x": -0.884181503333071, "y": 0.4435934193646429, "z": -0.00002400106023613096}, {"x": -0.8920358809555772, "y": 0.4280790961480285, "z": -0.00002332635827676093}, {"x": -0.8996165961245184, "y": 0.4124353334173682, "z": -0.00002249099454364483}, {"x": -0.9069218743395655, "y": 0.3966672404224066, "z": -0.00002148610652363451}, {"x": -0.9139500825730343, "y": 0.3807798606725147, "z": -0.00002031309626492936}, {"x": -0.9206997013231575, "y": 0.3647781595001426, "z": -0.0000189835971022899}, {"x": -0.9271692943835472, "y": 0.3486670200940065, "z": -0.00001751863249680285}, {"x": -0.9333574789187131, "y": 0.3324512487749182, "z": -0.00001594698809113017}, {"x": -0.939262899079546, "y": 0.3161355893857326, "z": -0.00001430291776438891}, {"x": -0.9448842065076072, "y": 0.2997247451387316, "z": -0.00001262344012613557}, {"x": -0.9502200501541183, "y": 0.2832234046352522, "z": -0.00001094559100759614}, {"x": -0.9552690759571307, "y": 0.2666362678714889, "z": -0.000009304011453169641}, {"x": -0.9600299347963963, "y": 0.2499680684076674, "z": -0.000007729147588677643}, {"x": -0.9645012956694345, "y": 0.2332235893509539, "z": -0.000006246161918440568}, {"x": -0.9686818606849572, "y": 0.2164076726846156, "z": -0.000004874481712091642}, {"x": -0.972570379120664, "y": 0.1995252230259842, "z": -0.000003627798601998264}, {"x": -0.9761656589448534, "y": 0.1825812077333878, "z": -0.00000251430030632776}, {"x": -0.9794665753708444, "y": 0.1655806554338229, "z": -0.000001536941864982011}, {"x": -0.9824720769399137, "y": 0.1485286547430619, "z": -0.0000006936209442435939}, {"x": -0.9851811902721572, "y": 0.1314303544243497, "z": 0.00000002281123864247903}, {"x": -0.9875930250475614, "y": 0.114290965589669, "z": 0.0000006247023386689795}, {"x": -0.9897067810208515, "y": 0.09711576577967752, "z": 0.000001129839636211277}, {"x": -0.9915217588622945, "y": 0.07991010381008894, "z": 0.000001561623400286503}, {"x": -0.9930373761459876, "y": 0.0626794031666897, "z": 0.000001948938748976381}, {"x": -0.9942531886152305, "y": 0.04542916071889635, "z": 0.000002325446117129594}, {"x": -0.995168914860849, "y": 0.02816493716275111, "z": 0.000002728047817443405}, {"x": -0.995784460190725, "y": 0.01089233659915661, "z": 0.000003194453588951798}, {"x": -0.9960999338409339, "y": -0.006383024693343342, "z": 0.000003760050186094875}, {"x": -0.9961156540555746, "y": -0.02365555663252839, "z": 0.000004454574633383747}, {"x": -0.9958321383620814, "y": -0.04091973435781381, "z": 0.000005299237536271639}, {"x": -0.995250080461061, "y": -0.05817013096819948, "z": 0.000006304841028942712}, {"x": -0.9943703184686585, "y": -0.07540143920500034, "z": 0.000007471137080220602}, {"x": -0.9931938003370566, "y": -0.09260848071203867, "z": 0.00000878734393810853}, {"x": -0.9917215512349911, "y": -0.1097862043228778, "z": 0.00001023353300055154}, {"x": -0.9899546457073051, "y": -0.1269296761096713, "z": 0.00001178255513628167}, {"x": -0.9878941857576939, "y": -0.1440340638886018, "z": 0.00001340223569797083}, {"x": -0.9855412851162069, "y": -0.1610946182916429, "z": 0.00001505764753711893}, {"x": -0.9828970596903724, "y": -0.178106652047248, "z": 0.00001671332048203196}, {"x": -0.9799626241050516, "y": -0.1950655189921659, "z": 0.00001833525978644484}, {"x": -0.9767390939619157, "y": -0.2119665944051047, "z": 0.00001989265024086528}, {"x": -0.973227592932033, "y": -0.2288052582021078, "z": 0.00002135914522207073}, {"x": -0.9694292632280745, "y": -0.2455768821521497, "z": 0.00002271369215754553}, {"x": -0.9653452776623187, "y": -0.2622768215756008, "z": 0.00002394091683130035}, {"x": -0.960976851553383, "y": -0.2789004111836573, "z": 0.00002503115532296374}, {"x": -0.9563252531809661, "y": -0.2954429640530616, "z": 0.00002598026360791288}, {"x": -0.9513918121487184, "y": -0.3118997723654495, "z": 0.00002678934291262487}, {"x": -0.9461779257217264, "y": -0.3282661084999144, "z": 0.00002746449788036684}, {"x": -0.9406850638396406, "y": -0.344537225292691, "z": 0.00002801670350482109}, {"x": -0.9349147740280055, "y": -0.3607083547084294, "z": 0.00002846180235267484}, {"x": -0.9288686878255111, "y": -0.3767747047969618, "z": 0.00002882058704551035}, {"x": -0.9225485305470106, "y": -0.3927314556887845, "z": 0.00002911884252937812}, {"x": -0.9159561360137047, "y": -0.4085737565492062, "z": 0.00002938713225306411}, {"x": -0.909093466956893, "y": -0.4242967267300411, "z": 0.00002966003535663105}, {"x": -0.9019626398011061, "y": -0.4398954653100143, "z": 0.00002997453326853016}, {"x": -0.8945659495536541, "y": -0.4553650728298513, "z": 0.0000303673807968338}, {"x": -0.8869058876529458, "y": -0.470700686324176, "z": 0.00003087162223838785}, {"x": -0.8789851449188789, "y": -0.4858975238340635, "z": 0.0000315128461348348}, {"x": -0.8708065949259437, "y": -0.5009509295704069, "z": 0.00003230607674481923}, {"x": -0.862373259516463, "y": -0.5158564090938902, "z": 0.00003325412518018897}, {"x": -0.8536882643369301, "y": -0.5306096470139205, "z": 0.00003434774586197283}, {"x": -0.8447547945736832, "y": -0.545206505999405, "z": 0.00003556734065333315}, {"x": -0.8355760587600979, "y": -0.559643011487553, "z": 0.00003688556897004152}, {"x": -0.8261552639639153, "y": -0.5739153287608703, "z": 0.00003827019227934656}, {"x": -0.8164956017332498, "y": -0.5880197381754534, "z": 0.00003968669270323625}, {"x": -0.8066002422613783, "y": -0.6019526120160621, "z": 0.00004110046432262999}, {"x": -0.7964723340822383, "y": -0.615710394331152, "z": 0.00004247855731743053}, {"x": -0.7861150073299585, "y": -0.6292895838585781, "z": 0.00004379103326363194}, {"x": -0.7755313794118609, "y": -0.6426867197444242, "z": 0.00004501199566393657}, {"x": -0.7647245624651556, "y": -0.6558983698287828, "z": 0.00004612033622877475}, {"x": -0.7536976721304107, "y": -0.6689211214627903, "z": 0.00004710021654332453}, {"x": -0.7424538371048545, "y": -0.6817515748975032, "z": 0.00004794130138113219}, {"x": -0.7309962088216491, "y": -0.6943863391695829, "z": 0.00004863877381147509}, {"x": -0.7193279705916271, "y": -0.7068220301502877, "z": 0.00004919318384339391}, {"x": -0.7074523457139729, "y": -0.7190552701383758, "z": 0.00004961019954596406}, {"x": -0.6953726044002038, "y": -0.7310826881814723, "z": 0.00004990033321877759}, {"x": -0.6830920697989049, "y": -0.7429009202838293, "z": 0.00005007870100714293}, {"x": -0.6706141238825025, "y": -0.7545066088420509, "z": 0.00005016484185926452}, {"x": -0.6579422143905164, "y": -0.7658964010727947, "z": 0.00005018257135572382}, {"x": -0.6450798643221949, "y": -0.77706694689808, "z": 0.00005015977808853845}, {"x": -0.6320306854606038, "y": -0.7880148977713936, "z": 0.00005012798880681655}, {"x": -0.6187983967802041, "y": -0.7987369091943224, "z": 0.0000501214506102974}, {"x": -0.6053868469461872, "y": -0.8092296508191869, "z": 0.00005017544866354526}, {"x": -0.5918000372876399, "y": -0.8194898281873411, "z": 0.00005032367257280495}, {"x": -0.5780421382985599, "y": -0.8295142180877153, "z": 0.00005059473629836612}, {"x": -0.5641174909125802, "y": -0.8392997146083797, "z": 0.00005100841910221288}, {"x": -0.5500305861159118, "y": -0.8488433767003845, "z": 0.00005157260910453813}, {"x": -0.5357860235749315, "y": -0.8581424644302295, "z": 0.00005228195411768913}, {"x": -0.5213884584675925, "y": -0.867194453683013, "z": 0.0000531186944249526}, {"x": -0.5068425500399691, "y": -0.8759970271687555, "z": 0.00005405533827187656}, {"x": -0.4921529228796887, "y": -0.8845480479955191, "z": 0.00005505826060106066}, {"x": -0.4773241451049246, "y": -0.8928455258947375, "z": 0.00005609125501665555}, {"x": -0.4623607214026633, "y": -0.9008875847406639, "z": 0.00005711842134344319}, {"x": -0.4472670958778626, "y": -0.9086724360069647, "z": 0.00005810620447346998}, {"x": -0.4320476597671489, "y": -0.916198359125373, "z": 0.00005902469215488549}, {"x": -0.4167067606422115, "y": -0.923463687616031, "z": 0.00005984838835020663}, {"x": -0.4012487114330223, "y": -0.9304667992361161, "z": 0.0000605566646281496}, {"x": -0.3856777988135508, "y": -0.9372061086331135, "z": 0.00006113402721611108}, {"x": -0.3699982911147379, "y": -0.9436800615434621, "z": 0.00006157026964954733}, {"x": -0.3542144460931014, "y": -0.9498871301093581, "z": 0.00006186053247906757}, {"x": -0.3383305187764515, "y": -0.9558258092371125, "z": 0.00006200526783763788}, {"x": -0.3223507694070156, "y": -0.9614946140478666, "z": 0.00006201010442363047}, {"x": -0.3062794713474179, "y": -0.9668920784116407, "z": 0.00006188561926089172}, {"x": -0.2901209187967066, "y": -0.9720167543960221, "z": 0.0000616470359094765}, {"x": -0.2738794343121759, "y": -0.9768672123130911, "z": 0.00006131387450485449}, {"x": -0.2575593764195883, "y": -0.9814420410219026, "z": 0.00006090956949281187}, {"x": -0.241165147942751, "y": -0.9857398483279955, "z": 0.00006046104225627241}, {"x": -0.2247012059738911, "y": -0.9897592617782062, "z": 0.00005999816796458087}, {"x": -0.2081720744642891, "y": -0.9934989309026896, "z": 0.00005955301428460402}, {"x": -0.1915823599865183, "y": -0.9969575329428192, "z": 0.00005915866973231572}, {"x": -0.1749367699926244, "y": -1.000133785050026, "z": 0.00005884745602501808}, {"x": -0.1582401306744211, "y": -1.003026466202887, "z": 0.00005864839066767846}, {"x": -0.141497398695535, "y": -1.005634450656066, "z": 0.00005858399724753837}, {"x": -0.1247136590795465, "y": -1.007956750798357, "z": 0.00005866695380816876}, {"x": -0.1078941027966549, "y": -1.009992561550734, "z": 0.00005889746991706489}, {"x": -0.0910439835856173, "y": -1.011741294041196, "z": 0.00005926237915652394}, {"x": -0.07416856224744109, "y": -1.01320258738196, "z": 0.00005973648502643814}, {"x": -0.05727305255676665, "y": -1.014376294944363, "z": 0.00006028585502633532}, {"x": -0.040362581662804, "y": -1.015262451201767, "z": 0.00006087204780239692}, {"x": -0.02344217057531804, "y": -1.01586123078782, "z": 0.00006145612132656506}, {"x": -0.006516732422051209, "y": -1.016172910521232, "z": 0.00006200166975089793}, {"x": 0.01040891808389858, "y": -1.016197840297131, "z": 0.00006247669561815192}, {"x": 0.02733005062948963, "y": -1.015936423806768, "z": 0.00006285451755009896}, {"x": 0.0442420052750781, "y": -1.015389107120943, "z": 0.00006311405570474761}, {"x": 0.06114018053691398, "y": -1.014556372305697, "z": 0.00006323980526195901}, {"x": 0.07802002394921043, "y": -1.013438733600207, "z": 0.00006322170689704476}, {"x": 0.09487702452926572, "y": -1.012036734497939, "z": 0.00006305501982798913}, {"x": 0.1117067062315857, "y": -1.010350944890994, "z": 0.00006274022451720122}, {"x": 0.1285046215179533, "y": -1.008381958083045, "z": 0.00006228293301091801}, {"x": 0.1452663444134261, "y": -1.006130387899644, "z": 0.00006169376191580454}, {"x": 0.1619874627361573, "y": -1.003596866325998, "z": 0.00006098812075104375}, {"x": 0.1786635694786302, "y": -1.000782042110187, "z": 0.000060185880232312}, {"x": 0.1952902534956834, "y": -0.9976865806463426, "z": 0.00005931090244881116}, {"x": 0.2118630896731367, "y": -0.9943111652962446, "z": 0.00005839042796878911}, {"x": 0.2283776286231661, "y": -0.9906565002392842, "z": 0.00005745431475787542}, {"x": 0.2448293857677901, "y": -0.9867233150679117, "z": 0.00005653410576862877}, {"x": 0.2612138295929514, "y": -0.9825123717218401, "z": 0.00005566186918911536}, {"x": 0.2775263691012184, "y": -0.9780244749287337, "z": 0.00005486872137177351}, {"x": 0.2937623412866015, "y": -0.9732604878733685, "z": 0.00005418293478029836}, {"x": 0.3099170009094072, "y": -0.9682213548991335, "z": 0.00005362759248464962}, {"x": 0.3259855167026209, "y": -0.9629081319932662, "z": 0.00005321791740813729}, {"x": 0.341962979454706, "y": -0.9573220230706815, "z": 0.0000529586797232457}, {"x": 0.3578444265940652, "y": -0.9514644159761265, "z": 0.00005284237206970209}, {"x": 0.3736248836791459, "y": -0.9453369086319876, "z": 0.00005284892758687631}, {"x": 0.3892994164418053, "y": -0.9389413159412536, "z": 0.00005294743668037857}, {"x": 0.4048631814799317, "y": -0.9322796535218751, "z": 0.00005309963636652583}, {"x": 0.4203114635050256, "y": -0.9253541027261013, "z": 0.00005326427562889995}, {"x": 0.4356396927499274, "y": -0.9181669675211656, "z": 0.00005340123313221026}, {"x": 0.4508434438445718, "y": -0.9107206342572941, "z": 0.00005347457473163587}, {"x": 0.4659184225840807, "y": -0.903017541151911, "z": 0.00005345429983129964}, {"x": 0.4808604479141484, "y": -0.8950601590528, "z": 0.00005331698197717329}, {"x": 0.4956654344924064, "y": -0.8868509814478152, "z": 0.00005304570450366408}, {"x": 0.5103293784725608, "y": -0.8783925203740617, "z": 0.00005262967389447533}, {"x": 0.5248483470147833, "y": -0.8696873051268548, "z": 0.00005206377758027012}, {"x": 0.53921847078339, "y": -0.8607378815681749, "z": 0.00005134822595454397}, {"x": 0.5534359381731481, "y": -0.8515468108120875, "z": 0.00005048831770583206}, {"x": 0.5674969899359482, "y": -0.8421166668932327, "z": 0.00004949429888169605}, {"x": 0.5813979130681812, "y": -0.832450033661613, "z": 0.00004838124420167641}, {"x": 0.5951350331662852, "y": -0.8225495015992045, "z": 0.00004716886912403128}, {"x": 0.6087047049057516, "y": -0.8124176655146335, "z": 0.0000458811809787394}, {"x": 0.6221033007815137, "y": -0.8020571241226874, "z": 0.00004454589569502835}, {"x": 0.6353271986714614, "y": -0.7914704823586391, "z": 0.00004319357867763876}, {"x": 0.6483727690536235, "y": -0.7806603569766767, "z": 0.00004185650477935257}, {"x": 0.6612363627783261, "y": -0.7696293856630356, "z": 0.00004056726105519942}, {"x": 0.6739143002299371, "y": -0.7583802396972539, "z": 0.00003935712876372488}, {"x": 0.6864028626750344, "y": -0.7469156401849614, "z": 0.00003825428040346861}, {"x": 0.6986982867884801, "y": -0.7352383779721032, "z": 0.00003728183006783428}, {"x": 0.71079676388557, "y": -0.7233513372577622, "z": 0.00003645580809555452}, {"x": 0.7226944461204541, "y": -0.7112575222613716, "z": 0.00003578321795561961}, {"x": 0.7343874623108035, "y": -0.6989600847880589, "z": 0.00003526047233121727}, {"x": 0.7458719452794725, "y": -0.6864623483763213, "z": 0.00003487264111854305}, {"x": 0.7571440700051008, "y": -0.6737678229322753, "z": 0.00003459396392641482}, {"x": 0.7682000978220275, "y": -0.6608802039940107, "z": 0.00003438987077470679}, {"x": 0.7790364183252302, "y": -0.6478033541148684, "z": 0.00003422032041299911}, {"x": 0.7896495800603988, "y": -0.6345412693831387, "z": 0.00003404379841780028}, {"x": 0.8000363045140918, "y": -0.6210980388814169, "z": 0.00003382109680206905}, {"x": 0.810193483577095, "y": -0.6074778061683229, "z": 0.00003351815963295522}, {"x": 0.8201181653301265, "y": -0.5936847393297483, "z": 0.0000331076997362485}, {"x": 0.8298075346699664, "y": -0.5797230118736375, "z": 0.00003256970983091377}, {"x": 0.8392588941976528, "y": -0.5655967931530935, "z": 0.00003189122594685536}, {"x": 0.8484696484558265, "y": -0.5513102452323763, "z": 0.00003106573278217942}, {"x": 0.8574372924018419, "y": -0.5368675229534667, "z": 0.00003009251029719958}, {"x": 0.8661594035368532, "y": -0.5222727746747458, "z": 0.00002897609547339722}, {"x": 0.8746336363723272, "y": -0.5075301421134493, "z": 0.0000277259222121985}, {"x": 0.882857717672998, "y": -0.4926437586226109, "z": 0.00002635611945700106}, {"x": 0.8908294409669848, "y": -0.4776177460006997, "z": 0.00002488538898938734}, {"x": 0.8985466590698076, "y": -0.4624562105890834, "z": 0.00002333684413530541}, {"x": 0.9060072738296091, "y": -0.4471632399598211, "z": 0.00002173766878999764}, {"x": 0.9132092229847775, "y": -0.4317429018609287, "z": 0.00002011845944664293}, {"x": 0.9201504648843701, "y": -0.4161992471316188, "z": 0.00001851214988477217}, {"x": 0.9268289626854825, "y": -0.4005363179042612, "z": 0.00001695249045307522}, {"x": 0.933242670241554, "y": -0.3847581615808072, "z": 0.00001547214816029356}, {"x": 0.9393895219937122, "y": -0.3688688500171686, "z": 0.00001410058228808052}, {"x": 0.9452674287318661, "y": -0.3528725024147358, "z": 0.00001286190351177157}, {"x": 0.9508742803220477, "y": -0.3367733098905848, "z": 0.00001177293003845133}, {"x": 0.9562079557535691, "y": -0.320575559610259, "z": 0.00001084162599086965}, {"x": 0.9612663403766011, "y": -0.3042836564748617, "z": 0.00001006607555513119}, {"x": 0.9660473498987159, "y": -0.2879021403312871, "z": 0.000009434133483216437}, {"x": 0.9705489602286532, "y": -0.2714356964124284, "z": 0.000008923890144795954}, {"x": 0.974769241238973, "y": -0.2548891565198894, "z": 0.00000850505633652805}, {"x": 0.9787063910070075, "y": -0.2382674889625018, "z": 0.000008141261773741297}, {"x": 0.9823587657558914, "y": -0.221575776956307, "z": 0.00000779306396214507}, {"x": 0.9857249005917088, "y": -0.2048191878577286, "z": 0.000007421247187785757}, {"x": 0.9888035178509721, "y": -0.1880029381336235, "z": 0.000006989872200652887}, {"x": 0.9915935229676627, "y": -0.1711322599987645, "z": 0.000006468602220997885}, {"x": 0.9940939908273365, "y": -0.1542123745746784, "z": 0.000005834060754111731}, {"x": 0.9963041472310353, "y": -0.1372484738818974, "z": 0.00000507025627067329}, {"x": 0.9982233499279306, "y": -0.1202457112899776, "z": 0.000004168313952160125}, {"x": 0.9998510722606754, "y": -0.1032091982612666, "z": 0.000003125829517355424}, {"x": 1.001186890713318, "y": -0.08614400462223598, "z": 0.00000194612497584265}, {"x": 1.002230476211653, "y": -0.0690551598808565, "z": 0.0000006375955983461643}, {"x": 1.002981588117435, "y": -0.05194765382055348, "z": -0.0000007867618630567729}, {"x": 1.003440069406963, "y": -0.03482643541321822, "z": -0.000002309635117997222}, {"x": 1.003605841379547, "y": -0.01769640987873951, "z": -0.000003909560527731739}, {"x": 1.003478896315345, "y": -0.0005624344831726771, "z": -0.000005561086056179916}, {"x": 1.003059286822792, "y": 0.01657068555841824, "z": -0.00000723509868580531}, {"x": 1.002347111298206, "y": 0.03369819898165426, "z": -0.00000889950615953091}, {"x": 1.00134249606282, "y": 0.05081540562200815, "z": -0.00001052044435373547}, {"x": 1.000045576258552, "y": 0.0679176464333378, "z": -0.00001206409597696172}, {"x": 0.9984564790488316, "y": 0.08500028513378366, "z": -0.000013499048019977}, {"x": 0.9965753133682557, "y": 0.1020586823086686, "z": -0.00001479892101576722}, {"x": 0.9944021697644067, "y": 0.1190881651692981, "z": -0.0000159448521565529}, {"x": 0.9919371317751636, "y": 0.1360839977824068, "z": -0.0000169273885652765}, {"x": 0.9891802976142751, "y": 0.1530413566401624, "z": -0.00001774746997811899}, {"x": 0.9861318088817584, "y": 0.1699553149875058, "z": -0.00001841639139004528}, {"x": 0.9827918822994923, "y": 0.1868208372329174, "z": -0.00001895483358379697}, {"x": 0.9791608409465516, "y": 0.2036327830475824, "z": -0.00001939116153339811}, {"x": 0.9752391424095646, "y": 0.2203859198747801, "z": -0.00001975921525121081}, {"x": 0.9710274020084932, "y": 0.2370749423217462, "z": -0.00002009580187892299}, {"x": 0.9665264096256175, "y": 0.2536944967763577, "z": -0.00002043809015821143}, {"x": 0.9617371389317868, "y": 0.270239209229546, "z": -0.00002082112297964783}, {"x": 0.9566607483735, "y": 0.2867037137551818, "z": -0.00002127567649323438}, {"x": 0.9512985743149798, "y": 0.3030826787973636, "z": -0.00002182666746743152}, {"x": 0.9456521179692868, "y": 0.3193708287362885, "z": -0.00002249222588426181}, {"x": 0.9397230286992202, "y": 0.3355629592169826, "z": -0.00002328342598316836}, {"x": 0.933513086518708, "y": 0.3516539461013107, "z": -0.00002420455077884317}, {"x": 0.9270241861271022, "y": 0.3676387491411166, "z": -0.00002525369358529137}, {"x": 0.9202583238389683, "y": 0.383512412202158, "z": -0.00002642349024827243}, {"x": 0.91321758771258, "y": 0.3992700620127249, "z": -0.00002770181559377685}, {"x": 0.9059041503059408, "y": 0.4149069071072853, "z": -0.00002907234302464623}, {"x": 0.8983202628953716, "y": 0.4304182380852489, "z": -0.00003051493709182395}, {"x": 0.890468249650854, "y": 0.445799429643929, "z": -0.00003200591589882307}, {"x": 0.8823505001283648, "y": 0.4610459441053862, "z": -0.00003351828287804509}, {"x": 0.8739694585396575, "y": 0.4761533353072968, "z": -0.00003502208664746501}, {"x": 0.8653276087427099, "y": 0.4911172507702034, "z": -0.00003648511591331467}, {"x": 0.8564274549953794, "y": 0.5059334291617851, "z": -0.00003787414928962275}, {"x": 0.8472715003745382, "y": 0.5205976897230892, "z": -0.00003915691539793821}, {"x": 0.837862227102771, "y": 0.5351059112155685, "z": -0.00004030473718689165}, {"x": 0.8282020848442366, "y": 0.5494540006110613, "z": -0.00004129554626102329}, {"x": 0.8182934928334038, "y": 0.5636378557368752, "z": -0.00004211666451460672}, {"x": 0.8081388585666233, "y": 0.5776533295922287, "z": -0.00004276664197409598}, {"x": 0.7977406106398611, "y": 0.5914962047702274, "z": -0.00004325563823871779}, {"x": 0.7871012388228807, "y": 0.6051621834818661, "z": -0.00004360427485008707}, {"x": 0.7762233330754392, "y": 0.6186468936802546, "z": -0.00004384132796508583}, {"x": 0.765109615208355, "y": 0.6319459075445195, "z": -0.00004400085057583404}, {"x": 0.7537629604637396, "y": 0.6450547668976652, "z": -0.00004411926541016267}, {"x": 0.7421864093163432, "y": 0.6579690108240966, "z": -0.00004423277023123478}, {"x": 0.7303831712809582, "y": 0.6706842024915103, "z": -0.00004437519477522973}, {"x": 0.7183566226533589, "y": 0.683195953742309, "z": -0.0000445763246566792}, {"x": 0.7061102996418489, "y": 0.6954999468730269, "z": -0.00004486066611947698}, {"x": 0.6936478878969484, "y": 0.7075919532491223, "z": -0.00004524662942130266}, {"x": 0.6809732093061587, "y": 0.7194678483632292, "z": -0.00004574611734285626}, {"x": 0.6680902070530114, "y": 0.7311236229763156, "z": -0.00004636449554548079}, {"x": 0.6550029301305177, "y": 0.7425553902451169, "z": -0.0000471008919175888}, {"x": 0.6417155185268046, "y": 0.753759389193479, "z": -0.00004794873685642316}, {"x": 0.6282321900581923, "y": 0.764731985360254, "z": -0.00004889643346523972}, {"x": 0.6145572293498591, "y": 0.775469669774622, "z": -0.00004992804713059231}, {"x": 0.6006949788831796, "y": 0.7859690574734879, "z": -0.00005102392868501389}, {"x": 0.586649831473101, "y": 0.7962268865815747, "z": -0.00005216122793249507}, {"x": 0.5724262230920404, "y": 0.8062400185682401, "z": -0.00005331430702956234}, {"x": 0.5580286246596635, "y": 0.8160054397111812, "z": -0.0000544551212015699}, {"x": 0.543461531321032, "y": 0.8255202630320634, "z": -0.00005555369487962652}, {"x": 0.5287294479690351, "y": 0.8347817290109636, "z": -0.00005657887852256883}, {"x": 0.5138368705794553, "y": 0.8437872023234803, "z": -0.00005749960566533583}, {"x": 0.4987882646129637, "y": 0.8525341610428472, "z": -0.00005828683937494606}, {"x": 0.4835880443376409, "y": 0.8610201749937882, "z": -0.00005891624399904472}, {"x": 0.4682405596931133, "y": 0.8692428722337485, "z": -0.00005937130899601902}, {"x": 0.4527500984046469, "y": 0.8771998973010502, "z": -0.00005964625960704471}, {"x": 0.437120908317825, "y": 0.8848888703174557, "z": -0.00005974784052696131}, {"x": 0.4213572381318837, "y": 0.8923073587047925, "z": -0.00005969522145914906}, {"x": 0.4054633871619395, "y": 0.8994528702236411, "z": -0.00005951788721718562}, {"x": 0.3894437513858058, "y": 0.9063228682979039, "z": -0.00005925210854789328}]', 366, 365.25, '#4A90E2', '2025-11-29 08:12:46.499456', '2025-11-29 08:24:43.732142');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (7, '499', '[{"x": -0.1302695383099308, "y": -1.460130435292058, "z": -0.02740369920490452}, {"x": -0.1157960077381217, "y": -1.460102102668955, "z": -0.02775802165909261}, {"x": -0.1013115766325066, "y": -1.459936345158808, "z": -0.02810973149444645}, {"x": -0.08681758419086803, "y": -1.459632830949708, "z": -0.02845878891675225}, {"x": -0.07231537741892508, "y": -1.459191241413488, "z": -0.02880515421602384}, {"x": -0.05780631100861436, "y": -1.458611271278601, "z": -0.02914878777334506}, {"x": -0.04329174721291885, "y": -1.457892628803766, "z": -0.02948965006769469}, {"x": -0.02877305571758919, "y": -1.457035035950892, "z": -0.02982770168253145}, {"x": -0.01425161350885216, "y": -1.45603822855595, "z": -0.03016290331245432}, {"x": 0.0002711952638376565, "y": -1.454901956498341, "z": -0.03049521577039579}, {"x": 0.01479397942949864, "y": -1.45362598386991, "z": -0.0308245999952008}, {"x": 0.02931534094028538, "y": -1.452210089143553, "z": -0.03115101705891242}, {"x": 0.04383387501867415, "y": -1.450654065340343, "z": -0.03147442817349106}, {"x": 0.05834817030849996, "y": -1.44895772019475, "z": -0.03179479469754028}, {"x": 0.07285680903105898, "y": -1.447120876318775, "z": -0.03211207814366734}, {"x": 0.08735836714572143, "y": -1.445143371365828, "z": -0.03242624018628332}, {"x": 0.1018514145137607, "y": -1.443025058193746, "z": -0.03273724266922104}, {"x": 0.1163345150653378, "y": -1.440765805025404, "z": -0.03304504761303065}, {"x": 0.1308062269706914, "y": -1.438365495606416, "z": -0.03334961722236787}, {"x": 0.1452651028159255, "y": -1.435824029361235, "z": -0.03365091389372778}, {"x": 0.1597096897825556, "y": -1.433141321548902, "z": -0.03394890022324999}, {"x": 0.1741385298300766, "y": -1.430317303417817, "z": -0.03424353901425198}, {"x": 0.1885501598820982, "y": -1.427351922357792, "z": -0.03453479328463363}, {"x": 0.2029431120172449, "y": -1.424245142049045, "z": -0.03482262627465716}, {"x": 0.217315913665032, "y": -1.42099694260925, "z": -0.0351070014552735}, {"x": 0.2316670878054763, "y": -1.417607320739179, "z": -0.03538788253647917}, {"x": 0.245995153171303, "y": -1.414076289866002, "z": -0.03566523347512702}, {"x": 0.2602986244532676, "y": -1.410403880283262, "z": -0.03593901848236648}, {"x": 0.2745760125100695, "y": -1.406590139287995, "z": -0.03620920203143466}, {"x": 0.2888258245831622, "y": -1.402635131316091, "z": -0.03647574886604026}, {"x": 0.3030465645152467, "y": -1.39853893807591, "z": -0.03673862400882157}, {"x": 0.3172367329716533, "y": -1.394301658678758, "z": -0.03699779276943375}, {"x": 0.3313948276653422, "y": -1.389923409765005, "z": -0.03725322075251584}, {"x": 0.3455193435863926, "y": -1.385404325626393, "z": -0.03750487386596633}, {"x": 0.3596087732354636, "y": -1.380744558326009, "z": -0.03775271832940819}, {"x": 0.3736616068600694, "y": -1.375944277816269, "z": -0.037996720682395}, {"x": 0.3876763326936216, "y": -1.371003672053486, "z": -0.03823684779228204}, {"x": 0.4016514371984001, "y": -1.36592294710784, "z": -0.03847306686223035}, {"x": 0.4155854053132334, "y": -1.360702327269371, "z": -0.03870534543974508}, {"x": 0.4294767207051317, "y": -1.355342055151012, "z": -0.03893365142550502}, {"x": 0.443323866023434, "y": -1.349842391788288, "z": -0.03915795308183172}, {"x": 0.457125323156129, "y": -1.344203616734322, "z": -0.03937821904057159}, {"x": 0.4708795734894823, "y": -1.338426028149988, "z": -0.03959441831091858}, {"x": 0.4845850981719235, "y": -1.332509942890384, "z": -0.03980652028773635}, {"x": 0.4982403783815398, "y": -1.326455696588345, "z": -0.04001449476018479}, {"x": 0.5118438955959509, "y": -1.320263643734028, "z": -0.04021831192007483}, {"x": 0.5253941318646121, "y": -1.313934157749012, "z": -0.04041794236988263}, {"x": 0.5388895700846007, "y": -1.307467631054637, "z": -0.04061335713090944}, {"x": 0.5523286942800042, "y": -1.300864475135819, "z": -0.04080452765174024}, {"x": 0.5657099898836493, "y": -1.294125120601374, "z": -0.04099142581655427}, {"x": 0.5790319440203638, "y": -1.287250017240176, "z": -0.04117402395293553}, {"x": 0.5922930457925644, "y": -1.280239634071709, "z": -0.04135229483950884}, {"x": 0.6054917865693966, "y": -1.273094459390806, "z": -0.04152621171396696}, {"x": 0.6186266602792962, "y": -1.265815000807699, "z": -0.0416957482815444}, {"x": 0.6316961637045727, "y": -1.25840178528374, "z": -0.04186087872337683}, {"x": 0.6446987967770147, "y": -1.250855359161588, "z": -0.04202157770425548}, {"x": 0.6576330628750265, "y": -1.243176288188925, "z": -0.04217782037997719}, {"x": 0.6704974691234157, "y": -1.235365157536518, "z": -0.04232958240489899}, {"x": 0.6832905266958634, "y": -1.227422571811994, "z": -0.04247683993988356}, {"x": 0.6960107511189156, "y": -1.219349155069119, "z": -0.04261956966015819}, {"x": 0.708656662576836, "y": -1.211145550810993, "z": -0.04275774876273628}, {"x": 0.7212267862180982, "y": -1.202812421986183, "z": -0.0428913549737169}, {"x": 0.7337196524642358, "y": -1.194350450978529, "z": -0.04302036655587503}, {"x": 0.7461337973202099, "y": -1.185760339591934, "z": -0.04314476231630367}, {"x": 0.7584677626848729, "y": -1.177042809030262, "z": -0.04326452161353939}, {"x": 0.7707200966615425, "y": -1.16819859987114, "z": -0.04337962436417582}, {"x": 0.7828893538700488, "y": -1.159228472032866, "z": -0.04349005104958416}, {"x": 0.794974095760871, "y": -1.150133204735128, "z": -0.04359578272311785}, {"x": 0.8069728909303107, "y": -1.140913596454445, "z": -0.0436968010174406}, {"x": 0.818884315435288, "y": -1.131570464873754, "z": -0.04379308815136202}, {"x": 0.830706953107591, "y": -1.122104646824719, "z": -0.04388462693605639}, {"x": 0.8424393958685383, "y": -1.112516998222771, "z": -0.04397140078115078}, {"x": 0.8540802440445375, "y": -1.102808393996383, "z": -0.04405339370108209}, {"x": 0.8656281066827521, "y": -1.092979728011385, "z": -0.04413059032151247}, {"x": 0.8770816018658106, "y": -1.083031912989104, "z": -0.04420297588533207}, {"x": 0.8884393570256969, "y": -1.072965880416805, "z": -0.04427053625827115}, {"x": 0.8997000092577417, "y": -1.06278258045048, "z": -0.04433325793460746}, {"x": 0.9108622056345193, "y": -1.052482981811318, "z": -0.04439112804304916}, {"x": 0.921924603518088, "y": -1.042068071676615, "z": -0.04444413435223675}, {"x": 0.9328858708695749, "y": -1.03153885556448, "z": -0.0444922652754709}, {"x": 0.9437446865569769, "y": -1.020896357211439, "z": -0.0445355098751004}, {"x": 0.9544997406624308, "y": -1.010141618443191, "z": -0.04457385786723281}, {"x": 0.9651497347886034, "y": -0.9992756990397311, "z": -0.04460729962674657}, {"x": 0.9756933823626873, "y": -0.9882996765951332, "z": -0.04463582619200145}, {"x": 0.9861294089372871, "y": -0.977214646370854, "z": -0.04465942926886907}, {"x": 0.9964565524889134, "y": -0.9660217211417753, "z": -0.04467810123437692}, {"x": 1.006673563714982, "y": -0.9547220310361019, "z": -0.04469183514045857}, {"x": 1.0167792063291, "y": -0.9433167233707008, "z": -0.04470062471785747}, {"x": 1.026772257353652, "y": -0.9318069624816196, "z": -0.0447044643797867}, {"x": 1.036651507409402, "y": -0.9201939295480529, "z": -0.04470334922513608}, {"x": 1.046415761002967, "y": -0.9084788224089114, "z": -0.04469727504159113}, {"x": 1.056063836812675, "y": -0.896662855372955, "z": -0.04468623830901145}, {"x": 1.065594567971759, "y": -0.8847472590236393, "z": -0.04467023620274645}, {"x": 1.07500680234732, "y": -0.8727332800184906, "z": -0.04464926659625439}, {"x": 1.084299402815039, "y": -0.8606221808820091, "z": -0.04462332806303748}, {"x": 1.093471247531011, "y": -0.8484152397918819, "z": -0.04459241987859994}, {"x": 1.102521230201289, "y": -0.8361137503594754, "z": -0.04455654202281713}, {"x": 1.111448260347834, "y": -0.8237190214053769, "z": -0.04451569518227452}, {"x": 1.120251263569516, "y": -0.8112323767293306, "z": -0.04446988075197392}, {"x": 1.128929181798234, "y": -0.7986551548733588, "z": -0.0444191008364205}, {"x": 1.137480973551092, "y": -0.7859887088783304, "z": -0.04436335825056948}, {"x": 1.145905614178701, "y": -0.773234406035763, "z": -0.04430265652085193}, {"x": 1.154202096108675, "y": -0.7603936276358464, "z": -0.04423699988600296}, {"x": 1.162369429083614, "y": -0.7474677687105957, "z": -0.04416639329737589}, {"x": 1.170406640394092, "y": -0.7344582377707347, "z": -0.04409084241891821}, {"x": 1.178312775107567, "y": -0.7213664565366923, "z": -0.0440103536272704}, {"x": 1.186086896292883, "y": -0.7081938596652121, "z": -0.04392493401199554}, {"x": 1.193728085238893, "y": -0.6949418944721075, "z": -0.04383459137534414}, {"x": 1.20123544166633, "y": -0.6816120206503649, "z": -0.04373933423116829}, {"x": 1.208608083933934, "y": -0.6682057099830551, "z": -0.04363917180344105}, {"x": 1.21584514924015, "y": -0.6547244460518026, "z": -0.04353411402508128}, {"x": 1.222945793820052, "y": -0.641169723941918, "z": -0.04342417153704251}, {"x": 1.229909193135966, "y": -0.6275430499441489, "z": -0.04330935568700885}, {"x": 1.236734542061224, "y": -0.6138459412518605, "z": -0.04318967852739371}, {"x": 1.243421055057915, "y": -0.6000799256530911, "z": -0.04306515281301276}, {"x": 1.24996796634925, "y": -0.5862465412187703, "z": -0.04293579199882126}, {"x": 1.256374530085884, "y": -0.5723473359887818, "z": -0.042801610237569}, {"x": 1.26264002050522, "y": -0.5583838676558178, "z": -0.0426626223769951}, {"x": 1.268763732083862, "y": -0.5443577032454981, "z": -0.04251884395656409}, {"x": 1.274744979684255, "y": -0.5302704187922161, "z": -0.04237029120418163}, {"x": 1.280583098695905, "y": -0.5161235990119786, "z": -0.04221698103315848}, {"x": 1.28627744517008, "y": -0.50191883697342, "z": -0.04205893103903601}, {"x": 1.291827395946689, "y": -0.4876577337666242, "z": -0.04189615949567452}, {"x": 1.297232348773502, "y": -0.4733418981688551, "z": -0.04172868535064077}, {"x": 1.30249172241918, "y": -0.4589729463075657, "z": -0.0415565282206011}, {"x": 1.307604956780762, "y": -0.4445525013219843, "z": -0.04137970838711996}, {"x": 1.312571512984505, "y": -0.4300821930238346, "z": -0.04119824679241881}, {"x": 1.317390873478925, "y": -0.4155636575563035, "z": -0.04101216503452663}, {"x": 1.322062542120469, "y": -0.4009985370502027, "z": -0.04082148536192987}, {"x": 1.326586044252858, "y": -0.3863884792778317, "z": -0.04062623066822405}, {"x": 1.33096092678, "y": -0.3717351373063029, "z": -0.04042642448683457}, {"x": 1.335186758231373, "y": -0.3570401691512555, "z": -0.04022209098539253}, {"x": 1.339263128819553, "y": -0.3423052374300141, "z": -0.04001325495957906}, {"x": 1.343189650490884, "y": -0.3275320090129596, "z": -0.03979994182679682}, {"x": 1.346965956970263, "y": -0.3127221546736433, "z": -0.03958217762011234}, {"x": 1.350591703799593, "y": -0.2978773487391414, "z": -0.03935998898235535}, {"x": 1.354066568368524, "y": -0.2829992687409788, "z": -0.03913340315976966}, {"x": 1.357390249936937, "y": -0.268089595065634, "z": -0.03890244799489299}, {"x": 1.360562469650252, "y": -0.2531500106043235, "z": -0.03866715191910937}, {"x": 1.363582970548833, "y": -0.2381822004032971, "z": -0.03842754394552571}, {"x": 1.366451517571229, "y": -0.2231878513157981, "z": -0.03818365366213317}, {"x": 1.369167897550024, "y": -0.2081686516552932, "z": -0.03793551122463934}, {"x": 1.37173191919999, "y": -0.1931262908486772, "z": -0.03768314734873406}, {"x": 1.374143413099686, "y": -0.1780624590891712, "z": -0.03742659330222317}, {"x": 1.376402231667072, "y": -0.1629788469902747, "z": -0.03716588089736233}, {"x": 1.37850824912831, "y": -0.1478771452422571, "z": -0.03690104248308104}, {"x": 1.380461361478863, "y": -0.1327590442710821, "z": -0.03663211093668464}, {"x": 1.382261486437506, "y": -0.1176262338984578, "z": -0.03635911965521209}, {"x": 1.383908563394699, "y": -0.1024804030026429, "z": -0.03608210254701137}, {"x": 1.385402553355581, "y": -0.08732323918124567, "z": -0.03580109402370076}, {"x": 1.386743438876485, "y": -0.07215642841701281, "z": -0.03551612899204121}, {"x": 1.387931223993957, "y": -0.05698165474596494, "z": -0.03522724284518047}, {"x": 1.388965934146731, "y": -0.04180059992693276, "z": -0.03493447145336798}, {"x": 1.389847616092084, "y": -0.02661494311313287, "z": -0.03463785115477326}, {"x": 1.390576337817128, "y": -0.01142636052735728, "z": -0.03433741874673691}, {"x": 1.391152188444182, "y": 0.003763474858892559, "z": -0.03403321147706154}, {"x": 1.391575278129453, "y": 0.0189528936435934, "z": -0.03372526703485158}, {"x": 1.391845737955696, "y": 0.03414023031072914, "z": -0.03341362354107789}, {"x": 1.391963719819985, "y": 0.04932382354448746, "z": -0.03309831953935936}, {"x": 1.391929396316373, "y": 0.06450201653954535, "z": -0.03277939398691786}, {"x": 1.391742960612246, "y": 0.07967315730686941, "z": -0.03245688624517661}, {"x": 1.391404626318272, "y": 0.09483559897598898, "z": -0.03213083606985204}, {"x": 1.390914627353324, "y": 0.1099877000947044, "z": -0.03180128360107598}, {"x": 1.390273217805472, "y": 0.1251278249257219, "z": -0.03146826935400519}, {"x": 1.389480671788376, "y": 0.1402543437389721, "z": -0.03113183420967218}, {"x": 1.388537283291749, "y": 0.155365633099568, "z": -0.03079201940544507}, {"x": 1.387443366025625, "y": 0.170460076152574, "z": -0.03044886652487215}, {"x": 1.38619925325957, "y": 0.1855360629047992, "z": -0.03010241748736053}, {"x": 1.384805297657816, "y": 0.2005919905020866, "z": -0.02975271453820512}, {"x": 1.383261871110027, "y": 0.2156262635008076, "z": -0.02939980023889832}, {"x": 1.381569364556817, "y": 0.2306372941342116, "z": -0.02904371745722412}, {"x": 1.379728187810124, "y": 0.2456235025750629, "z": -0.02868450935700961}, {"x": 1.377738769369723, "y": 0.2605833171946458, "z": -0.02832221938799605}, {"x": 1.37560155623649, "y": 0.2755151748166987, "z": -0.02795689127610372}, {"x": 1.373317013721595, "y": 0.2904175209651526, "z": -0.02758856901369216}, {"x": 1.37088562525085, "y": 0.3052888101061215, "z": -0.02721729684935774}, {"x": 1.368307892165201, "y": 0.3201275058853354, "z": -0.02684311927754807}, {"x": 1.365584333519097, "y": 0.3349320813612306, "z": -0.02646608102867169}, {"x": 1.362715485876995, "y": 0.3497010192327333, "z": -0.02608622705981404}, {"x": 1.359701903106777, "y": 0.3644328120612637, "z": -0.02570360254547391}, {"x": 1.356544156169204, "y": 0.3791259624879222, "z": -0.02531825286782314}, {"x": 1.353242832904105, "y": 0.3937789834469335, "z": -0.02493022360667867}, {"x": 1.349798537814503, "y": 0.4083903983746742, "z": -0.02453956052972908}, {"x": 1.346211891848871, "y": 0.4229587414126396, "z": -0.02414630958318575}, {"x": 1.342483532180722, "y": 0.4374825576041559, "z": -0.02375051688249401}, {"x": 1.338614111985117, "y": 0.4519604030864057, "z": -0.02335222870276991}, {"x": 1.334604300212929, "y": 0.4663908452788463, "z": -0.02295149146920121}, {"x": 1.33045478136383, "y": 0.480772463067189, "z": -0.0225483517478436}, {"x": 1.326166255257614, "y": 0.4951038469815041, "z": -0.0221428562366833}, {"x": 1.321739436802624, "y": 0.509383599368284, "z": -0.02173505175637639}, {"x": 1.317175055761237, "y": 0.5236103345574875, "z": -0.0213249852405347}, {"x": 1.312473856514023, "y": 0.5377826790251625, "z": -0.02091270372618877}, {"x": 1.307636597823738, "y": 0.5518992715509788, "z": -0.02049825434494389}, {"x": 1.30266405259846, "y": 0.5659587633698011, "z": -0.02008168431450888}, {"x": 1.297557007652559, "y": 0.5799598183176731, "z": -0.0196630409299345}, {"x": 1.292316263465547, "y": 0.5939011129735093, "z": -0.0192423715544436}, {"x": 1.286942633940088, "y": 0.6077813367967143, "z": -0.01881972361033803}, {"x": 1.281436946159856, "y": 0.6215991922592773, "z": -0.0183951445703462}, {"x": 1.275800040146717, "y": 0.6353533949712082, "z": -0.01796868194921707}, {"x": 1.270032768616617, "y": 0.6490426738002496, "z": -0.01754038329518045}, {"x": 1.264135996734593, "y": 0.6626657709876004, "z": -0.01711029618129535}, {"x": 1.258110601870056, "y": 0.6762214422597908, "z": -0.01667846819712012}, {"x": 1.251957473352593, "y": 0.68970845693532, "z": -0.01624494694085727}, {"x": 1.245677512227196, "y": 0.7031255980252985, "z": -0.0158097800114934}, {"x": 1.239271631008083, "y": 0.7164716623288697, "z": -0.01537301500046979}, {"x": 1.23274075343203, "y": 0.7297454605243993, "z": -0.01493469948318679}, {"x": 1.226085814212888, "y": 0.7429458172561809, "z": -0.0144948810110736}, {"x": 1.219307758797495, "y": 0.7560715712157183, "z": -0.0140536071043399}, {"x": 1.212407543121643, "y": 0.7691215752174819, "z": -0.01361092524477074}, {"x": 1.205386133365369, "y": 0.7820946962703038, "z": -0.01316688286811486}, {"x": 1.198244505708445, "y": 0.7949898156453681, "z": -0.01272152735634969}, {"x": 1.190983646087167, "y": 0.8078058289400247, "z": -0.01227490603032514}, {"x": 1.183604549952281, "y": 0.820541646135881, "z": -0.01182706614278012}, {"x": 1.176108222027161, "y": 0.8331961916510587, "z": -0.01137805487134054}, {"x": 1.168495676066282, "y": 0.8457684043882958, "z": -0.01092791931136145}, {"x": 1.160767934615005, "y": 0.8582572377800337, "z": -0.01047670646895892}, {"x": 1.152926028771428, "y": 0.8706616598296527, "z": -0.01002446325457128}, {"x": 1.144970997949619, "y": 0.8829806531475933, "z": -0.009571236476805921}, {"x": 1.13690388964303, "y": 0.8952132149825782, "z": -0.009117072835979796}, {"x": 1.128725759188064, "y": 0.9073583572491526, "z": -0.008662018917250824}, {"x": 1.120437669529343, "y": 0.9194151065518048, "z": -0.00820612118397309}, {"x": 1.112040690987725, "y": 0.9313825042047436, "z": -0.007749425971798948}, {"x": 1.103535901030302, "y": 0.9432596062467627, "z": -0.007291979483196539}, {"x": 1.0949243840411, "y": 0.9550454834520338, "z": -0.006833827781716403}, {"x": 1.086207231092607, "y": 0.966739221338152, "z": -0.00637501678595333}, {"x": 1.077385539719376, "y": 0.9783399201714804, "z": -0.00591559226372387}, {"x": 1.068460413694083, "y": 0.9898466949683842, "z": -0.005455599826698648}, {"x": 1.059432962805134, "y": 1.001258675491382, "z": -0.004995084925143559}, {"x": 1.050304302635292, "y": 1.012575006241165, "z": -0.004534092842464229}, {"x": 1.041075554342134, "y": 1.023794846446165, "z": -0.004072668689782599}, {"x": 1.031747844441431, "y": 1.034917370049782, "z": -0.003610857400991839}, {"x": 1.022322304593315, "y": 1.045941765693947, "z": -0.003148703728301515}, {"x": 1.012800071389986, "y": 1.056867236698491, "z": -0.002686252237730131}, {"x": 1.003182286144237, "y": 1.067693001037378, "z": -0.002223547304138364}, {"x": 0.9934700946796732, "y": 1.078418291312684, "z": -0.001760633106123655}, {"x": 0.9836646471240998, "y": 1.089042354725664, "z": -0.001297553621464526}, {"x": 0.9737670977061581, "y": 1.099564453043884, "z": -0.0008343526232221761}, {"x": 0.9637786045539436, "y": 1.109983862564708, "z": -0.0003710736758948545}, {"x": 0.9537003294949408, "y": 1.120299874076607, "z": 0.00009223986878913498}, {"x": 0.943533437858186, "y": 1.130511792819029, "z": 0.000555544876099649}, {"x": 0.9332790982795943, "y": 1.140618938439935, "z": 0.001018798432094644}, {"x": 0.9229384825099044, "y": 1.150620644949607, "z": 0.001481957847129521}, {"x": 0.9125127652242214, "y": 1.160516260670774, "z": 0.001944980659542272}, {"x": 0.9020031238334041, "y": 1.170305148186584, "z": 0.00240782463950593}, {"x": 0.8914107382986041, "y": 1.179986684287418, "z": 0.002870447792542987}, {"x": 0.8807367909494696, "y": 1.18956025991576, "z": 0.003332808362438985}, {"x": 0.8699824663050159, "y": 1.199025280108049, "z": 0.003794864833941392}, {"x": 0.8591489508959399, "y": 1.208381163933987, "z": 0.004256575935816135}, {"x": 0.8482374330885176, "y": 1.217627344434602, "z": 0.004717900644294529}, {"x": 0.8372491029114165, "y": 1.226763268559129, "z": 0.005178798186310997}, {"x": 0.8261851518861721, "y": 1.235788397099431, "z": 0.005639228042099602}, {"x": 0.8150467728605243, "y": 1.244702204621556, "z": 0.006099149947453303}, {"x": 0.8038351598434235, "y": 1.253504179395636, "z": 0.006558523896245545}, {"x": 0.792551507841865, "y": 1.262193823325504, "z": 0.007017310143221316}, {"x": 0.7811970127006158, "y": 1.270770651877763, "z": 0.007475469206543539}, {"x": 0.7697728709448662, "y": 1.279234194008793, "z": 0.007932961869961236}, {"x": 0.7582802796245997, "y": 1.287583992088949, "z": 0.008389749185053398}, {"x": 0.746720436160094, "y": 1.295819601824747, "z": 0.008845792473837533}, {"x": 0.7350945381896837, "y": 1.303940592180327, "z": 0.009301053331328482}, {"x": 0.7234037834209588, "y": 1.311946545298062, "z": 0.009755493627516355}, {"x": 0.711649369485084, "y": 1.31983705641704, "z": 0.0102090755088694}, {"x": 0.6998324937928784, "y": 1.327611733789108, "z": 0.01066176139997049}, {"x": 0.6879543533922156, "y": 1.33527019859361, "z": 0.01111351400560079}, {"x": 0.6760161448278182, "y": 1.342812084851637, "z": 0.01156429631288854}, {"x": 0.6640190640046744, "y": 1.350237039338916, "z": 0.01201407159294269}, {"x": 0.6519643060549998, "y": 1.35754472149619, "z": 0.01246280340192861}, {"x": 0.6398530652076697, "y": 1.364734803337727, "z": 0.01291045558211015}, {"x": 0.6276865346596718, "y": 1.371806969359749, "z": 0.01335699226317257}, {"x": 0.6154659064504319, "y": 1.378760916449432, "z": 0.01380237786348375}, {"x": 0.6031923713396468, "y": 1.385596353793412, "z": 0.01424657709091896}, {"x": 0.5908671186877896, "y": 1.392313002784561, "z": 0.0146895549435088}, {"x": 0.578491336338077, "y": 1.398910596927344, "z": 0.0151312767104355}, {"x": 0.5660662105002268, "y": 1.405388881743016, "z": 0.01557170797328467}, {"x": 0.5535929256374653, "y": 1.411747614675278, "z": 0.01601081460691411}, {"x": 0.5410726643571673, "y": 1.417986564995552, "z": 0.01644856277969155}, {"x": 0.528506607303859, "y": 1.424105513707045, "z": 0.0168849189536109}, {"x": 0.5158959330533393, "y": 1.430104253448202, "z": 0.01731984988486161}, {"x": 0.5032418180082675, "y": 1.435982588396747, "z": 0.01775332262476709}, {"x": 0.4905454362964555, "y": 1.441740334174091, "z": 0.01818530452051512}, {"x": 0.4778079596722657, "y": 1.447377317748581, "z": 0.01861576321538704}, {"x": 0.4650305574203044, "y": 1.452893377337103, "z": 0.01904466664879027}, {"x": 0.4522143962606164, "y": 1.45828836230647, "z": 0.01947198305652938}, {"x": 0.4393606402557882, "y": 1.463562133075999, "z": 0.01989768097123047}, {"x": 0.426470450720908, "y": 1.468714561020814, "z": 0.02032172922246414}, {"x": 0.4135449861362337, "y": 1.473745528374345, "z": 0.02074409693652413}, {"x": 0.4005854020612994, "y": 1.478654928129598, "z": 0.02116475353638589}, {"x": 0.3875928510499552, "y": 1.483442663940197, "z": 0.02158366874212154}, {"x": 0.374568482567555, "y": 1.48810865002217, "z": 0.02200081257127802}, {"x": 0.3615134429115519, "y": 1.492652811056113, "z": 0.02241615533861782}, {"x": 0.3484288751349253, "y": 1.497075082088817, "z": 0.02282966765541181}, {"x": 0.3353159189708669, "y": 1.501375408434335, "z": 0.02324132042898146}, {"x": 0.322175710758296, "y": 1.50555374557571, "z": 0.02365108486274474}, {"x": 0.3090093833692741, "y": 1.5096100590679, "z": 0.02405893245632701}, {"x": 0.2958180661391903, "y": 1.513544324440782, "z": 0.02446483500525896}, {"x": 0.2826028847992672, "y": 1.517356527100921, "z": 0.02486876460035198}, {"x": 0.269364961410457, "y": 1.521046662232665, "z": 0.02527069362718491}, {"x": 0.2561054142986937, "y": 1.524614734700393, "z": 0.02567059476582061}, {"x": 0.2428253579923952, "y": 1.528060758952416, "z": 0.02606844099039618}, {"x": 0.2295259031626136, "y": 1.531384758925232, "z": 0.02646420556830613}, {"x": 0.2162081565648702, "y": 1.534586767946974, "z": 0.02685786205933013}, {"x": 0.2028732209815666, "y": 1.537666828640612, "z": 0.0272493843152124}, {"x": 0.1895221951654191, "y": 1.540624992828044, "z": 0.02763874647955825}, {"x": 0.1761561737854699, "y": 1.54346132143519, "z": 0.02802592298734316}, {"x": 0.162776247376107, "y": 1.546175884397172, "z": 0.0284108885637643}, {"x": 0.1493835022877274, "y": 1.54876876056315, "z": 0.02879361822301015}, {"x": 0.1359790206378522, "y": 1.551240037601666, "z": 0.0291740872675244}, {"x": 0.1225638802632099, "y": 1.553589811907566, "z": 0.02955227128760043}, {"x": 0.1091391546739802, "y": 1.555818188510035, "z": 0.02992814616073471}, {"x": 0.09570591301026012, "y": 1.557925280980216, "z": 0.03030168805059529}, {"x": 0.08226521999978444, "y": 1.55991121133792, "z": 0.03067287340598373}, {"x": 0.06881813591647805, "y": 1.561776109958882, "z": 0.03104167896005366}, {"x": 0.05536571654055709, "y": 1.563520115483975, "z": 0.03140808172954906}, {"x": 0.04190901312095074, "y": 1.565143374729807, "z": 0.0317720590136852}, {"x": 0.02844907233957595, "y": 1.566646042599176, "z": 0.03213358839276942}, {"x": 0.01498693627617329, "y": 1.568028281991143, "z": 0.03249264772710858}, {"x": 0.001523642373334856, "y": 1.569290263711879, "z": 0.0328492151564317}, {"x": -0.0119397765970426, "y": 1.570432166386904, "z": 0.03320326909930523}, {"x": -0.02540229256466551, "y": 1.57145417637394, "z": 0.03355478825192888}, {"x": -0.03886288218968614, "y": 1.572356487675577, "z": 0.03390375158650463}, {"x": -0.05232052689102614, "y": 1.573139301852191, "z": 0.03425013834988484}, {"x": -0.06577421287450784, "y": 1.573802827936356, "z": 0.03459392806272839}, {"x": -0.07922293115964833, "y": 1.574347282349007, "z": 0.03493510051866355}, {"x": -0.09266567760443241, "y": 1.574772888816109, "z": 0.03527363578306492}, {"x": -0.1061014529288334, "y": 1.575079878284574, "z": 0.03560951419168705}, {"x": -0.1195292627379096, "y": 1.57526848883802, "z": 0.03594271634954446}, {"x": -0.1329481175440762, "y": 1.575338965614096, "z": 0.03627322312995623}, {"x": -0.1463570327875153, "y": 1.5752915607238, "z": 0.03660101567332261}, {"x": -0.1597550288546407, "y": 1.575126533171483, "z": 0.03692607538550869}, {"x": -0.1731411310957737, "y": 1.574844148774512, "z": 0.03724838393628011}, {"x": -0.1865143698429909, "y": 1.574444680083343, "z": 0.03756792325825464}, {"x": -0.1998737804275602, "y": 1.573928406303075, "z": 0.03788467554617869}, {"x": -0.2132184031955022, "y": 1.573295613216195, "z": 0.03819862325584342}, {"x": -0.2265472835209168, "y": 1.572546593105372, "z": 0.03850974910239192}, {"x": -0.2398594718183285, "y": 1.571681644676218, "z": 0.03881803605855862}, {"x": -0.2531540235551227, "y": 1.570701072981252, "z": 0.03912346735339842}, {"x": -0.2664299992634792, "y": 1.569605189345958, "z": 0.03942602647129818}, {"x": -0.2796864645506881, "y": 1.568394311296259, "z": 0.0397256971507222}, {"x": -0.2929224901080674, "y": 1.567068762485927, "z": 0.04002246338267543}, {"x": -0.3061371517196287, "y": 1.565628872623626, "z": 0.04031630940935045}, {"x": -0.3193295302707079, "y": 1.564074977400934, "z": 0.04060721972310764}, {"x": -0.3324987117555122, "y": 1.562407418422633, "z": 0.04089517906537642}, {"x": -0.3456437872829621, "y": 1.560626543138633, "z": 0.0411801724251321}, {"x": -0.3587638530816972, "y": 1.558732704776128, "z": 0.04146218503722407}, {"x": -0.3718580105056252, "y": 1.556726262271871, "z": 0.04174120238112415}, {"x": -0.3849253660402101, "y": 1.554607580205715, "z": 0.0420172101802337}, {"x": -0.3979650313082728, "y": 1.552377028735693, "z": 0.04229019440120256}, {"x": -0.4109761230742947, "y": 1.550034983533393, "z": 0.04256014125271979}, {"x": -0.4239577632477347, "y": 1.54758182571872, "z": 0.04282703718394101}, {"x": -0.4369090788866006, "y": 1.545017941794836, "z": 0.0430908688831767}, {"x": -0.4498292022013563, "y": 1.542343723584568, "z": 0.04335162327700633}, {"x": -0.4627172705579264, "y": 1.539559568168304, "z": 0.04360928752931124}, {"x": -0.4755724264792024, "y": 1.536665877821938, "z": 0.04386384903990596}, {"x": -0.4883938176459051, "y": 1.533663059953967, "z": 0.04411529544311187}, {"x": -0.5011805968976074, "y": 1.530551527042465, "z": 0.04436361460667895}, {"x": -0.5139319222331237, "y": 1.527331696573479, "z": 0.04460879463080711}, {"x": -0.5266469568090546, "y": 1.524003990981246, "z": 0.04485082384673671}, {"x": -0.5393248689366722, "y": 1.52056883758909, "z": 0.04508969081490651}, {"x": -0.5519648320785835, "y": 1.517026668550284, "z": 0.04532538432325479}, {"x": -0.5645660248460623, "y": 1.513377920789747, "z": 0.04555789338609295}, {"x": -0.5771276309963338, "y": 1.509623035947566, "z": 0.04578720724326601}, {"x": -0.5896488394285634, "y": 1.505762460323767, "z": 0.04601331535899178}, {"x": -0.6021288441784574, "y": 1.501796644822935, "z": 0.04623620742021059}, {"x": -0.6145668444125959, "y": 1.497726044898765, "z": 0.04645587333492435}, {"x": -0.6269620444233004, "y": 1.493551120500064, "z": 0.04667230323097027}, {"x": -0.639313653623402, "y": 1.489272336018988, "z": 0.04688548745499987}, {"x": -0.651620886539984, "y": 1.484890160240503, "z": 0.04709541657118259}, {"x": -0.6638829628074897, "y": 1.480405066291589, "z": 0.04730208135970688}, {"x": -0.6760991071613824, "y": 1.475817531590081, "z": 0.04750547281558949}, {"x": -0.6882685494323825, "y": 1.471128037794422, "z": 0.04770558214787402}, {"x": -0.7003905245398923, "y": 1.46633707075516, "z": 0.04790240077864839}, {"x": -0.7124642724838836, "y": 1.461445120467558, "z": 0.04809592034150638}, {"x": -0.7244890383362969, "y": 1.456452681024228, "z": 0.04828613267986128}, {"x": -0.7364640722333322, "y": 1.451360250567934, "z": 0.04847302984573246}, {"x": -0.748388629368535, "y": 1.446168331245741, "z": 0.04865660409903905}, {"x": -0.7602619699853823, "y": 1.440877429164694, "z": 0.04883684790683522}, {"x": -0.7720833593686577, "y": 1.435488054347662, "z": 0.04901375394207549}, {"x": -0.7838520678352743, "y": 1.430000720688527, "z": 0.04918731508213414}, {"x": -0.7955673707255481, "y": 1.42441594590777, "z": 0.04935752440758056}, {"x": -0.8072285483948324, "y": 1.418734251510046, "z": 0.04952437520127931}, {"x": -0.818834886204544, "y": 1.412956162743525, "z": 0.04968786094737631}, {"x": -0.8303856745123441, "y": 1.407082208559428, "z": 0.04984797532996653}, {"x": -0.8418802086625337, "y": 1.401112921570937, "z": 0.05000471223185484}, {"x": -0.8533177889774256, "y": 1.39504883801232, "z": 0.05015806573379702}, {"x": -0.8646977207487865, "y": 1.388890497699452, "z": 0.0503080301138794}, {"x": -0.8760193142279502, "y": 1.382638443991629, "z": 0.05045459984640589}, {"x": -0.8872818846148327, "y": 1.376293223753695, "z": 0.05059776960031688}, {"x": -0.898484752047414, "y": 1.369855387318053, "z": 0.05073753423782126}, {"x": -0.9096272415924247, "y": 1.36332548844749, "z": 0.05087388881363414}, {"x": -0.920708683236284, "y": 1.356704084299627, "z": 0.05100682857443628}, {"x": -0.931728411875133, "y": 1.349991735392169, "z": 0.05113634895799973}, {"x": -0.942685767304131, "y": 1.343189005567547, "z": 0.05126244559194042}, {"x": -0.9535800942070194, "y": 1.336296461957077, "z": 0.05138511429254373}, {"x": -0.9644107421463006, "y": 1.329314674946374, "z": 0.05150435106391534}, {"x": -0.9751770655532833, "y": 1.322244218142853, "z": 0.05162015209718916}, {"x": -0.9858784237173369, "y": 1.315085668344136, "z": 0.05173251376943103}, {"x": -0.9965141807749789, "y": 1.307839605505922, "z": 0.05184143264242021}, {"x": -1.007083705699944, "y": 1.300506612709524, "z": 0.05194690546182558}, {"x": -1.017586372294116, "y": 1.293087276130296, "z": 0.05204892915679692}, {"x": -1.028021559177857, "y": 1.285582185007435, "z": 0.05214750083934021}, {"x": -1.03838864977897, "y": 1.277991931614304, "z": 0.05224261780306973}, {"x": -1.048687032321441, "y": 1.270317111228576, "z": 0.05233427752180179}, {"x": -1.058916099815382, "y": 1.262558322102696, "z": 0.05242247764865944}, {"x": -1.069075250047942, "y": 1.254716165435734, "z": 0.05250721601566111}, {"x": -1.079163885573844, "y": 1.246791245346543, "z": 0.05258849063318757}, {"x": -1.089181413705114, "y": 1.238784168846776, "z": 0.05266629968903767}, {"x": -1.099127246500854, "y": 1.230695545812995, "z": 0.05274064154738899}, {"x": -1.109000800757759, "y": 1.222525988958988, "z": 0.05281151474803693}, {"x": -1.118801498000916, "y": 1.214276113809933, "z": 0.0528789180057997}, {"x": -1.128528764473997, "y": 1.205946538678146, "z": 0.05294285020969881}, {"x": -1.138182031128977, "y": 1.197537884638783, "z": 0.0530033104218712}, {"x": -1.147760733616529, "y": 1.189050775504824, "z": 0.05306029787667883}, {"x": -1.157264312277669, "y": 1.180485837802371, "z": 0.05311381198033797}, {"x": -1.166692212135663, "y": 1.171843700747207, "z": 0.05316385231068038}, {"x": -1.176043882886811, "y": 1.16312499622213, "z": 0.05321041861639405}, {"x": -1.185318778890333, "y": 1.154330358754096, "z": 0.05325351081576839}, {"x": -1.194516359158919, "y": 1.145460425491255, "z": 0.05329312899565124}, {"x": -1.203636087350617, "y": 1.136515836180969, "z": 0.05332927341100413}, {"x": -1.212677431761015, "y": 1.127497233149349, "z": 0.05336194448462345}, {"x": -1.221639865314654, "y": 1.118405261281297, "z": 0.05339114280650203}, {"x": -1.230522865556122, "y": 1.10924056799971, "z": 0.05341686913293577}, {"x": -1.239325914641829, "y": 1.100003803244084, "z": 0.05343912438582193}, {"x": -1.248048499332375, "y": 1.090695619450224, "z": 0.05345790965221942}, {"x": -1.256690110984532, "y": 1.081316671531884, "z": 0.0534732261837816}, {"x": -1.265250245542479, "y": 1.071867616863189, "z": 0.05348507539584629}, {"x": -1.273728403529228, "y": 1.062349115260503, "z": 0.05349345886650934}, {"x": -1.282124090039288, "y": 1.052761828964132, "z": 0.05349837833617443}, {"x": -1.29043681473232, "y": 1.043106422621166, "z": 0.05349983570752333}, {"x": -1.298666091826348, "y": 1.03338356326957, "z": 0.05349783304527227}, {"x": -1.306811440089952, "y": 1.023593920322449, "z": 0.05349237257534415}, {"x": -1.314872382834559, "y": 1.013738165552031, "z": 0.05348345668390156}, {"x": -1.322848447908251, "y": 1.003816973074293, "z": 0.05347108791690314}, {"x": -1.330739167690843, "y": 0.9938310193351826, "z": 0.05345526898013333}, {"x": -1.338544079088994, "y": 0.9837809830979176, "z": 0.0534360027391028}, {"x": -1.346262723531143, "y": 0.9736675454297986, "z": 0.05341329221861025}, {"x": -1.353894646963282, "y": 0.96349138968781, "z": 0.05338714060236918}, {"x": -1.361439399846045, "y": 0.9532532015040537, "z": 0.05335755123297931}, {"x": -1.368896537152136, "y": 0.9429536687723759, "z": 0.05332452761191583}, {"x": -1.376265618363104, "y": 0.9325934816359113, "z": 0.05328807339912588}, {"x": -1.383546207465853, "y": 0.9221733324740027, "z": 0.05324819241235617}, {"x": -1.390737872950039, "y": 0.9116939158880315, "z": 0.05320488862674388}, {"x": -1.397840187806637, "y": 0.9011559286873423, "z": 0.05315816617490371}, {"x": -1.404852729526526, "y": 0.8905600698761407, "z": 0.05310802934706573}, {"x": -1.41177508009785, "y": 0.8799070406406361, "z": 0.05305448259067605}, {"x": -1.418606826002461, "y": 0.8691975443354809, "z": 0.05299753050951662}, {"x": -1.425347558212871, "y": 0.8584322864700817, "z": 0.05293717786299462}, {"x": -1.431996872190303, "y": 0.8476119746961828, "z": 0.05287342956595722}, {"x": -1.438554367882894, "y": 0.8367373187970362, "z": 0.05280629068861693}, {"x": -1.445019649723232, "y": 0.8258090306768866, "z": 0.05273576645613098}, {"x": -1.451392326625905, "y": 0.8148278243495509, "z": 0.05266186224803294}, {"x": -1.457672011986136, "y": 0.8037944159264955, "z": 0.05258458359799116}, {"x": -1.463858323679173, "y": 0.7927095236058859, "z": 0.05250393619382168}, {"x": -1.469950884059174, "y": 0.7815738676632067, "z": 0.05241992587722698}, {"x": -1.475949319957452, "y": 0.7703881704423675, "z": 0.05233255864312055}, {"x": -1.481853262681304, "y": 0.7591531563461447, "z": 0.05224184063902797}, {"x": -1.487662348014442, "y": 0.7478695518264107, "z": 0.05214777816504128}, {"x": -1.493376216218461, "y": 0.7365380853753327, "z": 0.05205037767414974}, {"x": -1.498994512033962, "y": 0.7251594875173695, "z": 0.05194964577231701}, {"x": -1.504516884680896, "y": 0.7137344908007431, "z": 0.05184558921802218}, {"x": -1.509942987859134, "y": 0.7022638297880676, "z": 0.05173821492167249}, {"x": -1.515272479750295, "y": 0.6907482410474579, "z": 0.05162752994543533}, {"x": -1.520505023020476, "y": 0.6791884631451799, "z": 0.05151354150341214}, {"x": -1.525640284822744, "y": 0.6675852366390868, "z": 0.05139625696162543}, {"x": -1.530677936799393, "y": 0.6559393040712894, "z": 0.05127568383770218}, {"x": -1.53561765508505, "y": 0.6442514099597002, "z": 0.0511518298007182}, {"x": -1.540459120311033, "y": 0.6325223007896332, "z": 0.0510247026714466}, {"x": -1.545202017609797, "y": 0.6207527250066041, "z": 0.05089431042255226}, {"x": -1.549846036618506, "y": 0.6089434330099538, "z": 0.05076066117828126}, {"x": -1.55439087148247, "y": 0.5970951771460685, "z": 0.05062376321390819}, {"x": -1.558836220859928, "y": 0.5852087117009367, "z": 0.05048362495559051}, {"x": -1.563181787928343, "y": 0.5732847928931204, "z": 0.05034025498078017}, {"x": -1.567427280390964, "y": 0.5613241788677238, "z": 0.05019366201866825}, {"x": -1.571572410482662, "y": 0.5493276296903099, "z": 0.05004385495015422}, {"x": -1.575616894975514, "y": 0.5372959073396852, "z": 0.04989084280746471}, {"x": -1.57956045518527, "y": 0.5252297757002636, "z": 0.04973463477396058}, {"x": -1.583402816978942, "y": 0.513130000555624, "z": 0.04957524018434765}, {"x": -1.587143710782608, "y": 0.5009973495834202, "z": 0.04941266852491805}, {"x": -1.590782871588842, "y": 0.4888325923501179, "z": 0.0492469294334697}, {"x": -1.594320038964538, "y": 0.4766365003044587, "z": 0.04907803269917425}, {"x": -1.597754957060092, "y": 0.4644098467702852, "z": 0.04890598826284593}, {"x": -1.601087374619384, "y": 0.4521534069400808, "z": 0.04873080621744996}, {"x": -1.604317044989165, "y": 0.4398679578694719, "z": 0.04855249680822638}, {"x": -1.607443726127675, "y": 0.4275542784717115, "z": 0.04837107043229922}, {"x": -1.610467180613994, "y": 0.4152131495114158, "z": 0.04818653763839528}, {"x": -1.613387175659111, "y": 0.4028453535981774, "z": 0.04799890912716971}, {"x": -1.616203483117955, "y": 0.3904516751810435, "z": 0.04780819575186452}, {"x": -1.61891587950105, "y": 0.3780329005434641, "z": 0.04761440851866737}, {"x": -1.621524145985622, "y": 0.3655898177973162, "z": 0.04741755858661449}, {"x": -1.624028068427211, "y": 0.3531232168757602, "z": 0.04721765726745784}, {"x": -1.626427437372408, "y": 0.3406338895264532, "z": 0.04701471602587187}, {"x": -1.628722048072189, "y": 0.3281226293062753, "z": 0.04680874647984488}, {"x": -1.630911700494993, "y": 0.3155902315766398, "z": 0.04659976040084306}, {"x": -1.632996199339807, "y": 0.3030374934977592, "z": 0.04638776971375987}, {"x": -1.634975354050366, "y": 0.2904652140217001, "z": 0.04617278649712452}, {"x": -1.636848978830675, "y": 0.2778741938855213, "z": 0.0459548229837386}, {"x": -1.638616892660598, "y": 0.2652652356052877, "z": 0.04573389156122082}, {"x": -1.640278919310471, "y": 0.2526391434703261, "z": 0.04551000477195744}, {"x": -1.641834887355621, "y": 0.2399967235367911, "z": 0.04528317531277655}, {"x": -1.643284630192322, "y": 0.2273387836206868, "z": 0.04505341603507138}, {"x": -1.644627986055307, "y": 0.214666133291376, "z": 0.04482073994548934}, {"x": -1.645864798035448, "y": 0.2019795838658315, "z": 0.04458516020659561}, {"x": -1.646994914096819, "y": 0.189279948402449, "z": 0.04434669013707339}, {"x": -1.648018187093818, "y": 0.1765680416933965, "z": 0.04410534321169608}, {"x": -1.648934474789298, "y": 0.1638446802563043, "z": 0.04386113306152511}, {"x": -1.64974363987353, "y": 0.1511106823270013, "z": 0.04361407347436317}, {"x": -1.650445549983082, "y": 0.1383668678534381, "z": 0.04336417839509089}, {"x": -1.651040077719426, "y": 0.1256140584891822, "z": 0.04311146192571552}, {"x": -1.651527100668198, "y": 0.1128530775854467, "z": 0.04285593832548061}, {"x": -1.651906501419886, "y": 0.1000847501824915, "z": 0.04259762201142733}, {"x": -1.652178167591241, "y": 0.08730990300164604, "z": 0.04233652755917149}, {"x": -1.652341991845982, "y": 0.07452936443783555, "z": 0.04207266970324479}, {"x": -1.652397871914678, "y": 0.06174396455158853, "z": 0.04180606333687902}, {"x": -1.65234571061531, "y": 0.04895453506028195, "z": 0.04153672351188555}, {"x": -1.652185415875516, "y": 0.03616190932955127, "z": 0.04126466543916237}, {"x": -1.651916900755715, "y": 0.02336692236562082, "z": 0.0409899044895092}, {"x": -1.651540083471803, "y": 0.01057041080788963, "z": 0.04071245619412568}, {"x": -1.651054887417593, "y": -0.002226787079586623, "z": 0.04043233624474821}, {"x": -1.650461241188111, "y": -0.01502383141778005, "z": 0.0401495604938959}, {"x": -1.649759078604148, "y": -0.02781988072205532, "z": 0.03986414495545007}, {"x": -1.648948338737248, "y": -0.0406140919100943, "z": 0.03957610580526338}, {"x": -1.648028965934621, "y": -0.05340562030934918, "z": 0.03928545938150082}, {"x": -1.647000909844649, "y": -0.06619361966573313, "z": 0.03899222218490198}, {"x": -1.645864125444095, "y": -0.07897724215367617, "z": 0.03869641087943111}, {"x": -1.644618573066976, "y": -0.09175563838632046, "z": 0.03839804229337035}, {"x": -1.643264218433709, "y": -0.1045279574254202, "z": 0.03809713342028177}, {"x": -1.641801032679563, "y": -0.1172933467919645, "z": 0.03779370141935391}, {"x": -1.640228992383097, "y": -0.1300509524783277, "z": 0.03748776361543071}, {"x": -1.638548079595999, "y": -0.1427999189613159, "z": 0.03717933749942982}, {"x": -1.636758281874229, "y": -0.1555393892150054, "z": 0.03686844072925921}, {"x": -1.634859592309065, "y": -0.1682685047234006, "z": 0.03655509113062803}, {"x": -1.63285200955733, "y": -0.1809864054941759, "z": 0.03623930669737775}, {"x": -1.630735537871656, "y": -0.1936922300742586, "z": 0.03592110559166028}, {"x": -1.628510187131637, "y": -0.206385115566238, "z": 0.03560050614439002}, {"x": -1.626175972875336, "y": -0.2190641976439813, "z": 0.03527752685581781}, {"x": -1.623732916330199, "y": -0.2317286105672848, "z": 0.03495218639580729}, {"x": -1.621181044443612, "y": -0.2443774871970585, "z": 0.03462450360382988}, {"x": -1.618520389914329, "y": -0.2570099590119594, "z": 0.0342944974891578}, {"x": -1.615750991225429, "y": -0.2696251561255823, "z": 0.03396218723157212}, {"x": -1.612872892677906, "y": -0.2822222073030997, "z": 0.03362759218224699}, {"x": -1.60988614442362, "y": -0.2948002399778155, "z": 0.03329073186419488}, {"x": -1.606790802497644, "y": -0.3073583802688225, "z": 0.03295162597219057}, {"x": -1.603586928851351, "y": -0.3198957529997008, "z": 0.03261029437277877}, {"x": -1.600274591387154, "y": -0.3324114817170251, "z": 0.03226675710485503}, {"x": -1.596853863994055, "y": -0.3449046887081552, "z": 0.0319210343805062}, {"x": -1.593324826582842, "y": -0.3573744950193777, "z": 0.03157314658552877}, {"x": -1.5896875651212, "y": -0.3698200204757441, "z": 0.03122311427964578}, {"x": -1.58594217166985, "y": -0.3822403837024885, "z": 0.03087095819691916}, {"x": -1.582088744419758, "y": -0.3946347021465671, "z": 0.03051669924646151}, {"x": -1.57812738772926, "y": -0.4070020920974036, "z": 0.03016035851298623}, {"x": -1.574058212160586, "y": -0.4193416687077131, "z": 0.02980195725693529}, {"x": -1.569881334516799, "y": -0.4316525460158003, "z": 0.02944151691456794}, {"x": -1.565596877880269, "y": -0.4439338369692603, "z": 0.02907905909852246}, {"x": -1.561204971652373, "y": -0.4561846534488149, "z": 0.02871460559878504}, {"x": -1.556705751593041, "y": -0.4684041062919824, "z": 0.0283481783834659}, {"x": -1.552099359859439, "y": -0.4805913053177441, "z": 0.02797979959899588}, {"x": -1.547385945044654, "y": -0.4927453593528875, "z": 0.02760949157006786}, {"x": -1.542565662217613, "y": -0.5048653762590067, "z": 0.02723727679994084}, {"x": -1.537638672964169, "y": -0.5169504629589393, "z": 0.02686317797118725}, {"x": -1.532605145428191, "y": -0.5289997254630768, "z": 0.02648721794635047}, {"x": -1.527465254352195, "y": -0.5410122688971072, "z": 0.02610941976821394}, {"x": -1.522219181118488, "y": -0.5529871975318259, "z": 0.02572980666005303}, {"x": -1.516867113791503, "y": -0.5649236148139845, "z": 0.02534840202624198}, {"x": -1.511409247160533, "y": -0.5768206233968317, "z": 0.02496522945292542}, {"x": -1.505845782781687, "y": -0.5886773251704361, "z": 0.02458031270824319}, {"x": -1.500176929019478, "y": -0.6004928212930803, "z": 0.02419367574222709}, {"x": -1.494402901089506, "y": -0.6122662122243819, "z": 0.02380534268699462}, {"x": -1.488523921102679, "y": -0.6239965977592669, "z": 0.02341533785749971}, {"x": -1.482540218109831, "y": -0.6356830770618774, "z": 0.02302368575238503}, {"x": -1.47645202814554, "y": -0.6473247487000939, "z": 0.02263041105435623}, {"x": -1.47025959427137, "y": -0.6589207106818875, "z": 0.02223553863009214}, {"x": -1.463963166619739, "y": -0.6704700604932317, "z": 0.02183909353023743}, {"x": -1.45756300243896, "y": -0.6819718951360226, "z": 0.02144110098983287}, {"x": -1.451059366138663, "y": -0.6934253111655123, "z": 0.02104158642889526}, {"x": -1.444452529334731, "y": -0.7048294047286138, "z": 0.02064057545268502}, {"x": -1.437742770894162, "y": -0.7161832716044252, "z": 0.02023809385175946}, {"x": -1.430930376980904, "y": -0.7274860072465982, "z": 0.01983416760228856}, {"x": -1.42401564110253, "y": -0.7387367068261128, "z": 0.01942882286665609}, {"x": -1.416998864156391, "y": -0.7499344652738854, "z": 0.01902208599378362}, {"x": -1.409880354474768, "y": -0.7610783773241026, "z": 0.01861398351890734}, {"x": -1.402660427870265, "y": -0.7721675375592881, "z": 0.01820454216332971}, {"x": -1.395339407682666, "y": -0.7832010404568328, "z": 0.0177937888347216}, {"x": -1.38791762482674, "y": -0.7941779804359039, "z": 0.01738175062782}, {"x": -1.380395417839527, "y": -0.8050974519047136, "z": 0.01696845482486073}, {"x": -1.372773132926637, "y": -0.8159585493094056, "z": 0.01655392889545924}, {"x": -1.365051124008502, "y": -0.8267603671851607, "z": 0.01613820049631768}, {"x": -1.357229752767511, "y": -0.8375020002082988, "z": 0.01572129747123475}, {"x": -1.349309388695677, "y": -0.8481825432480206, "z": 0.01530324785139067}, {"x": -1.341290409141897, "y": -0.8588010914183721, "z": 0.01488407985547431}, {"x": -1.333173199358678, "y": -0.8693567401321705, "z": 0.01446382188950013}, {"x": -1.324958152549284, "y": -0.8798485851574003, "z": 0.01404250254670163}, {"x": -1.316645669915809, "y": -0.8902757226748698, "z": 0.0136201506077969}, {"x": -1.308236160707182, "y": -0.9006372493360183, "z": 0.01319679504125161}, {"x": -1.299730042265886, "y": -0.9109322623212615, "z": 0.01277246500298574}, {"x": -1.29112774007388, "y": -0.9211598593999646, "z": 0.01234718983568079}, {"x": -1.282429687799293, "y": -0.931319138992259, "z": 0.01192099906841227}, {"x": -1.273636327344311, "y": -0.9414092002317833, "z": 0.01149392241686983}, {"x": -1.264748108892942, "y": -0.9514291430287757, "z": 0.01106598978362052}, {"x": -1.25576549095752, "y": -0.9613780681343804, "z": 0.01063723125785665}, {"x": -1.246688940424406, "y": -0.9712550772073044, "z": 0.01020767711475393}, {"x": -1.237518932599965, "y": -0.981059272882394, "z": 0.009777357814956037}, {"x": -1.228255951256994, "y": -0.9907897588394495, "z": 0.009346304004363232}, {"x": -1.218900488680698, "y": -1.000445639871731, "z": 0.008914546513901212}, {"x": -1.209453045713763, "y": -1.010026021955614, "z": 0.008482116358992252}, {"x": -1.199914131801183, "y": -1.019530012322725, "z": 0.00804904473894218}, {"x": -1.1902842650358, "y": -1.028956719533993, "z": 0.007615363036667135}, {"x": -1.180563972204204, "y": -1.038305253554183, "z": 0.007181102818691239}, {"x": -1.170753788831685, "y": -1.047574725826652, "z": 0.006746295834813004}, {"x": -1.160854259225854, "y": -1.056764249349407, "z": 0.006310974017193717}, {"x": -1.150865936520262, "y": -1.065872938753124, "z": 0.005875169479416049}, {"x": -1.140789382719338, "y": -1.074899910380574, "z": 0.005438914516147275}, {"x": -1.130625168744072, "y": -1.083844282366683, "z": 0.005002241603205514}, {"x": -1.120373874476895, "y": -1.092705174719677, "z": 0.004565183397328843}, {"x": -1.110036088805444, "y": -1.101481709404707, "z": 0.004127772735418467}, {"x": -1.09961240966614, "y": -1.11017301043046, "z": 0.003690042633684036}, {"x": -1.089103444088124, "y": -1.118778203937488, "z": 0.003252026287043853}, {"x": -1.078509808236741, "y": -1.127296418286911, "z": 0.002813757068570207}, {"x": -1.067832127455632, "y": -1.135726784150038, "z": 0.002375268528609287}, {"x": -1.057071036307638, "y": -1.144068434600582, "z": 0.001936594393624032}, {"x": -1.0462271786155, "y": -1.152320505209807, "z": 0.00149776856518779}, {"x": -1.035301207502528, "y": -1.160482134143206, "z": 0.001058825119308779}, {"x": -1.024293785432117, "y": -1.168552462257674, "z": 0.0006197983056456704}, {"x": -1.013205584245026, "y": -1.176530633199812, "z": 0.0001807225460960441}, {"x": -1.002037285194994, "y": -1.18441579350628, "z": -0.0002583675670590632}, {"x": -0.9907895789842677, "y": -1.19220709270592, "z": -0.000697437272717012}, {"x": -0.9794631657995003, "y": -1.19990368342257, "z": -0.001136451641945956}, {"x": -0.9680587553467154, "y": -1.207504721478367, "z": -0.001575375578957416}, {"x": -0.9565770668843676, "y": -1.215009365998702, "z": -0.00201417382259527}, {"x": -0.9450188292551133, "y": -1.222416779519832, "z": -0.002452810948133533}, {"x": -0.9333847809173467, "y": -1.229726128098589, "z": -0.002891251368881789}, {"x": -0.9216756699762951, "y": -1.236936581422594, "z": -0.00332945933758324}, {"x": -0.9098922542136083, "y": -1.244047312920547, "z": -0.00376739894803339}, {"x": -0.8980353011152505, "y": -1.251057499874002, "z": -0.004205034137039084}, {"x": -0.8861055878986778, "y": -1.257966323531925, "z": -0.004642328686348866}, {"x": -0.8741039015400343, "y": -1.264772969227423, "z": -0.005079246224185699}, {"x": -0.8620310388006694, "y": -1.271476626495286, "z": -0.005515750226606218}, {"x": -0.8498878062515931, "y": -1.278076489190327, "z": -0.00595180401928829}, {"x": -0.8376750202955624, "y": -1.28457175560774, "z": -0.006387370779945825}, {"x": -0.8253935071880073, "y": -1.290961628605756, "z": -0.006822413540836201}, {"x": -0.8130441030578873, "y": -1.297245315729557, "z": -0.007256895190764484}, {"x": -0.8006276539278903, "y": -1.303422029335644, "z": -0.007690778476762224}, {"x": -0.7881450157325619, "y": -1.309490986717421, "z": -0.008124026006098635}, {"x": -0.7755970543342015, "y": -1.315451410233319, "z": -0.008556600248784855}, {"x": -0.7629846455376041, "y": -1.321302527437636, "z": -0.008988463540091824}, {"x": -0.7503086751040688, "y": -1.327043571212692, "z": -0.009419578082802835}, {"x": -0.7375700387636765, "y": -1.332673779901135, "z": -0.009849905949548049}, {"x": -0.7247696422250236, "y": -1.33819239743898, "z": -0.01027940908558484}, {"x": -0.7119084011830826, "y": -1.343598673490903, "z": -0.01070804931177321}, {"x": -0.6989872413263558, "y": -1.348891863588098, "z": -0.01113578832723612}, {"x": -0.6860070983432369, "y": -1.354071229267448, "z": -0.01156258771165731}, {"x": -0.6729689179262518, "y": -1.359136038211228, "z": -0.01198840892775873}, {"x": -0.6598736557732201, "y": -1.364085564388221, "z": -0.01241321332441999}, {"x": -0.646722277585957, "y": -1.368919088197207, "z": -0.01283696214021439}, {"x": -0.6335157590678233, "y": -1.373635896612138, "z": -0.01325961650671112}, {"x": -0.6202550859203493, "y": -1.378235283327699, "z": -0.01368113745131558}, {"x": -0.6069412538377514, "y": -1.382716548905301, "z": -0.01410148590014437}, {"x": -0.5935752684984852, "y": -1.387079000920931, "z": -0.01452062268139693}, {"x": -0.5801581455545047, "y": -1.391321954115717, "z": -0.01493850852897987}, {"x": -0.5666909106191493, "y": -1.39544473054834, "z": -0.0153551040859136}, {"x": -0.5531745992531774, "y": -1.399446659747783, "z": -0.01577036990762522}, {"x": -0.5396102569477013, "y": -1.403327078866184, "z": -0.01618426646564463}, {"x": -0.5259989391040071, "y": -1.407085332832985, "z": -0.01659675415174201}, {"x": -0.5123417110115616, "y": -1.410720774511367, "z": -0.01700779328195231}, {"x": -0.4986396478248865, "y": -1.414232764856289, "z": -0.01741734410012919}, {"x": -0.4848938345383201, "y": -1.417620673072945, "z": -0.0178253667813933}, {"x": -0.4711053659572766, "y": -1.420883876775836, "z": -0.01823182143609114}, {"x": -0.4572753466659328, "y": -1.424021762149643, "z": -0.01863666811436079}, {"x": -0.4434048909925128, "y": -1.427033724112031, "z": -0.01903986681077453}, {"x": -0.4294951229729511, "y": -1.429919166476965, "z": -0.01944137746859275}, {"x": -0.415547176312307, "y": -1.432677502117669, "z": -0.01984115998380727}, {"x": -0.4015621943428046, "y": -1.435308153130289, "z": -0.02023917420951311}, {"x": -0.3875413299785217, "y": -1.437810550999702, "z": -0.02063537996069124}, {"x": -0.3734857456677429, "y": -1.440184136767325, "z": -0.02102973701894283}, {"x": -0.3593966133431888, "y": -1.44242836119944, "z": -0.02142220513697276}, {"x": -0.3452751143689415, "y": -1.444542684955087, "z": -0.02181274404327735}, {"x": -0.3311224394832491, "y": -1.446526578754205, "z": -0.02220131344741293}, {"x": -0.3169397887381127, "y": -1.448379523547169, "z": -0.02258787304546983}, {"x": -0.3027283714369885, "y": -1.450101010685747, "z": -0.02297238252513193}, {"x": -0.2884894060703705, "y": -1.451690542094335, "z": -0.02335480157035259}, {"x": -0.2742241202477269, "y": -1.453147630440972, "z": -0.02373508986628994}, {"x": -0.2599337506250026, "y": -1.454471799309071, "z": -0.02411320710490375}, {"x": -0.24561954282847, "y": -1.4556625833707, "z": -0.02448911299090322}, {"x": -0.2312827513760209, "y": -1.456719528560485, "z": -0.0248627672474881}, {"x": -0.2169246395958247, "y": -1.457642192248597, "z": -0.02523412962177866}, {"x": -0.2025464795413196, "y": -1.458430143412931, "z": -0.02560315989036209}, {"x": -0.1881495519020522, "y": -1.459082962812114, "z": -0.02596981786525542}, {"x": -0.1737351459110975, "y": -1.459600243160085, "z": -0.02633406340000997}, {"x": -0.1593045592497839, "y": -1.459981589301097, "z": -0.02669585639557019}, {"x": -0.1448590979490531, "y": -1.460226618383678, "z": -0.02705515680607913}, {"x": -0.1304000762861778, "y": -1.460334960033543, "z": -0.02741192464518782}]', 688, 687, '#CD5C5C', '2025-11-29 08:12:58.44523', '2025-11-29 08:24:45.93507');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (5, '599', '[{"x": -1.456117587089769, "y": 4.991963602185346, "z": 0.01184197088755214}, {"x": -1.674829599807297, "y": 4.934415371825741, "z": 0.0169742794154817}, {"x": -1.890386706835137, "y": 4.867572648958319, "z": 0.02207467800828578}, {"x": -2.102406061828999, "y": 4.791616585079431, "z": 0.02713382157945367}, {"x": -2.310514618567115, "y": 4.706744081957073, "z": 0.03214252785525459}, {"x": -2.514352587859701, "y": 4.613168963375617, "z": 0.03709188297795537}, {"x": -2.713570311655686, "y": 4.511116132560298, "z": 0.0419731248938403}, {"x": -2.907830164018019, "y": 4.400822901461675, "z": 0.04677765045757649}, {"x": -3.096808565580039, "y": 4.282536891638155, "z": 0.05149714813677438}, {"x": -3.280196360913023, "y": 4.156519423085574, "z": 0.05612368747657779}, {"x": -3.457698207022038, "y": 4.023041439345724, "z": 0.06064952644151696}, {"x": -3.629029983326339, "y": 3.882383415651727, "z": 0.06506726332099017}, {"x": -3.793921375900338, "y": 3.734831229427464, "z": 0.06936957194086395}, {"x": -3.952112897744515, "y": 3.580679213018723, "z": 0.07354932990014572}, {"x": -4.103361211341502, "y": 3.420233336259508, "z": 0.07759981113107577}, {"x": -4.247435957735667, "y": 3.253807755084282, "z": 0.08151462899254486}, {"x": -4.384121364981188, "y": 3.081724087704847, "z": 0.08528768244871977}, {"x": -4.513215968568666, "y": 2.904305778851948, "z": 0.08891313648067735}, {"x": -4.634532705169115, "y": 2.721881451143547, "z": 0.09238541541614571}, {"x": -4.747898270558837, "y": 2.534784678837744, "z": 0.09569916704448915}, {"x": -4.853151660130706, "y": 2.343356730576251, "z": 0.09884948287863851}, {"x": -4.95014617068419, "y": 2.147940985895435, "z": 0.101831605455586}, {"x": -5.038746741650912, "y": 1.948883195604271, "z": 0.1046410345012133}, {"x": -5.118835322795012, "y": 1.746531905631231, "z": 0.1072736171186094}, {"x": -5.190306367120512, "y": 1.541238462356139, "z": 0.1097255512906894}, {"x": -5.25306811144614, "y": 1.33335910335006, "z": 0.1119934059937148}, {"x": -5.307041148505293, "y": 1.123249087439722, "z": 0.114074025219237}, {"x": -5.352159085395111, "y": 0.9112637507794112, "z": 0.1159644015485138}, {"x": -5.38836873957516, "y": 0.6977579139790488, "z": 0.1176617023957843}, {"x": -5.415629734883662, "y": 0.4830910651834427, "z": 0.1191635651747416}, {"x": -5.433915722370599, "y": 0.2676235914825039, "z": 0.1204679125278287}, {"x": -5.443212091063049, "y": 0.05171621115139138, "z": 0.1215730547525461}, {"x": -5.443520634305374, "y": -0.1642742391413394, "z": 0.1224775374117738}, {"x": -5.43485466753337, "y": -0.3799945166350227, "z": 0.123180092736558}, {"x": -5.41724040065235, "y": -0.595090092854944, "z": 0.1236797924817904}, {"x": -5.390714171045321, "y": -0.809207770092631, "z": 0.1239760491467576}, {"x": -5.355324134116715, "y": -1.021994966201087, "z": 0.1240685033564993}, {"x": -5.311131645470914, "y": -1.233103758806018, "z": 0.1239570132504687}, {"x": -5.258211941638944, "y": -1.442187776564536, "z": 0.1236418088447123}, {"x": -5.196653261948135, "y": -1.648903905186031, "z": 0.1231233736705234}, {"x": -5.126553600062125, "y": -1.852909431188756, "z": 0.1224026600313938}, {"x": -5.048024670275749, "y": -2.053866880732948, "z": 0.1214808466653507}, {"x": -4.961188676356164, "y": -2.251445202575876, "z": 0.1203592257793273}, {"x": -4.866182100308238, "y": -2.445316773252326, "z": 0.1190393468179936}, {"x": -4.763151750529186, "y": -2.635158000136085, "z": 0.117523098074062}, {"x": -4.652255572357763, "y": -2.820646935402752, "z": 0.1158127250522343}, {"x": -4.533663373247924, "y": -3.001468356338787, "z": 0.1139108275576712}, {"x": -4.407558537987134, "y": -3.177313803417865, "z": 0.1118202806244259}, {"x": -4.274137176401172, "y": -3.347884004331967, "z": 0.1095440589876785}, {"x": -4.133604399546625, "y": -3.512883382167955, "z": 0.1070855491313027}, {"x": -3.986175784578429, "y": -3.672022603832995, "z": 0.1044483944194768}, {"x": -3.832074906477269, "y": -3.825018497609207, "z": 0.1016364799061586}, {"x": -3.6715403800458, "y": -3.971595001120571, "z": 0.09865397928234969}, {"x": -3.504822969128484, "y": -4.111485339570382, "z": 0.09550532627557118}, {"x": -3.332185044949907, "y": -4.244428978346835, "z": 0.09219527128914948}, {"x": -3.153897880438409, "y": -4.370174757677151, "z": 0.08872895427730769}, {"x": -2.97024284351191, "y": -4.488480363457986, "z": 0.08511178507742176}, {"x": -2.781512553999205, "y": -4.599116149230234, "z": 0.08134923797544474}, {"x": -2.588010409431825, "y": -4.701860800083025, "z": 0.07744711128635236}, {"x": -2.390050324848983, "y": -4.79650352405478, "z": 0.07341142569599184}, {"x": -2.187952069158191, "y": -4.882842172152281, "z": 0.06924856913429417}, {"x": -1.982047145071013, "y": -4.960685855254175, "z": 0.06496529431099256}, {"x": -1.772676886767332, "y": -5.02985803926857, "z": 0.06056854298604567}, {"x": -1.560194124991958, "y": -5.090194038347838, "z": 0.05606543557325592}, {"x": -1.344958711411392, "y": -5.141542698869086, "z": 0.05146337042957057}, {"x": -1.127336482614923, "y": -5.18376415726036, "z": 0.0467699916775513}, {"x": -0.9076998341956662, "y": -5.21673323948002, "z": 0.04199310953410716}, {"x": -0.6864309788486316, "y": -5.240337392142298, "z": 0.03714085955434074}, {"x": -0.4639230965201089, "y": -5.254480676979497, "z": 0.03222150599387494}, {"x": -0.2405742249509897, "y": -5.259081159341601, "z": 0.02724362200218903}, {"x": -0.01678870293115615, "y": -5.254073679674082, "z": 0.02221605644799609}, {"x": 0.2070268113123322, "y": -5.239411294121, "z": 0.01714778594208871}, {"x": 0.4304585754908793, "y": -5.215063388900665, "z": 0.01204789604528685}, {"x": 0.6530879407299722, "y": -5.181017295061626, "z": 0.00692561665652988}, {"x": 0.8744928705736227, "y": -5.137275753543334, "z": 0.001790324992664015}, {"x": 1.094250774518456, "y": -5.083860039580241, "z": -0.003348411248023121}, {"x": 1.311936771498003, "y": -5.02080877332729, "z": -0.00848075194470624}, {"x": 1.52712168982315, "y": -4.948182244695834, "z": -0.01359687423158174}, {"x": 1.73937511748547, "y": -4.866058601815188, "z": -0.01868681790291969}, {"x": 1.948265734189078, "y": -4.774536679835041, "z": -0.02374058163513937}, {"x": 2.153368469540781, "y": -4.673735841638018, "z": -0.02874817429765917}, {"x": 2.354260358124593, "y": -4.563794750458434, "z": -0.03369954779491834}, {"x": 2.550520756796661, "y": -4.444873153507259, "z": -0.03858462123290077}, {"x": 2.741730020211854, "y": -4.317149534930426, "z": -0.04339333037811662}, {"x": 2.927474332780542, "y": -4.180824099962357, "z": -0.04811558919988684}, {"x": 3.107348134519543, "y": -4.036117648393859, "z": -0.05274129631060303}, {"x": 3.280955239293644, "y": -3.883274866342587, "z": -0.05726059524832081}, {"x": 3.447908586278607, "y": -3.722558735518379, "z": -0.06166368627140799}, {"x": 3.607827988579844, "y": -3.554252195718751, "z": -0.06594097514196914}, {"x": 3.760346929860431, "y": -3.378656591217958, "z": -0.07008305885519586}, {"x": 3.9051107659178, "y": -3.19609237138657, "z": -0.07408063946498421}, {"x": 4.041779889046144, "y": -3.006901330396245, "z": -0.07792461652568983}, {"x": 4.170026827181389, "y": -2.811443420792519, "z": -0.08160617486074846}, {"x": 4.2895389427863, "y": -2.610097176953999, "z": -0.08511674904231192}, {"x": 4.400020989938656, "y": -2.403257463160842, "z": -0.08844808648541945}, {"x": 4.50119925455422, "y": -2.19133850853975, "z": -0.0915924412357147}, {"x": 4.592821521423494, "y": -1.974768762819047, "z": -0.09454234285699079}, {"x": 4.674653430403884, "y": -1.753991985995176, "z": -0.09729076064989214}, {"x": 4.746482055155915, "y": -1.52946281931167, "z": -0.09983103164360362}, {"x": 4.808114410577255, "y": -1.301647874391249, "z": -0.1021568467673491}, {"x": 4.859383985877139, "y": -1.071027593574773, "z": -0.1042624168156177}, {"x": 4.900148869800939, "y": -0.8380932184777649, "z": -0.106142545932296}, {"x": 4.930292209547781, "y": -0.603345042306223, "z": -0.1077925510638781}, {"x": 4.94972080787742, "y": -0.3672872102163178, "z": -0.1092082772836057}, {"x": 4.958368198389044, "y": -0.1304297150296905, "z": -0.1103861943268191}, {"x": 4.956195098312636, "y": 0.1067142855806649, "z": -0.1113232091413742}, {"x": 4.943188135924784, "y": 0.3436252357166364, "z": -0.1120169047845126}, {"x": 4.919361531661417, "y": 0.5797836638643046, "z": -0.1124654185047121}, {"x": 4.884753417618622, "y": 0.814671514920347, "z": -0.1126674287705904}, {"x": 4.839431640981982, "y": 1.047772755510301, "z": -0.1126222872867091}, {"x": 4.783492046162704, "y": 1.27857489763903, "z": -0.1123300532892552}, {"x": 4.71705918214382, "y": 1.506569126656502, "z": -0.1117914216658632}, {"x": 4.640282030955447, "y": 1.731256043227658, "z": -0.1110076878247297}, {"x": 4.553334452587397, "y": 1.952146373163837, "z": -0.1099807054218365}, {"x": 4.456414234051253, "y": 2.168763378106584, "z": -0.1087127653664776}, {"x": 4.349743849093815, "y": 2.380637554767366, "z": -0.1072069146464063}, {"x": 4.23357168894132, "y": 2.587311646097355, "z": -0.1054668127491024}, {"x": 4.108166866502001, "y": 2.788341996737582, "z": -0.1034967147652897}, {"x": 3.973822149319783, "y": 2.983303030706529, "z": -0.1013014334913082}, {"x": 3.830849893507211, "y": 3.171788422571287, "z": -0.09888626221278765}, {"x": 3.679583360110001, "y": 3.353407750171729, "z": -0.09625698475728732}, {"x": 3.520372988901321, "y": 3.527788082638892, "z": -0.09341993338880714}, {"x": 3.353586520783707, "y": 3.694575216433632, "z": -0.09038189137978594}, {"x": 3.179606691804574, "y": 3.853438834560435, "z": -0.0871499445951667}, {"x": 2.998831795088885, "y": 4.004068837592386, "z": -0.08373172545634515}, {"x": 2.811675398925886, "y": 4.146178111428709, "z": -0.08013524061884537}, {"x": 2.618561242615631, "y": 4.27949931397653, "z": -0.07636896039379103}, {"x": 2.41992443322528, "y": 4.403789394080501, "z": -0.07244168709819668}, {"x": 2.216206257061243, "y": 4.518831531926206, "z": -0.068362357944012}, {"x": 2.007856377079619, "y": 4.624432218429267, "z": -0.06414008986820031}, {"x": 1.795329831974671, "y": 4.720419700654823, "z": -0.0597843349285949}, {"x": 1.57908760528774, "y": 4.806642066895237, "z": -0.05530483694836407}, {"x": 1.359593588247903, "y": 4.882972032116851, "z": -0.05071150501142811}, {"x": 1.137315435959338, "y": 4.94930640487657, "z": -0.04601446907095072}, {"x": 0.9127228908677185, "y": 5.00556943448084, "z": -0.04122379113574534}, {"x": 0.6862837800683004, "y": 5.051705642332728, "z": -0.0363496869773421}, {"x": 0.458465199595797, "y": 5.087680774105286, "z": -0.03140249207104048}, {"x": 0.2297287611206231, "y": 5.113482401565133, "z": -0.0263925164109562}, {"x": 0.0005343911525087303, "y": 5.129120680785379, "z": -0.02133002425724721}, {"x": -0.2286623912928697, "y": 5.134628379275267, "z": -0.01622529884122772}, {"x": -0.4574101907898304, "y": 5.130056957925538, "z": -0.01108862295905004}, {"x": -0.6852658367051752, "y": 5.11547713028044, "z": -0.005930289618908649}, {"x": -0.9117934033464813, "y": 5.090977782831675, "z": -0.0007605956212481364}, {"x": -1.136565270339038, "y": 5.056670582590883, "z": 0.004410529021636852}, {"x": -1.359163063590804, "y": 5.012683724189771, "z": 0.009573277646681224}]', 145, 4333, '#DAA520', '2025-11-29 08:12:54.222142', '2025-11-29 08:24:55.298048');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (11, '699', '[{"x": 9.520724242929782, "y": 0.0760124326243353, "z": -0.3803034320772008}, {"x": 9.508558841990592, "y": 0.2429933632492485, "z": -0.3827279049942149}, {"x": 9.49345877801881, "y": 0.4098909185568042, "z": -0.3850337370121341}, {"x": 9.475418909515607, "y": 0.5766526794499917, "z": -0.3872196927911286}, {"x": 9.454436828185944, "y": 0.7432266629594784, "z": -0.3892852092219761}, {"x": 9.430511040034839, "y": 0.9095611809476508, "z": -0.3912295433935647}, {"x": 9.403641935952749, "y": 1.075603815503278, "z": -0.393051989656044}, {"x": 9.373831196127192, "y": 1.241303059632617, "z": -0.394751946035566}, {"x": 9.341079831079227, "y": 1.406606577913217, "z": -0.3963281386055689}, {"x": 9.305389005345063, "y": 1.571460935345656, "z": -0.3977793653526829}, {"x": 9.266760042145211, "y": 1.735812339884737, "z": -0.3991045351371301}, {"x": 9.225195389474624, "y": 1.899606136230969, "z": -0.4003025870692423}, {"x": 9.180699694130533, "y": 2.062788145653948, "z": -0.4013731137929784}, {"x": 9.133279823260686, "y": 2.225304528852942, "z": -0.4023157316176049}, {"x": 9.082944601878644, "y": 2.387102229744207, "z": -0.4031300439205143}, {"x": 9.0297031808498, "y": 2.548129087836125, "z": -0.4038157420669301}, {"x": 8.973565294019378, "y": 2.708331922080908, "z": -0.4043720390960205}, {"x": 8.914540711820631, "y": 2.86765730198462, "z": -0.4047980546079363}, {"x": 8.852638612000161, "y": 3.026050884442595, "z": -0.4050929091551931}, {"x": 8.787870288430666, "y": 3.183457555226811, "z": -0.405255866146972}, {"x": 8.720248320732603, "y": 3.339823782231061, "z": -0.4052867031705259}, {"x": 8.649786541305021, "y": 3.495095958595697, "z": -0.4051852978539895}, {"x": 8.576501563826124, "y": 3.64922120427401, "z": -0.4049516762599324}, {"x": 8.500409707820044, "y": 3.802147760858068, "z": -0.4045858332054979}, {"x": 8.42152812992706, "y": 3.953821857108696, "z": -0.4040874285842124}, {"x": 8.33987594020186, "y": 4.104189549799872, "z": -0.4034560916998939}, {"x": 8.255471715503868, "y": 4.253196737860503, "z": -0.4026912282105202}, {"x": 8.168336149245505, "y": 4.40078854468191, "z": -0.4017924186731125}, {"x": 8.078491775459668, "y": 4.546912743863593, "z": -0.4007597347404399}, {"x": 7.985961167486328, "y": 4.691518227035844, "z": -0.3995932855707729}, {"x": 7.890768919871867, "y": 4.834554223133952, "z": -0.3982934841225763}, {"x": 7.792939759831325, "y": 4.975971267545653, "z": -0.3968607253100545}, {"x": 7.692498703479514, "y": 5.115718276692665, "z": -0.3952951075450827}, {"x": 7.589472891849682, "y": 5.253743090668247, "z": -0.3935968069843745}, {"x": 7.483889983287643, "y": 5.389993613719017, "z": -0.3917656714605418}, {"x": 7.375779213902369, "y": 5.524417491069584, "z": -0.3898016155587824}, {"x": 7.26517146052619, "y": 5.656964183585392, "z": -0.3877050080309844}, {"x": 7.152098228504555, "y": 5.787585025165233, "z": -0.3854762485500323}, {"x": 7.036592410407194, "y": 5.916232392884497, "z": -0.3831160874357397}, {"x": 6.918687396189713, "y": 6.042859148502589, "z": -0.3806253269201026}, {"x": 6.798417831777003, "y": 6.167417841188107, "z": -0.3780045736681174}, {"x": 6.67581993513409, "y": 6.289860921938444, "z": -0.375254526751235}, {"x": 6.55093072499667, "y": 6.410140307713606, "z": -0.372375547449019}, {"x": 6.423788825643509, "y": 6.528208991198454, "z": -0.3693679954324937}, {"x": 6.294432850029895, "y": 6.644021943761031, "z": -0.3662324942708754}, {"x": 6.162901718971939, "y": 6.757534793982387, "z": -0.3629697427658742}, {"x": 6.029235692879109, "y": 6.868704960016874, "z": -0.3595808734938817}, {"x": 5.893474993557796, "y": 6.977489861873406, "z": -0.3560670289625696}, {"x": 5.755662240185272, "y": 7.083845781788767, "z": -0.3524293407253561}, {"x": 5.615842383406273, "y": 7.187730379428048, "z": -0.3486690887311354}, {"x": 5.47406101558478, "y": 7.289101053059861, "z": -0.3447871034877031}, {"x": 5.330365996696525, "y": 7.387916250809314, "z": -0.3407842594091396}, {"x": 5.184804681034364, "y": 7.484137739363542, "z": -0.336661518584435}, {"x": 5.037423455859736, "y": 7.57772774246861, "z": -0.3324197832050277}, {"x": 4.888270233558101, "y": 7.668650018759418, "z": -0.3280605827572708}, {"x": 4.737392685439808, "y": 7.756869387082416, "z": -0.3235854499954023}, {"x": 4.584840125362913, "y": 7.842349440295042, "z": -0.3189959176571085}, {"x": 4.430664698289583, "y": 7.925055169138365, "z": -0.3142938645671493}, {"x": 4.274918987545469, "y": 8.004952244535948, "z": -0.3094806470474439}, {"x": 4.117656882063724, "y": 8.082006816427473, "z": -0.3045575598806534}, {"x": 3.958932314917598, "y": 8.156187587368406, "z": -0.29952598367666}, {"x": 3.798798173749615, "y": 8.227464039734715, "z": -0.2943870717737368}, {"x": 3.637308306773162, "y": 8.295806789974485, "z": -0.2891425957407853}, {"x": 3.474517614513949, "y": 8.361187874028621, "z": -0.2837945178635836}, {"x": 3.310482569051048, "y": 8.423579697747831, "z": -0.2783447678008881}, {"x": 3.145261413946661, "y": 8.482956384210247, "z": -0.2727956449345812}, {"x": 2.978913428635972, "y": 8.539293378534733, "z": -0.267149079989203}, {"x": 2.811498092897131, "y": 8.592567485399265, "z": -0.2614067953453357}, {"x": 2.64307360019074, "y": 8.642756906492988, "z": -0.255570490316826}, {"x": 2.47369782995181, "y": 8.68984022113327, "z": -0.2496416691933344}, {"x": 2.303428667166697, "y": 8.733797439933625, "z": -0.2436222946449809}, {"x": 2.132324559949279, "y": 8.774609109160705, "z": -0.2375146069822651}, {"x": 1.960446787015355, "y": 8.812256718658542, "z": -0.2313209747016733}, {"x": 1.787857605893787, "y": 8.846724302675016, "z": -0.2250440050171111}, {"x": 1.614620080944709, "y": 8.877996727270608, "z": -0.2186860618090695}, {"x": 1.440798402241378, "y": 8.906060940010237, "z": -0.2122493552251256}, {"x": 1.26645457453273, "y": 8.930905583840977, "z": -0.205735846796418}, {"x": 1.091650199505847, "y": 8.95251885723785, "z": -0.1991473458139209}, {"x": 0.916447270228591, "y": 8.97089121808047, "z": -0.1924860496846895}, {"x": 0.7409070047976606, "y": 8.98601435695358, "z": -0.1857543317823954}, {"x": 0.5650930049606115, "y": 8.997880609927858, "z": -0.1789548950790866}, {"x": 0.3890696444468912, "y": 9.006485670769722, "z": -0.172090634598851}, {"x": 0.2129006437899265, "y": 9.011826122159619, "z": -0.1651641711081009}, {"x": 0.03665076638701326, "y": 9.013899299290781, "z": -0.1581781355657894}, {"x": -0.1396167656474418, "y": 9.012704118718112, "z": -0.1511347884411192}, {"x": -0.3158393909252682, "y": 9.008238808367109, "z": -0.1440361448933182}, {"x": -0.4919535876213115, "y": 9.000502991435278, "z": -0.1368846088230901}, {"x": -0.6678962449320959, "y": 8.989498714219627, "z": -0.129682647976249}, {"x": -0.8436029254971653, "y": 8.975229702335941, "z": -0.1224331028361095}, {"x": -1.019008701023655, "y": 8.957702678059022, "z": -0.1151390773302519}, {"x": -1.194049732644318, "y": 8.93692624820342, "z": -0.1078033806798111}, {"x": -1.368662423356815, "y": 8.912909784869262, "z": -0.1004288844225171}, {"x": -1.54278435895335, "y": 8.885662944740204, "z": -0.09301813677550753}, {"x": -1.716353679415322, "y": 8.855195334101646, "z": -0.08557336921094218}, {"x": -1.889308676277109, "y": 8.821517591884277, "z": -0.07809705699913957}, {"x": -2.061587829063776, "y": 8.784641707934817, "z": -0.07059171549825202}, {"x": -2.233128774575007, "y": 8.744582378753863, "z": -0.06306023644348877}, {"x": -2.403869778040437, "y": 8.701356763961451, "z": -0.05550572397369604}, {"x": -2.573749365845853, "y": 8.654982924870664, "z": -0.04793111062546156}, {"x": -2.74270619692701, "y": 8.605480704041957, "z": -0.0403394369628624}, {"x": -2.910680394887823, "y": 8.552869853233904, "z": -0.03273337464867308}, {"x": -3.077611533369129, "y": 8.497169977812547, "z": -0.02511537692606466}, {"x": -3.243439923224702, "y": 8.438402995694474, "z": -0.01748797860078368}, {"x": -3.408107442242437, "y": 8.376591716906201, "z": -0.009853568384878613}, {"x": -3.571555359354015, "y": 8.311761568031695, "z": -0.002215017817866147}, {"x": -3.733726857690288, "y": 8.243940923581246, "z": 0.005424655371083725}, {"x": -3.894566365693643, "y": 8.173157733881144, "z": 0.01306260051886513}, {"x": -4.054017685570198, "y": 8.099441156956347, "z": 0.02069566538362745}, {"x": -4.212026084362633, "y": 8.022820477124597, "z": 0.02832111368833269}, {"x": -4.368536282680788, "y": 7.943323937127483, "z": 0.03593643318146963}, {"x": -4.523492642745309, "y": 7.860982160205222, "z": 0.04353901594225142}, {"x": -4.67684156509231, "y": 7.775827242684726, "z": 0.05112664102224132}, {"x": -4.828529924584241, "y": 7.687893301129497, "z": 0.05869666702041112}, {"x": -4.978506163114785, "y": 7.597217604722178, "z": 0.06624620259319274}, {"x": -5.126720609169305, "y": 7.503837447561057, "z": 0.07377256817746251}, {"x": -5.273123691996039, "y": 7.407790580907871, "z": 0.08127270183689218}, {"x": -5.417666472906451, "y": 7.309115240527236, "z": 0.08874381490190532}, {"x": -5.560300155998515, "y": 7.207849140307798, "z": 0.09618342127243071}, {"x": -5.700976432219643, "y": 7.104031277150147, "z": 0.1035889751540941}, {"x": -5.839648559252282, "y": 6.997701919625914, "z": 0.1109583760447758}, {"x": -5.97627153039092, "y": 6.888902930998387, "z": 0.1182893263650037}, {"x": -6.110802289465325, "y": 6.777677596970755, "z": 0.1255792235648132}, {"x": -6.243198247352027, "y": 6.664069421748117, "z": 0.1328255492528664}, {"x": -6.373417265940473, "y": 6.548122717159051, "z": 0.1400254846180241}, {"x": -6.501417440238271, "y": 6.429881723658998, "z": 0.1471763252006704}, {"x": -6.627156098005007, "y": 6.309391496177438, "z": 0.1542755971853403}, {"x": -6.75059237635897, "y": 6.186698823272768, "z": 0.1613209540749641}, {"x": -6.871687305173484, "y": 6.061850616371625, "z": 0.1683104568217521}, {"x": -6.990403793766132, "y": 5.934895594494232, "z": 0.1752421094130424}, {"x": -7.106708190213913, "y": 5.805883255873244, "z": 0.1821137711380774}, {"x": -7.220566962306224, "y": 5.674862068207427, "z": 0.1889231467973073}, {"x": -7.331946680736549, "y": 5.541881814247295, "z": 0.1956676692082751}, {"x": -7.440814908358818, "y": 5.406991929317389, "z": 0.202344915827373}, {"x": -7.547137691191582, "y": 5.27024183581855, "z": 0.2089524708195141}, {"x": -7.650882605271122, "y": 5.13168318265988, "z": 0.2154881859916384}, {"x": -7.752019657230695, "y": 4.991367197001591, "z": 0.2219504099472036}, {"x": -7.850519901176205, "y": 4.849345758405975, "z": 0.228337403438225}, {"x": -7.946357729269946, "y": 4.705672048332709, "z": 0.234647483914357}, {"x": -8.039508347975303, "y": 4.560398375687974, "z": 0.2408787505366575}, {"x": -8.129946522675347, "y": 4.413578035006517, "z": 0.247028888540003}, {"x": -8.21764839083487, "y": 4.265264998976655, "z": 0.2530957973939397}, {"x": -8.302589794591228, "y": 4.115513186974999, "z": 0.2590773007730754}, {"x": -8.384747820322811, "y": 3.964377628582058, "z": 0.2649714277739069}, {"x": -8.464102214933122, "y": 3.81191287903002, "z": 0.2707767958117405}, {"x": -8.54063427861365, "y": 3.658172823520969, "z": 0.2764920003591388}, {"x": -8.614327395157606, "y": 3.503211193001674, "z": 0.2821157472692508}, {"x": -8.685165521810351, "y": 3.347081573756728, "z": 0.2876465550303874}, {"x": -8.7531324551414, "y": 3.18983831839275, "z": 0.2930825025079443}, {"x": -8.818212202105723, "y": 3.031536444343255, "z": 0.2984217967941568}, {"x": -8.88038899349403, "y": 2.872232292178145, "z": 0.3036625525230415}, {"x": -8.93964914457142, "y": 2.711982646843905, "z": 0.3088030984853223}, {"x": -8.995980634717117, "y": 2.550843347243763, "z": 0.3138422527314673}, {"x": -9.049373405329195, "y": 2.388870023209135, "z": 0.3187788994036895}, {"x": -9.099819957472914, "y": 2.226116826594214, "z": 0.3236121790209126}, {"x": -9.147312613453835, "y": 2.062637689904177, "z": 0.3283409832846503}, {"x": -9.19184442588775, "y": 1.8984879661756, "z": 0.3329638180027761}, {"x": -9.233409220747223, "y": 1.733722477381465, "z": 0.3374793093244733}, {"x": -9.272000298604466, "y": 1.56839727760118, "z": 0.341885846033119}, {"x": -9.307613324457703, "y": 1.40256878303007, "z": 0.3461820813655896}, {"x": -9.340245064053613, "y": 1.236291079835781, "z": 0.3503670923741512}, {"x": -9.369892617327897, "y": 1.069618421542508, "z": 0.3544399452500734}, {"x": -9.396555601524527, "y": 0.9026040281934381, "z": 0.3584001635397056}, {"x": -9.420233660832876, "y": 0.7353003811366561, "z": 0.3622470609303893}, {"x": -9.440926961694103, "y": 0.5677624048977308, "z": 0.3659795265283241}, {"x": -9.458637560742485, "y": 0.4000449210829544, "z": 0.3695966449963357}, {"x": -9.473367725278633, "y": 0.2322028738480192, "z": 0.3730971606642055}, {"x": -9.485121557608101, "y": 0.06429162585438875, "z": 0.3764799876776498}, {"x": -9.4939045266825, "y": -0.1036361275400571, "z": 0.3797444844330609}, {"x": -9.499722048742903, "y": -0.2715288919044461, "z": 0.3828899068502209}, {"x": -9.502580734323356, "y": -0.4393359789330805, "z": 0.3859160104751562}, {"x": -9.5024875969028, "y": -0.6070074816504056, "z": 0.3888225505271429}, {"x": -9.499450166884168, "y": -0.7744919595022415, "z": 0.3916088392887064}, {"x": -9.493477154677237, "y": -0.9417372211379137, "z": 0.3942743472122308}, {"x": -9.484578277059086, "y": -1.108690821146501, "z": 0.3968182714454203}, {"x": -9.472764631646916, "y": -1.275300783256722, "z": 0.3992398046374996}, {"x": -9.458047776142969, "y": -1.44151673179323, "z": 0.4015384987197249}, {"x": -9.440439988547967, "y": -1.607289303623784, "z": 0.4037138866460363}, {"x": -9.419954165724, "y": -1.772570720491245, "z": 0.4057658902434521}, {"x": -9.39660357282262, "y": -1.937313185690882, "z": 0.4076945863072121}, {"x": -9.370403680802944, "y": -2.101467959634904, "z": 0.4094998342219095}, {"x": -9.341370810076695, "y": -2.26498686137126, "z": 0.4111814701670183}, {"x": -9.309522089261788, "y": -2.427821208620411, "z": 0.4127390962633899}, {"x": -9.274876365518447, "y": -2.589923580197224, "z": 0.4141723295996717}, {"x": -9.237451166630827, "y": -2.751248686088306, "z": 0.4154808683053099}, {"x": -9.197264097455768, "y": -2.91175103275115, "z": 0.4166644790914527}, {"x": -9.154333666707963, "y": -3.071386560109881, "z": 0.4177233546491821}, {"x": -9.108677819981276, "y": -3.230111211762598, "z": 0.4186577709506579}, {"x": -9.060317536380905, "y": -3.38787926716834, "z": 0.4194680834787482}, {"x": -9.009275810375874, "y": -3.544646105203532, "z": 0.4201546182175394}, {"x": -8.955575705017223, "y": -3.700367104783527, "z": 0.4207172958029117}, {"x": -8.899242285707821, "y": -3.854998398431748, "z": 0.4211561402220127}, {"x": -8.840299669538357, "y": -4.008498600743104, "z": 0.4214711025037541}, {"x": -8.778770933521143, "y": -4.160826370997864, "z": 0.4216620850027022}, {"x": -8.714680206048124, "y": -4.311941228934741, "z": 0.4217295134786478}, {"x": -8.64805136625725, "y": -4.461803466960061, "z": 0.4216738842262667}, {"x": -8.578910189262562, "y": -4.610372540090889, "z": 0.4214958850065682}, {"x": -8.507284567801927, "y": -4.75760861405231, "z": 0.4211962899236782}, {"x": -8.433202514997383, "y": -4.903472308321962, "z": 0.4207753804601764}, {"x": -8.356692641027804, "y": -5.047924663099211, "z": 0.4202334698483261}, {"x": -8.27778294630804, "y": -5.190927746275784, "z": 0.4195707531191593}, {"x": -8.19650093985535, "y": -5.332443870428246, "z": 0.418787308461448}, {"x": -8.112874504745108, "y": -5.472435833498716, "z": 0.4178836815397252}, {"x": -8.026932271435424, "y": -5.610866688000439, "z": 0.4168605394303579}, {"x": -7.938705259252605, "y": -5.747700436028079, "z": 0.4157188492780269}, {"x": -7.848225693368606, "y": -5.882902241682072, "z": 0.4144596929741352}, {"x": -7.755526417990598, "y": -6.016437578821813, "z": 0.4130837017653062}, {"x": -7.660640457782891, "y": -6.148273571824824, "z": 0.4115914833869492}, {"x": -7.563598916062799, "y": -6.2783774991923, "z": 0.40998340376318}, {"x": -7.464432807746157, "y": -6.40671604550498, "z": 0.4082597447717827}, {"x": -7.363173267557544, "y": -6.533257094896062, "z": 0.4064211859861879}, {"x": -7.259851480575844, "y": -6.657967838914209, "z": 0.4044684646068011}, {"x": -7.154501573081459, "y": -6.780816423851427, "z": 0.4024027761284859}, {"x": -7.047158636378321, "y": -6.901773360194566, "z": 0.4002254536858549}, {"x": -6.937858063912733, "y": -7.020808529680934, "z": 0.3979373877591273}, {"x": -6.82663622653432, "y": -7.137893205208011, "z": 0.3955395129619833}, {"x": -6.713527630700779, "y": -7.252999459622563, "z": 0.3930323823225158}, {"x": -6.598566686882263, "y": -7.366097904925399, "z": 0.3904164300168099}, {"x": -6.481788676152284, "y": -7.477160759993493, "z": 0.3876925314530081}, {"x": -6.363228424452358, "y": -7.586160937550241, "z": 0.3848614777147738}, {"x": -6.242922573913979, "y": -7.693072059748296, "z": 0.3819245530750678}, {"x": -6.120908526867186, "y": -7.797870457617356, "z": 0.3788833369131968}, {"x": -5.997223211450873, "y": -7.900532337580818, "z": 0.3757389374705335}, {"x": -5.871904043006419, "y": -8.001033786823722, "z": 0.372492535302245}, {"x": -5.74498759362993, "y": -8.09935106156202, "z": 0.3691449746361096}, {"x": -5.616510407265339, "y": -8.195459253132901, "z": 0.3656968379100002}, {"x": -5.486510025105415, "y": -8.289334180738019, "z": 0.3621491255304401}, {"x": -5.355024570411111, "y": -8.380952873569154, "z": 0.3585027840405252}, {"x": -5.222093038976953, "y": -8.470294125118802, "z": 0.3547590921538321}, {"x": -5.087754678535341, "y": -8.557338925336671, "z": 0.3509197229231225}, {"x": -4.952049098358864, "y": -8.642068836709472, "z": 0.3469860778137885}, {"x": -4.815015438849083, "y": -8.724465865930695, "z": 0.3429595092968544}, {"x": -4.676692086166633, "y": -8.804511208679674, "z": 0.3388411047281483}, {"x": -4.537118240409074, "y": -8.882185435267965, "z": 0.3346317374817551}, {"x": -4.396332683460814, "y": -8.957470118254562, "z": 0.33033245321664}, {"x": -4.254374640216023, "y": -9.030347080482233, "z": 0.3259443071002731}, {"x": -4.111284442637722, "y": -9.100800229229911, "z": 0.3214686613132772}, {"x": -3.967101184961034, "y": -9.168815376846542, "z": 0.3169071160702169}, {"x": -3.82186498991551, "y": -9.234378010040352, "z": 0.3122612847682489}, {"x": -3.675616655791258, "y": -9.297474540214322, "z": 0.3075327841467733}, {"x": -3.528395878143582, "y": -9.358090491121889, "z": 0.3027228496222129}, {"x": -3.380244288697281, "y": -9.416210636313213, "z": 0.2978326536508213}, {"x": -3.231203475653536, "y": -9.471821941448988, "z": 0.2928633821533055}, {"x": -3.081314001742248, "y": -9.524911895331313, "z": 0.2878160919007523}, {"x": -2.930617368005255, "y": -9.575469751003865, "z": 0.2826922310256618}, {"x": -2.779153277309293, "y": -9.623487096459638, "z": 0.2774933524258972}, {"x": -2.626961104033832, "y": -9.668954709488125, "z": 0.2722211211342909}, {"x": -2.474081641055601, "y": -9.711863480522027, "z": 0.266877423625594}, {"x": -2.320555286706694, "y": -9.752203803459839, "z": 0.2614636955596522}, {"x": -2.166423930521079, "y": -9.789965031873164, "z": 0.2559813227140673}, {"x": -2.011730170640603, "y": -9.825138184516499, "z": 0.2504316776664069}, {"x": -1.856515680527551, "y": -9.857715551528, "z": 0.2448158473158584}, {"x": -1.700822157157875, "y": -9.887690713640243, "z": 0.2391352832789145}, {"x": -1.544690129604258, "y": -9.915058939878914, "z": 0.2333915216791538}, {"x": -1.388159863643601, "y": -9.939815875530613, "z": 0.2275862345617334}, {"x": -1.231272512953223, "y": -9.961957239287116, "z": 0.2217214643219158}, {"x": -1.074069771073614, "y": -9.981478366410865, "z": 0.2157988954393526}, {"x": -0.9165943507233782, "y": -9.998375052833556, "z": 0.2098201176686055}, {"x": -0.7588884565970252, "y": -10.01264390024402, "z": 0.2037866301582647}, {"x": -0.600993635106298, "y": -10.02428201086485, "z": 0.1976996184521422}, {"x": -0.4429507301650748, "y": -10.03328817257636, "z": 0.1915605237691268}, {"x": -0.2847990403684323, "y": -10.03966113754905, "z": 0.1853708115143944}, {"x": -0.1265787315898483, "y": -10.04339965336288, "z": 0.1791321896541207}, {"x": 0.03166915877661814, "y": -10.04450378443885, "z": 0.172846773260894}, {"x": 0.1899026827299811, "y": -10.04297270394222, "z": 0.1665164185680406}, {"x": 0.3480779259183226, "y": -10.03880672998943, "z": 0.1601429779142335}, {"x": 0.5061522039097387, "y": -10.03200808208679, "z": 0.153728048086491}, {"x": 0.6640838286520673, "y": -10.02257852834487, "z": 0.1472728748300456}, {"x": 0.8218316019256398, "y": -10.01052171257664, "z": 0.1407789764727497}, {"x": 0.9793568042765547, "y": -9.995841606516459, "z": 0.1342477330244546}, {"x": 1.136620086399383, "y": -9.978541095138544, "z": 0.1276808188466081}, {"x": 1.293580875120337, "y": -9.958624848329677, "z": 0.1210804474085417}, {"x": 1.450198351837775, "y": -9.936097296343892, "z": 0.1144485628199062}, {"x": 1.606429703374507, "y": -9.910963100257234, "z": 0.1077872020832516}, {"x": 1.762232659618841, "y": -9.883228852877984, "z": 0.1010981549491424}, {"x": 1.917566409375227, "y": -9.852900651609641, "z": 0.0943826957176015}, {"x": 2.072390312973378, "y": -9.819985321205298, "z": 0.08764237855330866}, {"x": 2.226665038926173, "y": -9.78449037404943, "z": 0.08087862713406963}, {"x": 2.380351114340094, "y": -9.746422926107224, "z": 0.07409302301987011}, {"x": 2.533407934747508, "y": -9.705791865806347, "z": 0.0672877700038281}, {"x": 2.685794307399845, "y": -9.662607222542714, "z": 0.06046494813449184}, {"x": 2.837468578957214, "y": -9.616879818336965, "z": 0.05362667233053383}, {"x": 2.988389936221362, "y": -9.568621369418395, "z": 0.04677487939396904}, {"x": 3.138518528567305, "y": -9.517843141353813, "z": 0.03991100161656231}, {"x": 3.287815769808342, "y": -9.464556353631037, "z": 0.03303656145651886}, {"x": 3.436243570507374, "y": -9.408771690883393, "z": 0.02615302562175075}, {"x": 3.583762700471573, "y": -9.35050019827324, "z": 0.01926199721054403}, {"x": 3.730333953115847, "y": -9.289754684726738, "z": 0.01236552790620235}, {"x": 3.875916974764325, "y": -9.226548947357923, "z": 0.005465762679816135}, {"x": 4.020470519796588, "y": -9.160898792876898, "z": -0.001435062918275964}, {"x": 4.163955139235961, "y": -9.092820553603065, "z": -0.00833498005829714}, {"x": 4.30633136550813, "y": -9.022329714309736, "z": -0.01523235738454934}, {"x": 4.447560709506858, "y": -8.94944261820647, "z": -0.0221256126068138}, {"x": 4.587606177730412, "y": -8.874174721504762, "z": -0.02901331880732585}, {"x": 4.726429210946268, "y": -8.796541835699012, "z": -0.0358937956256344}, {"x": 4.863992002840757, "y": -8.71656232653141, "z": -0.04276512539429986}, {"x": 5.000257039590405, "y": -8.634254803452134, "z": -0.04962526188931637}, {"x": 5.135185398159137, "y": -8.549639395898069, "z": -0.05647184749349841}, {"x": 5.268739794922348, "y": -8.462737029172123, "z": -0.06330288254332966}, {"x": 5.400882904275775, "y": -8.373566813538803, "z": -0.07011661459269045}, {"x": 5.531576934269049, "y": -8.282148391185485, "z": -0.07691130503993254}, {"x": 5.660785290163842, "y": -8.188501593593477, "z": -0.08368555811969508}, {"x": 5.788470273496758, "y": -8.092646592839905, "z": -0.09043769009352512}, {"x": 5.914594611122795, "y": -7.994606320080292, "z": -0.09716584375649283}, {"x": 6.039122343213985, "y": -7.894405148592552, "z": -0.1038681511470483}, {"x": 6.162017215694791, "y": -7.792068494389532, "z": -0.1105422659962872}, {"x": 6.283244105403104, "y": -7.687622201152027, "z": -0.1171860990620083}, {"x": 6.402768221723514, "y": -7.581090922623561, "z": -0.123797820220695}, {"x": 6.520554425894153, "y": -7.472498714151313, "z": -0.1303755742850189}, {"x": 6.636567804850255, "y": -7.361869535506237, "z": -0.1369178980065539}, {"x": 6.750773050809138, "y": -7.249228565339184, "z": -0.1434231619812468}, {"x": 6.863135595198463, "y": -7.134602544842801, "z": -0.1498896161695521}, {"x": 6.973621503258244, "y": -7.018019539107716, "z": -0.1563155129365381}, {"x": 7.082197377105108, "y": -6.899509502619096, "z": -0.1626986419852921}, {"x": 7.188830520742503, "y": -6.77910192969805, "z": -0.1690369050333391}, {"x": 7.293487279175721, "y": -6.656825888768561, "z": -0.1753283197847412}, {"x": 7.396134343067938, "y": -6.532711068421405, "z": -0.1815709749811016}, {"x": 7.496738698558728, "y": -6.406786483928355, "z": -0.1877633691441043}, {"x": 7.595267066290567, "y": -6.279083048482288, "z": -0.1939038503164681}, {"x": 7.691688602053656, "y": -6.149633284895254, "z": -0.1999908381204404}, {"x": 7.785973329079098, "y": -6.018469439068641, "z": -0.2060227489558665}, {"x": 7.878091560390075, "y": -5.885625657665534, "z": -0.2119974799336652}, {"x": 7.968014819442514, "y": -5.751135503565727, "z": -0.2179130399569429}, {"x": 8.05571263904622, "y": -5.615031441107353, "z": -0.2237673605864367}, {"x": 8.141153930075332, "y": -5.477347517888268, "z": -0.2295584086715992}, {"x": 8.224308492186116, "y": -5.338117415602658, "z": -0.2352847097940251}, {"x": 8.305145695768472, "y": -5.197376238059607, "z": -0.240944634490827}, {"x": 8.383637144044227, "y": -5.055161413595575, "z": -0.2465366912444311}, {"x": 8.459756403036918, "y": -4.911509957604432, "z": -0.2520595262144968}, {"x": 8.533477420349605, "y": -4.766460170560495, "z": -0.2575112098653217}, {"x": 8.60477510506698, "y": -4.620050701036338, "z": -0.2628898342511259}, {"x": 8.673623421388285, "y": -4.472319235211181, "z": -0.268193376385889}, {"x": 8.739995570146688, "y": -4.323304535425624, "z": -0.2734197345616196}, {"x": 8.803865336141586, "y": -4.173045532817416, "z": -0.2785673927666439}, {"x": 8.865207238035273, "y": -4.021581712071501, "z": -0.2836348422368432}, {"x": 8.923997496989655, "y": -3.868953738407141, "z": -0.2886206853317207}, {"x": 8.980213587386418, "y": -3.715202307538513, "z": -0.293523718410523}, {"x": 9.033834043948016, "y": -3.560368709486695, "z": -0.2983422977298843}, {"x": 9.084837359607778, "y": -3.404494572963202, "z": -0.3030746358443832}, {"x": 9.133200763590928, "y": -3.247622421444983, "z": -0.3077187728612927}, {"x": 9.178901884549969, "y": -3.08979588354361, "z": -0.3122726933952878}, {"x": 9.221918511088, "y": -2.931058814719554, "z": -0.3167348175887082}, {"x": 9.262229831338153, "y": -2.771456421172332, "z": -0.3211037339684715}, {"x": 9.299818050872185, "y": -2.611033690992205, "z": -0.325378246630775}, {"x": 9.334665879268371, "y": -2.44983489749698, "z": -0.3295572273592015}, {"x": 9.366757345309779, "y": -2.287905240829562, "z": -0.3336393162113297}, {"x": 9.396076942996196, "y": -2.125289277701893, "z": -0.3376229966455283}, {"x": 9.422607028480186, "y": -1.962032771300313, "z": -0.341506370898891}, {"x": 9.446330825360613, "y": -1.798183535106406, "z": -0.3452876016583458}, {"x": 9.46723193859825, "y": -1.633788797452138, "z": -0.3489651694321069}, {"x": 9.485294412016044, "y": -1.468897042038927, "z": -0.3525376735632012}, {"x": 9.500505703097469, "y": -1.303556985213598, "z": -0.3560041681579088}, {"x": 9.512853783033766, "y": -1.13781596177547, "z": -0.3593636738047807}, {"x": 9.522327252632076, "y": -0.9717225717515438, "z": -0.3626150118782611}, {"x": 9.528916349523833, "y": -0.8053257772972552, "z": -0.3657570405754081}, {"x": 9.532610154348928, "y": -0.6386753318328403, "z": -0.3687880731578412}, {"x": 9.533398602768818, "y": -0.4718229739796674, "z": -0.3717064285152292}, {"x": 9.531273017401888, "y": -0.3048200075947844, "z": -0.3745107741184287}, {"x": 9.526225061143466, "y": -0.1377174604268799, "z": -0.3771997845181048}, {"x": 9.51824859034313, "y": 0.02943404331403863, "z": -0.3797726600744687}]', 359, 10759, '#F4A460', '2025-11-29 08:13:07.436524', '2025-11-29 08:24:55.370451');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (12, '799', '[{"x": 9.991973138250556, "y": 16.7405403292758, "z": -0.06738815775870297}, {"x": 9.88938972360682, "y": 16.79521217030081, "z": -0.06585530211997802}, {"x": 9.786452241292194, "y": 16.8492706451516, "z": -0.06431946480942888}, {"x": 9.683163944340421, "y": 16.90271298359246, "z": -0.06278151120537344}, {"x": 9.579528634733464, "y": 16.95553625200647, "z": -0.06124099899092687}, {"x": 9.475550910284266, "y": 17.00773800816462, "z": -0.05969873582997467}, {"x": 9.37123429162497, "y": 17.05931640094057, "z": -0.05815413106413831}, {"x": 9.266584384633878, "y": 17.11026966156214, "z": -0.05660739102767523}, {"x": 9.161603982205953, "y": 17.16059712005184, "z": -0.05505883354107044}, {"x": 9.056296196528775, "y": 17.21029694760595, "z": -0.05350828068368234}, {"x": 8.950663189439814, "y": 17.25936668217996, "z": -0.05195624692311843}, {"x": 8.844708543411409, "y": 17.30780352717498, "z": -0.05040172789344521}, {"x": 8.738436226725275, "y": 17.35560378782686, "z": -0.0488457094988043}, {"x": 8.631851323218672, "y": 17.40276466277267, "z": -0.04728777799243417}, {"x": 8.524959108422584, "y": 17.44928449956143, "z": -0.04572873248648397}, {"x": 8.417763357935081, "y": 17.49516239736572, "z": -0.04416786844735943}, {"x": 8.310269254261227, "y": 17.54039735466431, "z": -0.04260542759230058}, {"x": 8.202478976256895, "y": 17.58498861423167, "z": -0.04104164520334633}, {"x": 8.094395799017931, "y": 17.6289338892222, "z": -0.03947640457460094}, {"x": 7.986022581493279, "y": 17.67223083603162, "z": -0.03791015251795329}, {"x": 7.877363765356452, "y": 17.71487717724291, "z": -0.0363419896773311}, {"x": 7.768423712333997, "y": 17.75687042566481, "z": -0.03477301197431742}, {"x": 7.659206915722743, "y": 17.7982093654165, "z": -0.03320276890777086}, {"x": 7.549717023696467, "y": 17.83889295753141, "z": -0.03163195482402319}, {"x": 7.439956585102868, "y": 17.87891965885431, "z": -0.03005972455788608}, {"x": 7.329930212709752, "y": 17.91828721101916, "z": -0.02848641658657442}, {"x": 7.219640581571194, "y": 17.95699337344731, "z": -0.02691228343783787}, {"x": 7.109092587148659, "y": 17.99503519057061, "z": -0.02533729987338145}, {"x": 6.998290728868057, "y": 18.03241109374827, "z": -0.02376181371263762}, {"x": 6.887240462218677, "y": 18.06912021856298, "z": -0.02218501677464085}, {"x": 6.775945956911688, "y": 18.10516172933088, "z": -0.02060806260252398}, {"x": 6.664410529799668, "y": 18.14053555410512, "z": -0.01903038923567282}, {"x": 6.552636598507782, "y": 18.17524057246775, "z": -0.01745256858642992}, {"x": 6.440626507449611, "y": 18.20927459146639, "z": -0.01587371342562318}, {"x": 6.328384955164242, "y": 18.24263490188565, "z": -0.01429437256729434}, {"x": 6.215915049343718, "y": 18.27531909190145, "z": -0.01271483444125101}, {"x": 6.1032222757219, "y": 18.3073247082531, "z": -0.01113507926988138}, {"x": 5.990310995319878, "y": 18.33865103162421, "z": -0.00955528194546076}, {"x": 5.877186143034222, "y": 18.36929736048755, "z": -0.007974722093760982}, {"x": 5.76385131814112, "y": 18.39926251187021, "z": -0.006394586022321366}, {"x": 5.650309749079248, "y": 18.42854572854649, "z": -0.004814189282273613}, {"x": 5.536564701341956, "y": 18.45714519501072, "z": -0.003234046308895605}, {"x": 5.422620183258601, "y": 18.48505888528508, "z": -0.001653350084835777}, {"x": 5.308481795897935, "y": 18.51228527626964, "z": -0.000072888915763364}, {"x": 5.194152738884467, "y": 18.53882363752157, "z": 0.001507131893261408}, {"x": 5.079637719683868, "y": 18.56467316315557, "z": 0.003086856127077156}, {"x": 4.964939392825046, "y": 18.58983371563555, "z": 0.004666273853037249}, {"x": 4.850061300041473, "y": 18.61430374801034, "z": 0.006245934881222317}, {"x": 4.735006436429861, "y": 18.63808082525282, "z": 0.007824619930464108}, {"x": 4.619778489354427, "y": 18.66116293916194, "z": 0.009403119771792348}, {"x": 4.504382151612059, "y": 18.68354764508837, "z": 0.01098090415219791}, {"x": 4.388823025550148, "y": 18.70523354155287, "z": 0.01255865193020407}, {"x": 4.273106953001166, "y": 18.72622033656852, "z": 0.01413543561363649}, {"x": 4.157236705835946, "y": 18.74650828122129, "z": 0.01571128301523586}, {"x": 4.041216471192015, "y": 18.76609701339225, "z": 0.01728647091198209}, {"x": 3.925048492673995, "y": 18.78498604618925, "z": 0.01886101071311643}, {"x": 3.808736581196338, "y": 18.80317331558012, "z": 0.02043519382000025}, {"x": 3.692284250492035, "y": 18.82065668178039, "z": 0.02200782162959818}, {"x": 3.575695700814803, "y": 18.83743485394153, "z": 0.02357979805832705}, {"x": 3.458975640958356, "y": 18.85350638614101, "z": 0.0251505500814074}, {"x": 3.342128804900347, "y": 18.86887078246092, "z": 0.02672067595256404}, {"x": 3.225159399706683, "y": 18.883527512222, "z": 0.02828923479856715}, {"x": 3.108069548754068, "y": 18.89747559997126, "z": 0.02985651244001696}, {"x": 2.990864013757498, "y": 18.91071343018786, "z": 0.03142278648075546}, {"x": 2.873546340592715, "y": 18.92323962255667, "z": 0.03298794714376491}, {"x": 2.756122033976029, "y": 18.93505231050671, "z": 0.03455205186080822}, {"x": 2.638595639075687, "y": 18.9461509582827, "z": 0.03611404678234405}, {"x": 2.520971497121065, "y": 18.95653599461574, "z": 0.0376749736490554}, {"x": 2.403253447389101, "y": 18.9662071997433, "z": 0.03923420911465393}, {"x": 2.285444751131995, "y": 18.97516450810404, "z": 0.04079231450324605}, {"x": 2.167548310316159, "y": 18.98340669504581, "z": 0.0423483698196212}, {"x": 2.049566250200484, "y": 18.99093174883462, "z": 0.04390282753693501}, {"x": 1.931503957068011, "y": 18.99773746706962, "z": 0.04545582642349393}, {"x": 1.813365698874103, "y": 19.00382231104779, "z": 0.04700712041021786}, {"x": 1.695157521886286, "y": 19.00918492042688, "z": 0.048556670513864}, {"x": 1.576883689247305, "y": 19.01382556311331, "z": 0.05010368409780726}, {"x": 1.458548194911059, "y": 19.01774461089601, "z": 0.05164929667226608}, {"x": 1.340154784427384, "y": 19.02094129734655, "z": 0.05319278117554529}, {"x": 1.221707008282506, "y": 19.02341505537587, "z": 0.05473465887342301}, {"x": 1.103208607403746, "y": 19.0251643913763, "z": 0.05627400925280381}, {"x": 0.9846631381894785, "y": 19.02618790594737, "z": 0.05781136234409101}, {"x": 0.8660765245494284, "y": 19.02648485915842, "z": 0.05934669036941154}, {"x": 0.7474524155537919, "y": 19.0260551330676, "z": 0.06087972549992787}, {"x": 0.6287954998240969, "y": 19.02489816526787, "z": 0.06241046528335766}, {"x": 0.5101083661989368, "y": 19.02301384605665, "z": 0.06393836360086255}, {"x": 0.3913944631664497, "y": 19.02040093628279, "z": 0.06546451831747863}, {"x": 0.2726581331804973, "y": 19.01705715231714, "z": 0.06698805314844221}, {"x": 0.1539042293499634, "y": 19.0129811449727, "z": 0.06850945571096353}, {"x": 0.03513811951949472, "y": 19.00817162219073, "z": 0.07002780457871689}, {"x": -0.08363527575019016, "y": 19.00262850516101, "z": 0.07154370736008853}, {"x": -0.2024101721440095, "y": 18.99635250568962, "z": 0.07305704470456903}, {"x": -0.3211837561235591, "y": 18.98934418062687, "z": 0.07456762195146867}, {"x": -0.4399519732747896, "y": 18.98160298460478, "z": 0.07607546688333014}, {"x": -0.5587125344042392, "y": 18.97312830679225, "z": 0.0775801530925684}, {"x": -0.6774613817124985, "y": 18.96391835908842, "z": 0.07908263726833568}, {"x": -0.7961934442464655, "y": 18.95397114480325, "z": 0.0805819193968597}, {"x": -0.9149036170272422, "y": 18.94328600313641, "z": 0.08207849793321988}, {"x": -1.033586846849954, "y": 18.93186227345145, "z": 0.08357149424579623}, {"x": -1.15223879273421, "y": 18.91970010684373, "z": 0.08506164297535986}, {"x": -1.270854384507314, "y": 18.90679941228233, "z": 0.0865487646752745}, {"x": -1.389430502877789, "y": 18.89315945616029, "z": 0.08803270350016751}, {"x": -1.50796177236096, "y": 18.87877897506363, "z": 0.08951342495425699}, {"x": -1.626444262715351, "y": 18.86365736452496, "z": 0.09099053740044143}, {"x": -1.744872168011474, "y": 18.84779381299255, "z": 0.09246486088285133}, {"x": -1.863239804236922, "y": 18.83118833468505, "z": 0.09393536288627416}, {"x": -1.981542732609162, "y": 18.81384189585757, "z": 0.09540260766617943}, {"x": -2.0997771918629, "y": 18.79575447888194, "z": 0.09686578584521735}, {"x": -2.21793986879129, "y": 18.77692598919853, "z": 0.09832575156532768}, {"x": -2.336026141207867, "y": 18.75735519219051, "z": 0.0997822043437262}, {"x": -2.454032184278883, "y": 18.73704027430978, "z": 0.101234945855901}, {"x": -2.571951375975886, "y": 18.71597981124756, "z": 0.1026838472362047}, {"x": -2.689778634126934, "y": 18.69417368840192, "z": 0.1041285959694037}, {"x": -2.807507305406852, "y": 18.67162206330465, "z": 0.1055699552658467}, {"x": -2.92513192369439, "y": 18.64832601475344, "z": 0.107006925195793}, {"x": -3.042648448189666, "y": 18.62428665109575, "z": 0.108440117742151}, {"x": -3.160052970303586, "y": 18.59950368402549, "z": 0.1098687607239542}, {"x": -3.277341381680602, "y": 18.57397702314758, "z": 0.111293766511014}, {"x": -3.394508054304862, "y": 18.54770576767172, "z": 0.1127146376402654}, {"x": -3.511548231913475, "y": 18.52068928635883, "z": 0.1141311188076499}, {"x": -3.628455439665796, "y": 18.49292793094081, "z": 0.1155430783981688}, {"x": -3.745225634525151, "y": 18.46442269407209, "z": 0.1169503873201008}, {"x": -3.861853245098668, "y": 18.43517375328129, "z": 0.118353765370458}, {"x": -3.978333785102802, "y": 18.40518135033793, "z": 0.1197521948444501}, {"x": -4.094662897816021, "y": 18.37444517939236, "z": 0.1211462739315387}, {"x": -4.210835106303846, "y": 18.34296422560883, "z": 0.1225352442202663}, {"x": -4.326844343769714, "y": 18.31073886458731, "z": 0.1239200247114675}, {"x": -4.442683572591041, "y": 18.27776959462332, "z": 0.1252999073049418}, {"x": -4.558347621022043, "y": 18.24405788335519, "z": 0.1266746786976286}, {"x": -4.673830929938344, "y": 18.2096058085402, "z": 0.1280443317505347}, {"x": -4.789130499200331, "y": 18.17441490415279, "z": 0.1294089223890051}, {"x": -4.904241190282391, "y": 18.13848523354618, "z": 0.130769017515641}, {"x": -5.019158838022346, "y": 18.10181680762663, "z": 0.1321235092623982}, {"x": -5.133878616408707, "y": 18.0644092361302, "z": 0.1334729890179236}, {"x": -5.248394319751688, "y": 18.02626220921054, "z": 0.1348167452842088}, {"x": -5.362699711439266, "y": 17.98737710878523, "z": 0.1361556930505328}, {"x": -5.476788332484822, "y": 17.94775513832506, "z": 0.137488967146209}, {"x": -5.590655699686764, "y": 17.90739807202123, "z": 0.1388165134590845}, {"x": -5.704296639928977, "y": 17.86630758210085, "z": 0.1401384601231699}, {"x": -5.817707452477988, "y": 17.82448461012378, "z": 0.141454918675571}, {"x": -5.930881659396704, "y": 17.78192943591838, "z": 0.1427661899615244}, {"x": -6.043814238780564, "y": 17.73864317750581, "z": 0.1440711086888211}, {"x": -6.156499758408607, "y": 17.69462723486913, "z": 0.1453703543580175}, {"x": -6.268932452564494, "y": 17.64988348368078, "z": 0.1466633175374824}, {"x": -6.381107655253921, "y": 17.60441451523335, "z": 0.1479508884858687}, {"x": -6.493020774816794, "y": 17.55822147562882, "z": 0.1492320787426733}, {"x": -6.60466836991458, "y": 17.51130542186073, "z": 0.1505070281970138}, {"x": -6.716045216216187, "y": 17.46366684829928, "z": 0.1517759040948835}, {"x": -6.827146389687047, "y": 17.41530600716396, "z": 0.1530387359852962}, {"x": -6.937964097144841, "y": 17.36622379893614, "z": 0.1542955680069283}, {"x": -7.048492894128181, "y": 17.31642270790825, "z": 0.1555453325934305}, {"x": -7.158727367240035, "y": 17.26590555758295, "z": 0.1567888941189128}, {"x": -7.26866247463799, "y": 17.21467530598095, "z": 0.1580257189827434}, {"x": -7.378294329616147, "y": 17.16273462513048, "z": 0.159256593052718}, {"x": -7.487618639234443, "y": 17.11008449888153, "z": 0.1604804152573612}, {"x": -7.596631619892302, "y": 17.05672635856572, "z": 0.1616975111085593}, {"x": -7.70532754715132, "y": 17.00266138498763, "z": 0.1629079893361012}, {"x": -7.813701358481171, "y": 16.94789106880523, "z": 0.1641117655862055}, {"x": -7.921746333963848, "y": 16.8924177514425, "z": 0.1653087704420972}, {"x": -8.029458791896603, "y": 16.83624432604648, "z": 0.1664981814378277}, {"x": -8.136834265562952, "y": 16.77937290700008, "z": 0.1676810083068417}, {"x": -8.243867978948428, "y": 16.72180541196581, "z": 0.1688566650059488}, {"x": -8.350555299855193, "y": 16.66354351811954, "z": 0.1700257726017144}, {"x": -8.456890558930112, "y": 16.60458829496693, "z": 0.1711871652351673}, {"x": -8.562868712238766, "y": 16.54494256202732, "z": 0.1723413546990642}, {"x": -8.668483647325697, "y": 16.48460932468113, "z": 0.173488357870562}, {"x": -8.773731051166898, "y": 16.4235918741946, "z": 0.1746280473734165}, {"x": -8.878606036589414, "y": 16.36189359456987, "z": 0.1757603647293391}, {"x": -8.983106491834365, "y": 16.2995171618874, "z": 0.1768847250301147}, {"x": -9.08722831241795, "y": 16.23646394071349, "z": 0.178002127213112}, {"x": -9.190966779482943, "y": 16.17273529986044, "z": 0.1791118341580759}, {"x": -9.29431678571804, "y": 16.10833271933196, "z": 0.1802143406776059}, {"x": -9.397272194391697, "y": 16.04325794393059, "z": 0.1813085170706416}, {"x": -9.499828084205971, "y": 15.97751476455209, "z": 0.1823950793931603}, {"x": -9.601978957597696, "y": 15.9111065899388, "z": 0.1834739547820573}, {"x": -9.703721065989559, "y": 15.84403670112161, "z": 0.1845450265412742}, {"x": -9.805049856167912, "y": 15.77630813211086, "z": 0.1856082476663456}, {"x": -9.905962658175007, "y": 15.70792327466168, "z": 0.186663163049336}, {"x": -10.00645417658703, "y": 15.63888406045776, "z": 0.1877106466484531}, {"x": -10.10651937386688, "y": 15.56919326096137, "z": 0.1887498405888586}, {"x": -10.20615357779593, "y": 15.49885403155021, "z": 0.1897812362198381}, {"x": -10.30535210889065, "y": 15.42786960002927, "z": 0.1908038358692904}, {"x": -10.40411200676958, "y": 15.35624391826035, "z": 0.1918185270330529}, {"x": -10.50242918113897, "y": 15.28397926488733, "z": 0.1928251094494878}, {"x": -10.60030013483309, "y": 15.21107761854489, "z": 0.1938234696861524}, {"x": -10.69771967507838, "y": 15.13754097783308, "z": 0.1948135142712042}, {"x": -10.79468369921226, "y": 15.06337164293686, "z": 0.1957948433636225}, {"x": -10.89118566526078, "y": 14.98857277915137, "z": 0.1967682254757346}, {"x": -10.98722074397459, "y": 14.91314877061083, "z": 0.1977328015529192}, {"x": -11.08278514622077, "y": 14.83710389296786, "z": 0.1986891420747206}, {"x": -11.17787540333017, "y": 14.76044190478993, "z": 0.1996363655733669}, {"x": -11.27248935174986, "y": 14.68316639167664, "z": 0.2005754320508826}, {"x": -11.36662298639212, "y": 14.60527915264925, "z": 0.2015059657989719}, {"x": -11.46027253360005, "y": 14.52678242571249, "z": 0.20242784721257}, {"x": -11.55343277593469, "y": 14.44767882150547, "z": 0.2033409187999757}, {"x": -11.64609996417015, "y": 14.36797150269518, "z": 0.2042448714595399}, {"x": -11.7382685674796, "y": 14.28766432170816, "z": 0.2051404667471626}, {"x": -11.82993514881542, "y": 14.20676127467934, "z": 0.2060269003576586}, {"x": -11.92109633247124, "y": 14.12526554900108, "z": 0.2069047688331929}, {"x": -12.01174830205172, "y": 14.04318012529034, "z": 0.2077732249463633}, {"x": -12.10188773534994, "y": 13.96050822743463, "z": 0.2086332371331401}, {"x": -12.19150930939688, "y": 13.87725236879284, "z": 0.2094842555749502}, {"x": -12.28060879437094, "y": 13.79341666155366, "z": 0.2103261950402417}, {"x": -12.36918177256445, "y": 13.70900550622367, "z": 0.2111588956867916}, {"x": -12.45722603618954, "y": 13.6240231765925, "z": 0.211982220069709}, {"x": -12.54473787662168, "y": 13.53847362117743, "z": 0.2127969377152808}, {"x": -12.63171522304695, "y": 13.45235981450003, "z": 0.2136022231468833}, {"x": -12.71815480433519, "y": 13.36568375074685, "z": 0.2143986022952109}, {"x": -12.80405242938213, "y": 13.27844787264288, "z": 0.2151852428447311}, {"x": -12.88940389951953, "y": 13.19065541049175, "z": 0.215963136141803}, {"x": -12.97420339340074, "y": 13.10230968965717, "z": 0.2167316090655933}, {"x": -13.05844725538098, "y": 13.01341584810405, "z": 0.2174906746452716}, {"x": -13.14213203328435, "y": 12.92397850471928, "z": 0.2182402249333454}, {"x": -13.225255953169, "y": 12.83400166206953, "z": 0.2189802907176098}, {"x": -13.30781530971893, "y": 12.74348888839889, "z": 0.2197115474899304}, {"x": -13.38980763352411, "y": 12.65244303590382, "z": 0.2204330516675527}, {"x": -13.47122899259257, "y": 12.56086687660685, "z": 0.2211452586953375}, {"x": -13.55207550497516, "y": 12.46876428748747, "z": 0.221847432639457}, {"x": -13.63234393498986, "y": 12.37613958165139, "z": 0.2225406341803384}, {"x": -13.71203014455206, "y": 12.28299644382692, "z": 0.223224094019517}, {"x": -13.79113227095172, "y": 12.18933919667469, "z": 0.223897930640263}, {"x": -13.86964745457393, "y": 12.09517079694441, "z": 0.2245620772517302}, {"x": -13.94757303116181, "y": 12.00049400205146, "z": 0.2252166617302313}, {"x": -14.02490393933092, "y": 11.90531197809062, "z": 0.2258621579669821}, {"x": -14.10163654946023, "y": 11.8096283006213, "z": 0.2264975150660407}, {"x": -14.17776646002429, "y": 11.71344748768451, "z": 0.2271232520214146}, {"x": -14.25329072087247, "y": 11.61677494507259, "z": 0.2277388231573013}, {"x": -14.32820730791265, "y": 11.51961546555703, "z": 0.2283453178580493}, {"x": -14.40251334459171, "y": 11.42197257967262, "z": 0.2289418175127168}, {"x": -14.47620782046551, "y": 11.32384990918449, "z": 0.2295285232333424}, {"x": -14.54928777981751, "y": 11.22524974457009, "z": 0.2301053814525651}, {"x": -14.62175000319481, "y": 11.12617494871418, "z": 0.2306725531408696}, {"x": -14.69358944016831, "y": 11.02662910415094, "z": 0.2312302892221613}, {"x": -14.76480314273362, "y": 10.9266162628624, "z": 0.2317775651981466}, {"x": -14.8353875780691, "y": 10.82614111282767, "z": 0.2323150968426171}, {"x": -14.90534052905987, "y": 10.72520829083759, "z": 0.2328424843792991}, {"x": -14.97465964116808, "y": 10.62382145415349, "z": 0.2333606955382847}, {"x": -15.04334132845635, "y": 10.52198372887658, "z": 0.2338686223956621}, {"x": -15.11138358949131, "y": 10.4196989822077, "z": 0.2343665746008846}, {"x": -15.17878248339443, "y": 10.31697061814815, "z": 0.2348545067152646}, {"x": -15.24553484058752, "y": 10.2138033350636, "z": 0.2353325988389068}, {"x": -15.31163708451051, "y": 10.11020189254959, "z": 0.2358009399629478}, {"x": -15.37708820376245, "y": 10.00617046192944, "z": 0.2362586564659784}, {"x": -15.44188599609501, "y": 9.901712913466834, "z": 0.2367066477937706}, {"x": -15.50602859589995, "y": 9.796832285206799, "z": 0.2371445001860843}, {"x": -15.56951273737655, "y": 9.69153094092361, "z": 0.2375729471552811}, {"x": -15.63233383836092, "y": 9.585811942290684, "z": 0.2379907663292979}, {"x": -15.69448893129512, "y": 9.479679838741067, "z": 0.2383984617414581}, {"x": -15.75597363488162, "y": 9.373139176783926, "z": 0.2387960070113528}, {"x": -15.81678541250161, "y": 9.266195645901357, "z": 0.2391835967494053}, {"x": -15.87692167853463, "y": 9.158854008453314, "z": 0.239561200572831}, {"x": -15.93638177102363, "y": 9.051118078672602, "z": 0.2399281158026334}, {"x": -15.99516314507716, "y": 8.942991548201245, "z": 0.2402853082817027}, {"x": -16.05326334866637, "y": 8.834477589392, "z": 0.24063222216139}, {"x": -16.11067867469507, "y": 8.725579467127114, "z": 0.2409693917333481}, {"x": -16.16740538019814, "y": 8.616301561012305, "z": 0.2412956468884131}, {"x": -16.22344172634271, "y": 8.506648899951864, "z": 0.2416117473272035}, {"x": -16.278784406646, "y": 8.396625532782357, "z": 0.2419176298147946}, {"x": -16.33343158084084, "y": 8.286235951201572, "z": 0.2422134498308995}, {"x": -16.38738024750015, "y": 8.17548353230471, "z": 0.2424990587949887}, {"x": -16.44062821714173, "y": 8.064371671778678, "z": 0.2427738936699208}, {"x": -16.49317131517279, "y": 7.952904755012661, "z": 0.2430388835612321}, {"x": -16.5450062281388, "y": 7.84108748270972, "z": 0.2432933340079918}, {"x": -16.59612947475141, "y": 7.728925097996167, "z": 0.2435377331061511}, {"x": -16.64653891652355, "y": 7.616423310246578, "z": 0.2437710809010442}, {"x": -16.69623413605818, "y": 7.503587185972175, "z": 0.2439943220325224}, {"x": -16.74521255217204, "y": 7.390420244429504, "z": 0.2442072416827693}, {"x": -16.79347264512327, "y": 7.276926271351227, "z": 0.2444099204349121}, {"x": -16.84101100198289, "y": 7.163108229255888, "z": 0.2446021105731913}, {"x": -16.88782469946651, "y": 7.048970037203965, "z": 0.2447833871223977}, {"x": -16.93390940070876, "y": 6.934516904792008, "z": 0.2449546305491195}, {"x": -16.97926233741997, "y": 6.819754176071879, "z": 0.2451151068338944}, {"x": -17.02388069916172, "y": 6.704687399152102, "z": 0.2452653626929408}, {"x": -17.06776291513208, "y": 6.589321943916313, "z": 0.2454045308894667}, {"x": -17.11090801888771, "y": 6.473662409150037, "z": 0.2455335949064478}, {"x": -17.1533125385629, "y": 6.357712696287521, "z": 0.2456521354811198}, {"x": -17.19497440771237, "y": 6.241477671526493, "z": 0.245760198246763}, {"x": -17.23589022641504, "y": 6.124961956869507, "z": 0.2458574981345278}, {"x": -17.27605814216046, "y": 6.008171309703481, "z": 0.2459437900484027}, {"x": -17.31547576777882, "y": 5.891111541573506, "z": 0.2460199291465422}, {"x": -17.3541421391493, "y": 5.773787341338782, "z": 0.2460851807160599}, {"x": -17.39205523408125, "y": 5.656203086796146, "z": 0.2461401182103112}, {"x": -17.4292132635978, "y": 5.538362853663204, "z": 0.2461838990787976}, {"x": -17.46561383752372, "y": 5.420270738683433, "z": 0.2462174677787914}, {"x": -17.50125232887297, "y": 5.30193159406804, "z": 0.246240261430604}, {"x": -17.53612643035413, "y": 5.1833518108851, "z": 0.2462523853331636}, {"x": -17.57023337649273, "y": 5.064537461985868, "z": 0.2462535773703706}, {"x": -17.60357261412513, "y": 4.945495235921933, "z": 0.2462437814927089}, {"x": -17.63614286129702, "y": 4.826230777105255, "z": 0.2462237926329425}, {"x": -17.66794358911335, "y": 4.706748393311958, "z": 0.2461928275481284}, {"x": -17.69897276569288, "y": 4.587052569886627, "z": 0.2461514162472469}, {"x": -17.72922862392429, "y": 4.467147838271397, "z": 0.2460987057254376}, {"x": -17.75870887970938, "y": 4.347039203859664, "z": 0.2460356547582295}, {"x": -17.78741012136822, "y": 4.226732481348641, "z": 0.2459616705117917}, {"x": -17.81533158595297, "y": 4.10623399565176, "z": 0.2458769662497743}, {"x": -17.84247146910906, "y": 3.98554898585495, "z": 0.2457812849894571}, {"x": -17.86882943274417, "y": 3.864683201950293, "z": 0.2456747142596704}, {"x": -17.89440340477113, "y": 3.743641533922937, "z": 0.2455579223279769}, {"x": -17.9191916687667, "y": 3.622428663983858, "z": 0.2454300338238201}, {"x": -17.94319162737184, "y": 3.501050575141608, "z": 0.2452915357637238}, {"x": -17.96640202563747, "y": 3.379513599327763, "z": 0.2451416494931441}, {"x": -17.98882184717016, "y": 3.257824219344387, "z": 0.2449814395757811}, {"x": -18.0104499202923, "y": 3.135988699649403, "z": 0.2448102963270817}, {"x": -18.03128724684581, "y": 3.014012542835483, "z": 0.2446284741305951}, {"x": -18.05133275637273, "y": 2.891899846102551, "z": 0.2444356731986426}, {"x": -18.07058610785664, "y": 2.769655439278953, "z": 0.2442320896734815}, {"x": -18.08904452406286, "y": 2.64728379467868, "z": 0.244018225572885}, {"x": -18.10670581703988, "y": 2.524790251384516, "z": 0.2437931443536971}, {"x": -18.12356788535822, "y": 2.402181736453742, "z": 0.2435573818162808}, {"x": -18.13963046862878, "y": 2.279465004768831, "z": 0.2433103285828034}, {"x": -18.15489318814387, "y": 2.156646452882351, "z": 0.2430531270446334}, {"x": -18.16935548032115, "y": 2.033731850771252, "z": 0.2427850389606074}, {"x": -18.18301821172316, "y": 1.910726334013951, "z": 0.2425062892148312}, {"x": -18.1958798689929, "y": 1.787634555759916, "z": 0.242216559890638}, {"x": -18.20794017883049, "y": 1.664462466534872, "z": 0.2419161669089816}, {"x": -18.2191972069555, "y": 1.541215710872411, "z": 0.2416054577342227}, {"x": -18.22965070123621, "y": 1.41790047148929, "z": 0.2412835243391653}, {"x": -18.23930077614006, "y": 1.294523133456903, "z": 0.240951029316097}, {"x": -18.24814835615895, "y": 1.171088866321064, "z": 0.2406075081655554}, {"x": -18.25619281131678, "y": 1.047602557243369, "z": 0.2402540466662079}, {"x": -18.26343285983788, "y": 0.9240690308897881, "z": 0.2398896854864937}, {"x": -18.26986820040217, "y": 0.8004936249229516, "z": 0.2395146621311284}, {"x": -18.27549673504818, "y": 0.6768824779299029, "z": 0.2391287414735767}, {"x": -18.28031877284701, "y": 0.5532430187722457, "z": 0.2387323778629959}, {"x": -18.28433378661421, "y": 0.429581666006011, "z": 0.2383257622333227}, {"x": -18.28754336248362, "y": 0.3059047419402531, "z": 0.2379080676804717}, {"x": -18.28994885163365, "y": 0.1822178438089526, "z": 0.2374800729082485}, {"x": -18.29155142351243, "y": 0.05852526763806085, "z": 0.2370413495227398}, {"x": -18.29235025610055, "y": -0.06516832726902601, "z": 0.2365928152227558}, {"x": -18.29234437702808, "y": -0.1888579444983853, "z": 0.2361333310251773}, {"x": -18.29153399492967, "y": -0.3125377851098026, "z": 0.2356632938967252}, {"x": -18.28991808592932, "y": -0.4362013952063582, "z": 0.2351826234701191}, {"x": -18.28749799672253, "y": -0.5598420455967907, "z": 0.2346918411881138}, {"x": -18.28427360275598, "y": -0.6834544483686338, "z": 0.2341909248109034}, {"x": -18.28024641744302, "y": -0.8070329544873401, "z": 0.2336791516334343}, {"x": -18.27541693511243, "y": -0.9305722342709186, "z": 0.2331573699607472}, {"x": -18.26978535065166, "y": -1.054067249454719, "z": 0.232625102882856}, {"x": -18.26335093935996, "y": -1.17751172046921, "z": 0.2320831095648556}, {"x": -18.25611431105627, "y": -1.300899278134096, "z": 0.2315302339964621}, {"x": -18.24807761931186, "y": -1.424223629191968, "z": 0.2309671407975408}, {"x": -18.23924184684493, "y": -1.54747897178751, "z": 0.2303938293780431}, {"x": -18.22960942841863, "y": -1.670660280678714, "z": 0.2298107436226857}, {"x": -18.21918023097924, "y": -1.793763827135141, "z": 0.2292176300414418}, {"x": -18.20795525369192, "y": -1.9167846520319, "z": 0.2286139182698935}, {"x": -18.19593400370316, "y": -2.039717384910646, "z": 0.2280004989169471}, {"x": -18.18311627864943, "y": -2.162556072678852, "z": 0.2273768440489631}, {"x": -18.1695022590952, "y": -2.28529353809353, "z": 0.2267436484365185}, {"x": -18.15509399349611, "y": -2.407923351560081, "z": 0.2260998565632959}, {"x": -18.13989430065595, "y": -2.53043969908338, "z": 0.2254463509864787}, {"x": -18.12390449227736, "y": -2.652837443173201, "z": 0.2247830436638242}, {"x": -18.10712681677804, "y": -2.775111979719057, "z": 0.2241102199992483}, {"x": -18.08956101495154, "y": -2.897259092848214, "z": 0.2234274790673041}, {"x": -18.07120879557135, "y": -3.019272928620702, "z": 0.2227344769344277}, {"x": -18.05207084363709, "y": -3.141147737386532, "z": 0.2220321372368343}, {"x": -18.03214860067552, "y": -3.262877895569282, "z": 0.2213199051131115}, {"x": -18.01144372322699, "y": -3.384457640639782, "z": 0.2205984566336879}, {"x": -17.98995856881863, "y": -3.50588238096546, "z": 0.2198668265023927}, {"x": -17.96769482858718, "y": -3.627147451905995, "z": 0.219125990447773}, {"x": -17.94465261115959, "y": -3.748247950306865, "z": 0.2183756718678861}, {"x": -17.92083326850823, "y": -3.869178457895523, "z": 0.2176160596363328}, {"x": -17.89623675360187, "y": -3.989933104666581, "z": 0.2168467561751899}, {"x": -17.87086622378592, "y": -4.110504939701316, "z": 0.2160676845779543}, {"x": -17.84472397318191, "y": -4.230888297760067, "z": 0.2152797413811923}, {"x": -17.81781293678686, "y": -4.351078279374496, "z": 0.2144823281757758}, {"x": -17.79013564950917, "y": -4.47107045242275, "z": 0.2136760824392778}, {"x": -17.76169444641366, "y": -4.59086137370651, "z": 0.2128600737967007}, {"x": -17.7324904345856, "y": -4.710446695627559, "z": 0.2120353031298698}, {"x": -17.70252373380333, "y": -4.829821444304035, "z": 0.2112013473180634}, {"x": -17.67179616440393, "y": -4.94898002433557, "z": 0.2103584373521189}, {"x": -17.64030865190049, "y": -5.067916602612462, "z": 0.2095062612795514}, {"x": -17.6080651165775, "y": -5.18662514572252, "z": 0.2086449340802939}, {"x": -17.57506768730384, "y": -5.305101176422413, "z": 0.2077752200946608}, {"x": -17.54131881955486, "y": -5.423340284220579, "z": 0.2068964584827177}, {"x": -17.50682037829043, "y": -5.541338003110543, "z": 0.2060092275532449}, {"x": -17.47157435002383, "y": -5.659090027824146, "z": 0.2051126229918481}, {"x": -17.43558249923244, "y": -5.776590720902608, "z": 0.2042077094022128}, {"x": -17.39884681958334, "y": -5.893834726212045, "z": 0.2032940176798606}, {"x": -17.36137096670256, "y": -6.0108172549979, "z": 0.2023718689326371}, {"x": -17.32315718143453, "y": -6.127534091318973, "z": 0.2014409777444406}, {"x": -17.28420940608663, "y": -6.243981313461499, "z": 0.2005015347831378}, {"x": -17.24452851158157, "y": -6.360155910800379, "z": 0.1995541243643899}, {"x": -17.20411573258623, "y": -6.476053581700785, "z": 0.1985980505065896}, {"x": -17.16297212148403, "y": -6.591669216873303, "z": 0.1976338621952708}, {"x": -17.12109978530686, "y": -6.706997461055973, "z": 0.1966607422614537}, {"x": -17.07850151549343, "y": -6.822032106402085, "z": 0.1956798736231116}, {"x": -17.03518048871238, "y": -6.936768316995331, "z": 0.1946907435066813}, {"x": -16.99114075851688, "y": -7.051202194097558, "z": 0.1936936878160623}, {"x": -16.94638467421699, "y": -7.165330219862847, "z": 0.1926883612321822}, {"x": -16.90091580988728, "y": -7.279148866167268, "z": 0.1916750000859421}, {"x": -16.85473469612238, "y": -7.392654835695565, "z": 0.1906540520973294}, {"x": -16.8078433505842, "y": -7.505843344871782, "z": 0.1896248514381207}, {"x": -16.76024398577977, "y": -7.618709601451692, "z": 0.1885879644744546}, {"x": -16.71193964489177, "y": -7.731249253045315, "z": 0.187542699694774}, {"x": -16.66293331555097, "y": -7.843457680384822, "z": 0.1864903132784509}, {"x": -16.61322739957135, "y": -7.955331570878283, "z": 0.1854301512620503}, {"x": -16.56282441228424, "y": -8.066867473607113, "z": 0.1843624904320761}, {"x": -16.51172563002443, "y": -8.178061274220275, "z": 0.1832869341891067}, {"x": -16.45993410732726, "y": -8.288908220413502, "z": 0.1822038376392246}, {"x": -16.4074509081167, "y": -8.399403634789449, "z": 0.181113580041267}, {"x": -16.35427984351161, "y": -8.509542298560143, "z": 0.1800155452473539}, {"x": -16.30042464125711, "y": -8.619320259306974, "z": 0.1789103049357205}, {"x": -16.24588903857578, "y": -8.72873444525333, "z": 0.177797272124406}, {"x": -16.19067576568124, "y": -8.837781747371288, "z": 0.1766776715176719}, {"x": -16.13478630983002, "y": -8.946459834349396, "z": 0.1755506302993968}, {"x": -16.07822217356936, "y": -9.054765069537808, "z": 0.1744164062837185}, {"x": -16.02098445758853, "y": -9.162692740374757, "z": 0.1732746709264807}, {"x": -15.96307640396228, "y": -9.270237723862799, "z": 0.172125964506911}, {"x": -15.90449955262852, "y": -9.377395362295056, "z": 0.1709705708461398}, {"x": -15.84525822090095, "y": -9.484161110349199, "z": 0.1698078675057187}, {"x": -15.78535573341417, "y": -9.590531719539348, "z": 0.168638408375564}, {"x": -15.72479501495904, "y": -9.696503984985407, "z": 0.1674616884120698}, {"x": -15.66357810910325, "y": -9.80207419220991, "z": 0.1662788251584351}, {"x": -15.60170671317238, "y": -9.90723890840832, "z": 0.1650887551869105}, {"x": -15.53918362460919, "y": -10.01199341548118, "z": 0.1638918613006189}, {"x": -15.47601178862272, "y": -10.11633325310479, "z": 0.1626879697391272}, {"x": -15.41219542199434, "y": -10.22025473564055, "z": 0.1614777281744392}, {"x": -15.34773616159022, "y": -10.32375486056449, "z": 0.1602612088892404}, {"x": -15.28263757645067, "y": -10.42683048161453, "z": 0.1590377574503866}, {"x": -15.21690130831127, "y": -10.52947868314164, "z": 0.1578079416000504}, {"x": -15.15052901236175, "y": -10.63169519996582, "z": 0.1565713442252796}, {"x": -15.08352245079492, "y": -10.73347496673951, "z": 0.1553289664262171}, {"x": -15.0158842782885, "y": -10.83481340653684, "z": 0.1540796553331135}, {"x": -14.94761877921889, "y": -10.93570537019466, "z": 0.1528240183836753}, {"x": -14.87872993378993, "y": -11.03614707930575, "z": 0.1515619721800434}, {"x": -14.80922197374082, "y": -11.13613575211835, "z": 0.150294106856032}, {"x": -14.73909645371174, "y": -11.23566879997832, "z": 0.1490202221174497}, {"x": -14.6683568297584, "y": -11.33474307852767, "z": 0.1477397168681269}, {"x": -14.59700457763212, "y": -11.4333551888724, "z": 0.1464532537157618}, {"x": -14.52504206833533, "y": -11.53150039460953, "z": 0.1451605153781373}, {"x": -14.45247199494456, "y": -11.6291740792862, "z": 0.1438623869177668}, {"x": -14.37929765268657, "y": -11.7263725401951, "z": 0.1425576973943911}, {"x": -14.3055231986607, "y": -11.82309154304942, "z": 0.1412472641413569}, {"x": -14.23115161767371, "y": -11.9193279523348, "z": 0.1399309567010196}, {"x": -14.15618581688378, "y": -12.01507855644941, "z": 0.1386092115278892}, {"x": -14.08062715215515, "y": -12.11033939286097, "z": 0.1372816373418643}, {"x": -14.0044798743568, "y": -12.20510582746167, "z": 0.1359478417657808}, {"x": -13.92774686344476, "y": -12.2993735203346, "z": 0.1346086194864958}, {"x": -13.85043255068361, "y": -12.39313804319248, "z": 0.1332636851583032}, {"x": -13.77254099929537, "y": -12.48639628888049, "z": 0.1319137695168858}, {"x": -13.69407586324043, "y": -12.57914608910191, "z": 0.130557716929551}, {"x": -13.61504064066829, "y": -12.67138440433492, "z": 0.1291964885306925}, {"x": -13.53543711357025, "y": -12.76310850357375, "z": 0.1278298170448857}, {"x": -13.45526738489294, "y": -12.85431441263031, "z": 0.126458034301612}, {"x": -13.3745333861962, "y": -12.94499723423718, "z": 0.1250807221154679}, {"x": -13.29324031391081, "y": -13.03515203205195, "z": 0.1236977687392033}, {"x": -13.21139166702134, "y": -13.12477473869095, "z": 0.1223100026278893}, {"x": -13.12899236217653, "y": -13.21386167918424, "z": 0.1209170517068892}, {"x": -13.04604625114078, "y": -13.3024103463988, "z": 0.1195194827529561}, {"x": -12.96255668078084, "y": -13.39041822184633, "z": 0.1181161999852118}, {"x": -12.87852717883446, "y": -13.47788158201544, "z": 0.1167082715612748}, {"x": -12.79396035981349, "y": -13.56479706832107, "z": 0.1152953081417715}, {"x": -12.70885991967392, "y": -13.65116053845931, "z": 0.1138776615524301}, {"x": -12.62322950538715, "y": -13.73696821422906, "z": 0.1124549659571874}, {"x": -12.53707471509163, "y": -13.82221698826043, "z": 0.1110273069915728}, {"x": -12.45039825105521, "y": -13.90690422147795, "z": 0.1095954018975131}, {"x": -12.36320388291265, "y": -13.99102695416659, "z": 0.1081587502740182}, {"x": -12.27549416565566, "y": -14.07458224834561, "z": 0.1067178186971282}, {"x": -12.18727215122367, "y": -14.15756602346817, "z": 0.1052716449180603}, {"x": -12.09854212804325, "y": -14.23997333739988, "z": 0.1038214070445089}, {"x": -12.00930825344482, "y": -14.32180045727757, "z": 0.1023666338219184}, {"x": -11.91957587763267, "y": -14.40304365081635, "z": 0.1009077426348579}, {"x": -11.82934972696754, "y": -14.48370043517134, "z": 0.09944436584146284}, {"x": -11.73863530835014, "y": -14.56376898916343, "z": 0.09797666177700012}, {"x": -11.64743486086629, "y": -14.64324727024856, "z": 0.09650518121922808}, {"x": -11.55575193322791, "y": -14.72213245739346, "z": 0.09502936852233766}, {"x": -11.46358910821379, "y": -14.80042137937299, "z": 0.09354969037772308}, {"x": -11.37095027417666, "y": -14.87810979141597, "z": 0.09206536299347971}, {"x": -11.27784036763377, "y": -14.95519354105845, "z": 0.09057763532095278}, {"x": -11.18426363921587, "y": -15.03166997265808, "z": 0.08908593433331168}, {"x": -11.09022504661636, "y": -15.10753606971177, "z": 0.08759070112563061}, {"x": -10.99572853355047, "y": -15.18278961463431, "z": 0.08609149357551397}, {"x": -10.90077874665821, "y": -15.25742808215439, "z": 0.08458851245609683}, {"x": -10.8053782356602, "y": -15.33144812176357, "z": 0.08308221522357316}, {"x": -10.70953202588901, "y": -15.40484611704131, "z": 0.08157210034083483}, {"x": -10.61324447352408, "y": -15.47761909609617, "z": 0.0800586691320916}, {"x": -10.51652119878674, "y": -15.54976411976775, "z": 0.078541268819128}, {"x": -10.41936748239561, "y": -15.62127917416036, "z": 0.07702114056756315}, {"x": -10.32178675719665, "y": -15.69216324148011, "z": 0.07549757379299739}, {"x": -10.22378276463686, "y": -15.76241393988927, "z": 0.07397099682151098}, {"x": -10.12535838612983, "y": -15.83202873061887, "z": 0.07244090729254749}, {"x": -10.02651788700379, "y": -15.90100396826209, "z": 0.07090764019498041}, {"x": -9.927264720175264, "y": -15.9693355431283, "z": 0.06937164507853912}, {"x": -9.82760513413347, "y": -16.03702005862181, "z": 0.06783247562597905}, {"x": -9.72754416506503, "y": -16.1040552526327, "z": 0.06629060132342625}, {"x": -9.627087814600163, "y": -16.17043907251426, "z": 0.06474543171921053}, {"x": -9.526240919241818, "y": -16.23617019106943, "z": 0.06319815266682718}, {"x": -9.425006599151743, "y": -16.30124741576058, "z": 0.06164791639238336}, {"x": -9.323389098972205, "y": -16.36566798985293, "z": 0.06009516772555935}, {"x": -9.22139240480474, "y": -16.42942944362794, "z": 0.05853943821261696}, {"x": -9.11902183364913, "y": -16.49252883081077, "z": 0.05698127383366037}, {"x": -9.016281498874548, "y": -16.55496368876805, "z": 0.05542106585889377}, {"x": -8.913177258749236, "y": -16.61673238012599, "z": 0.05385832272908408}, {"x": -8.8097129138938, "y": -16.67783348408727, "z": 0.05229343441348507}, {"x": -8.705893275788535, "y": -16.73826490284627, "z": 0.0507258799289068}, {"x": -8.60172216940315, "y": -16.7980244308966, "z": 0.04915679802277152}, {"x": -8.497203110835624, "y": -16.85710938624496, "z": 0.04758525301788255}, {"x": -8.392341961647434, "y": -16.91551635239842, "z": 0.04601177073547302}, {"x": -8.287144458393843, "y": -16.97324338084746, "z": 0.04443597195352698}, {"x": -8.181616978392036, "y": -17.03028875742731, "z": 0.04285856359511928}, {"x": -8.075763934854827, "y": -17.08665183060037, "z": 0.04127974328144569}, {"x": -7.969590627342035, "y": -17.14233236280669, "z": 0.03969891986145086}, {"x": -7.863100018430605, "y": -17.19732927139782, "z": 0.03811647269650011}, {"x": -7.756296483090977, "y": -17.2516403127375, "z": 0.03653203004587328}, {"x": -7.649183767525765, "y": -17.30526307035536, "z": 0.03494669981536852}, {"x": -7.541766236342901, "y": -17.3581948678014, "z": 0.03335948518280563}, {"x": -7.434050438243784, "y": -17.41043316919755, "z": 0.03177100888043918}, {"x": -7.326041934798399, "y": -17.46197707995337, "z": 0.0301809498070739}, {"x": -7.217746361018813, "y": -17.51282538662375, "z": 0.0285900560075937}, {"x": -7.109167476331719, "y": -17.56297747327542, "z": 0.02699824537328738}, {"x": -7.000310467331761, "y": -17.61243236353046, "z": 0.02540490840577732}, {"x": -6.891179268806738, "y": -17.6611880653585, "z": 0.02381055997500969}, {"x": -6.781779873197919, "y": -17.709242554039, "z": 0.02221501032497578}, {"x": -6.672117222563402, "y": -17.75659482397737, "z": 0.02061926531509961}, {"x": -6.562196498654201, "y": -17.80324415281031, "z": 0.01902224030525573}, {"x": -6.452023638684265, "y": -17.84919008840038, "z": 0.01742464794361308}, {"x": -6.341602450133113, "y": -17.89443284437662, "z": 0.0158261703432879}, {"x": -6.230936929894679, "y": -17.93897103308051, "z": 0.01422751237609417}, {"x": -6.120030171364852, "y": -17.98280317565885, "z": 0.01262835530643443}, {"x": -6.008887772898403, "y": -18.02592719156866, "z": 0.01102824330998877}, {"x": -5.897514875803676, "y": -18.06834076391791, "z": 0.009427888304888738}, {"x": -5.78591843669653, "y": -18.11004271002132, "z": 0.007827171722056148}, {"x": -5.674103591221861, "y": -18.15103320474822, "z": 0.006226882898677116}, {"x": -5.562075660794237, "y": -18.19131249945152, "z": 0.004625863476925314}, {"x": -5.449839998329957, "y": -18.23088081006638, "z": 0.0030249405974489}, {"x": -5.337399809936469, "y": -18.26973831391406, "z": 0.001423780559019536}, {"x": -5.224759362308528, "y": -18.3078835443815, "z": -0.0001769549267517225}, {"x": -5.111922572182325, "y": -18.34531556595962, "z": -0.001777708268393943}, {"x": -4.998895509262494, "y": -18.38203329651084, "z": -0.003378687600118975}, {"x": -4.885683059628055, "y": -18.41803591641162, "z": -0.004979091521731592}, {"x": -4.772291008392601, "y": -18.45332355030054, "z": -0.006579133420579345}, {"x": -4.658722936026438, "y": -18.48789659477871, "z": -0.008178267760138483}, {"x": -4.544983364484083, "y": -18.52175461115925, "z": -0.009777627118318472}, {"x": -4.431077280570971, "y": -18.55489673146058, "z": -0.01137622172257163}, {"x": -4.317008643310203, "y": -18.58732212553292, "z": -0.01297439764674929}, {"x": -4.20278336496048, "y": -18.61902956558374, "z": -0.01457152496959589}, {"x": -4.088406689408324, "y": -18.65001955979304, "z": -0.01616811779701239}, {"x": -3.973884844108027, "y": -18.68029277904491, "z": -0.01776417480253989}, {"x": -3.859221777056168, "y": -18.70985022736312, "z": -0.019358967970522}, {"x": -3.744421637137099, "y": -18.73869303275892, "z": -0.02095287828282609}, {"x": -3.629486599730883, "y": -18.76682126660839, "z": -0.02254549578152417}, {"x": -3.514420839834962, "y": -18.79423376909682, "z": -0.02413779295193175}, {"x": -3.399229307983008, "y": -18.8209293169072, "z": -0.02572861722455737}, {"x": -3.283916372849265, "y": -18.84690718618933, "z": -0.02731837473975415}, {"x": -3.16848814090854, "y": -18.87216700378153, "z": -0.02890649267235091}, {"x": -3.052949338452903, "y": -18.89671007219729, "z": -0.03049356096784287}, {"x": -2.937305240790187, "y": -18.92053707105492, "z": -0.03207943795603892}, {"x": -2.821559052833912, "y": -18.94364865030104, "z": -0.03366354662194796}, {"x": -2.705714939764753, "y": -18.96604522361497, "z": -0.03524635915228943}, {"x": -2.589776092555026, "y": -18.98772637249899, "z": -0.03682744687764347}, {"x": -2.473747959451276, "y": -19.00869172922862, "z": -0.03840758439668456}, {"x": -2.357635581197585, "y": -19.02894178140838, "z": -0.0399855644195421}, {"x": -2.241442679929753, "y": -19.04847739150685, "z": -0.04156192750987347}, {"x": -2.125173814401208, "y": -19.067299315601, "z": -0.04313616908479276}, {"x": -2.00883176300981, "y": -19.08540875513163, "z": -0.04470894949102652}, {"x": -1.892420510776023, "y": -19.10280507355704, "z": -0.04627999762150919}, {"x": -1.775943108705438, "y": -19.11948755079492, "z": -0.04784884728521954}, {"x": -1.659404560799661, "y": -19.13545566688481, "z": -0.04941594595884612}, {"x": -1.542809373759892, "y": -19.15070899353298, "z": -0.05098081367411972}, {"x": -1.426163774398148, "y": -19.16524819027857, "z": -0.05254412379618672}, {"x": -1.309472377681199, "y": -19.1790749160359, "z": -0.05410473494459443}, {"x": -1.192738332097441, "y": -19.19219070452058, "z": -0.05566333426965722}, {"x": -1.075965306589471, "y": -19.20459652202331, "z": -0.05721944748410226}, {"x": -0.9591554635759278, "y": -19.21629308931024, "z": -0.05877374804033662}, {"x": -0.8423129768175486, "y": -19.22727930422277, "z": -0.06032579011860804}, {"x": -0.7254412651194854, "y": -19.23755477760734, "z": -0.0618751709121823}, {"x": -0.6085452906455355, "y": -19.24711963439428, "z": -0.06342230156470398}, {"x": -0.4916290740312677, "y": -19.25597414768885, "z": -0.06496673761089433}, {"x": -0.3746977376762338, "y": -19.26411929295331, "z": -0.06650914419019824}, {"x": -0.2577544798098415, "y": -19.27155602932596, "z": -0.06804846002076259}, {"x": -0.1408022015793045, "y": -19.278284500492, "z": -0.06958545095395895}, {"x": -0.02384522217892478, "y": -19.28430442215252, "z": -0.07111960351765051}, {"x": 0.09311280152150973, "y": -19.28961589397699, "z": -0.07265154272077944}, {"x": 0.2100660757685156, "y": -19.29421857533367, "z": -0.07418064641107175}, {"x": 0.3270106188220676, "y": -19.29811386026412, "z": -0.07570661562430075}, {"x": 0.4439420999754283, "y": -19.30130339134308, "z": -0.07722989149149603}, {"x": 0.5608577877124901, "y": -19.30378834660717, "z": -0.078750133594232}, {"x": 0.6777540978903872, "y": -19.3055695274481, "z": -0.08026797864504598}, {"x": 0.7946288806205446, "y": -19.30664663563341, "z": -0.0817823585653255}, {"x": 0.9114788044274267, "y": -19.30701867272901, "z": -0.08329405103122522}, {"x": 1.02829871244142, "y": -19.30668501604432, "z": -0.08480249499473971}, {"x": 1.14508414264277, "y": -19.30564595374534, "z": -0.08630827526104701}, {"x": 1.261829083587636, "y": -19.30390190807471, "z": -0.08781065273722577}, {"x": 1.378530089252826, "y": -19.30145488584684, "z": -0.08930951388728488}, {"x": 1.495183350548079, "y": -19.29830624496566, "z": -0.09080536194097627}, {"x": 1.61178608442859, "y": -19.29445662438066, "z": -0.09229791361316042}, {"x": 1.728334113582823, "y": -19.28990637016676, "z": -0.09378765900787397}, {"x": 1.844824387542578, "y": -19.28465526470837, "z": -0.09527346677219438}, {"x": 1.961252668434915, "y": -19.27870348697806, "z": -0.09675616747407371}, {"x": 2.077614047779424, "y": -19.27205194665551, "z": -0.09823521382406476}, {"x": 2.193905054974837, "y": -19.26470177970203, "z": -0.0997111684392438}, {"x": 2.310121250055759, "y": -19.25665360051051, "z": -0.1011832293578067}, {"x": 2.426260577475706, "y": -19.24790855606819, "z": -0.1026515074594036}, {"x": 2.542319272959289, "y": -19.23846624785517, "z": -0.104116497223433}, {"x": 2.658293403674609, "y": -19.22832612007585, "z": -0.1055778433602702}, {"x": 2.77417730698714, "y": -19.21748832245203, "z": -0.1070358285875992}, {"x": 2.889966679623651, "y": -19.20595340313391, "z": -0.1084893473785697}, {"x": 3.005656590498427, "y": -19.19372307755857, "z": -0.1099393857006516}, {"x": 3.121242624929581, "y": -19.18079957459557, "z": -0.1113854258130074}, {"x": 3.236722137832, "y": -19.16718449005497, "z": -0.1128279767078577}, {"x": 3.352091662828056, "y": -19.15287838053574, "z": -0.1142661935227973}, {"x": 3.467349473881642, "y": -19.13788184815246, "z": -0.115700382906519}, {"x": 3.582491061143427, "y": -19.12219406833849, "z": -0.117130921440674}, {"x": 3.697511880591022, "y": -19.10581498566896, "z": -0.1185573257659066}, {"x": 3.812406474539176, "y": -19.0887455322891, "z": -0.1199797582585182}, {"x": 3.927171151418319, "y": -19.07098682373358, "z": -0.1213972916929938}, {"x": 4.04180164270477, "y": -19.05254062518115, "z": -0.1228110900535512}, {"x": 4.156294187619295, "y": -19.03340829793974, "z": -0.1242205717484575}, {"x": 4.27064566481236, "y": -19.01359025005626, "z": -0.1256261299044431}, {"x": 4.384851449748993, "y": -18.99308664332456, "z": -0.1270268921069976}, {"x": 4.49890829571648, "y": -18.9718986428007, "z": -0.1284233330568344}, {"x": 4.612810491397592, "y": -18.95002696266609, "z": -0.129815665987444}, {"x": 4.726553861691186, "y": -18.92747354721547, "z": -0.1312033360128829}, {"x": 4.840134555099964, "y": -18.90424050596897, "z": -0.13258651774781}, {"x": 4.953550494358732, "y": -18.88032906720376, "z": -0.1339645290261031}, {"x": 5.066798344531255, "y": -18.85574007911144, "z": -0.1353385886945714}, {"x": 5.179874515266755, "y": -18.83047340404619, "z": -0.1367079052960908}, {"x": 5.292774870062996, "y": -18.80452864456702, "z": -0.1380727578904129}, {"x": 5.405493761371212, "y": -18.77790628049549, "z": -0.1394323275669491}, {"x": 5.518027180534731, "y": -18.7506081862905, "z": -0.1407872585059604}, {"x": 5.63036916783473, "y": -18.72263600120741, "z": -0.1421376011616886}, {"x": 5.742516203992404, "y": -18.69399236500937, "z": -0.1434828182285356}, {"x": 5.854465067675512, "y": -18.66467923803816, "z": -0.1448231578071169}, {"x": 5.96621346270372, "y": -18.63469757685169, "z": -0.1461581091590626}, {"x": 6.077757245983775, "y": -18.60404826063587, "z": -0.1474887695100642}, {"x": 6.189092285470013, "y": -18.57273170359083, "z": -0.1488141029017779}, {"x": 6.300214287047338, "y": -18.54074884481058, "z": -0.1501344033144373}, {"x": 6.411118446860205, "y": -18.50810146919265, "z": -0.1514490047531568}, {"x": 6.521801903325557, "y": -18.47479174099378, "z": -0.1527586849629194}, {"x": 6.632259856865391, "y": -18.44082084194531, "z": -0.154063324734265}, {"x": 6.742489592809306, "y": -18.40619027154128, "z": -0.1553624485175376}, {"x": 6.852487286699782, "y": -18.37090051256691, "z": -0.1566563353832576}, {"x": 6.962248928024327, "y": -18.33495212929026, "z": -0.1579445287074425}, {"x": 7.071768760225817, "y": -18.29834678980388, "z": -0.1592279462839533}, {"x": 7.181042029929786, "y": -18.26108638607926, "z": -0.1605054257524411}, {"x": 7.290064718032609, "y": -18.22317369758058, "z": -0.1617774172036732}, {"x": 7.398833299596216, "y": -18.1846116772244, "z": -0.1630434106169943}, {"x": 7.507346049581676, "y": -18.14540236617593, "z": -0.1643042145260384}, {"x": 7.615598896195774, "y": -18.10554631827332, "z": -0.1655595047511938}, {"x": 7.723589217679853, "y": -18.06504439091493, "z": -0.1668088659606718}, {"x": 7.831312382996197, "y": -18.02389682775325, "z": -0.1680525578563909}, {"x": 7.938763768114115, "y": -17.98210489219049, "z": -0.1692901534939453}, {"x": 8.045937817711476, "y": -17.93967104057949, "z": -0.1705224608637726}, {"x": 8.152830495205173, "y": -17.89659749132633, "z": -0.1717483277325889}, {"x": 8.25943834076238, "y": -17.85288690399124, "z": -0.1729683886249136}, {"x": 8.3657579862963, "y": -17.80854149626262, "z": -0.1741821804654407}, {"x": 8.4717866160353, "y": -17.76356261838204, "z": -0.1753904296959302}, {"x": 8.577518855503314, "y": -17.71795132513239, "z": -0.1765926078475779}, {"x": 8.68295136115681, "y": -17.67170993857697, "z": -0.1777883958634364}, {"x": 8.788079413421453, "y": -17.6248405020844, "z": -0.1789780490931522}, {"x": 8.892899541447111, "y": -17.57734589829409, "z": -0.1801612207403169}, {"x": 8.99740807188175, "y": -17.52922898604359, "z": -0.1813386789337218}, {"x": 9.101602466733391, "y": -17.48049126625342, "z": -0.1825093177243733}, {"x": 9.205479664266345, "y": -17.43113417025188, "z": -0.1836738604678843}, {"x": 9.309035741655613, "y": -17.38115874615238, "z": -0.1848317727360124}, {"x": 9.412266373149414, "y": -17.33056615670573, "z": -0.1859836866086372}, {"x": 9.515165239546363, "y": -17.27935843904496, "z": -0.1871289539238891}, {"x": 9.61772888179536, "y": -17.22753915353703, "z": -0.1882674068063796}, {"x": 9.719952839665012, "y": -17.17511145730712, "z": -0.1893993249405802}, {"x": 9.821834494712732, "y": -17.12207891991827, "z": -0.1905244690920515}, {"x": 9.923370896125205, "y": -17.06844420043943, "z": -0.1916435379913714}, {"x": 10.02455951588695, "y": -17.0142086055272, "z": -0.1927554020910519}, {"x": 10.12539684831768, "y": -16.95937389872137, "z": -0.193860787108665}, {"x": 10.22587883199333, "y": -16.90394184886395, "z": -0.1949590941646619}, {"x": 10.32600130446651, "y": -16.84791473937473, "z": -0.1960509491495211}, {"x": 10.42575910778183, "y": -16.79129549871104, "z": -0.1971356646269702}, {"x": 10.52515017443355, "y": -16.73408754632011, "z": -0.1982132321178887}, {"x": 10.62417074329984, "y": -16.67629322802937, "z": -0.1992839465384218}, {"x": 10.72281809253896, "y": -16.61791505283465, "z": -0.2003476290010398}, {"x": 10.82108807414113, "y": -16.55895488134651, "z": -0.2014048130014669}, {"x": 10.91897663961814, "y": -16.49941471575232, "z": -0.2024543150907435}, {"x": 11.01647943427899, "y": -16.43929812807074, "z": -0.2034969151730953}, {"x": 11.11359273917538, "y": -16.37860877955299, "z": -0.2045320453490063}, {"x": 11.21031357675729, "y": -16.31735054631988, "z": -0.2055603832266129}, {"x": 11.30663883054197, "y": -16.2555269094385, "z": -0.2065812006385036}, {"x": 11.40256791873841, "y": -16.19314052193486, "z": -0.2075946056337498}, {"x": 11.49809735865294, "y": -16.13019277826294, "z": -0.2086008600515326}, {"x": 11.59322403458004, "y": -16.06668571111714, "z": -0.2095997802506975}, {"x": 11.68794313070675, "y": -16.00262128048882, "z": -0.2105916996216875}, {"x": 11.78225056382719, "y": -15.93800245272347, "z": -0.2115754692222317}, {"x": 11.87614258398429, "y": -15.87283364416576, "z": -0.2125520342455272}, {"x": 11.96961625421811, "y": -15.80711861483993, "z": -0.2135208930006205}, {"x": 12.06266906779767, "y": -15.74086097945159, "z": -0.2144827165692386}, {"x": 12.15529814618086, "y": -15.67406376265965, "z": -0.2154366712219142}, {"x": 12.24750219957542, "y": -15.60672950289037, "z": -0.2163829489153928}, {"x": 12.33927696370792, "y": -15.53886060100186, "z": -0.2173217652758163}, {"x": 12.43061954605491, "y": -15.47046061612243, "z": -0.2182529225835329}, {"x": 12.52152620012103, "y": -15.40153273144616, "z": -0.2191766025315962}, {"x": 12.61199479602406, "y": -15.3320806394048, "z": -0.2200918159791012}, {"x": 12.70202343793911, "y": -15.26210820544322, "z": -0.2209997049001578}, {"x": 12.79161002658675, "y": -15.19161765148046, "z": -0.2218997383122462}, {"x": 12.88075177730595, "y": -15.12061119667402, "z": -0.2227924601474841}, {"x": 12.96944506289023, "y": -15.04909119356427, "z": -0.2236769271341134}, {"x": 13.0576872991291, "y": -14.97706058984394, "z": -0.2245534801732939}, {"x": 13.14547360943914, "y": -14.90452313203045, "z": -0.2254223220637163}, {"x": 13.23280172111679, "y": -14.83148367142079, "z": -0.2262832481833109}, {"x": 13.31966906631912, "y": -14.75794616078221, "z": -0.2271363578042386}, {"x": 13.40607502958208, "y": -14.68391444878388, "z": -0.2279808833340058}, {"x": 13.49201853620823, "y": -14.60939164077946, "z": -0.2288180590663996}, {"x": 13.57749740526314, "y": -14.53437928080987, "z": -0.2296471760706601}, {"x": 13.66250868561019, "y": -14.45887967723557, "z": -0.2304686308825621}, {"x": 13.74704919992359, "y": -14.3828956297026, "z": -0.2312814947338847}, {"x": 13.831116869448, "y": -14.30643059790973, "z": -0.2320863500096736}, {"x": 13.91470788206635, "y": -14.22948838834882, "z": -0.2328833686870128}, {"x": 13.9978212051652, "y": -14.1520729206444, "z": -0.2336723139401871}, {"x": 14.08045457600859, "y": -14.07418682230613, "z": -0.2344532354228194}, {"x": 14.16260674388528, "y": -13.99583296268987, "z": -0.2352255542485277}, {"x": 14.24427514729829, "y": -13.91701412995672, "z": -0.2359904473356361}, {"x": 14.32545648624169, "y": -13.83773293410676, "z": -0.2367469872245311}, {"x": 14.40614803352805, "y": -13.75799344490358, "z": -0.2374955481591277}, {"x": 14.4863480710274, "y": -13.67779965752884, "z": -0.2382353513758}, {"x": 14.56605610775129, "y": -13.59715534919222, "z": -0.2389672105774007}, {"x": 14.64526998378579, "y": -13.51606347838941, "z": -0.2396911655972322}, {"x": 14.72398952504064, "y": -13.43452620510999, "z": -0.240406903584231}, {"x": 14.80221200388111, "y": -13.35254485399299, "z": -0.2411144399931389}, {"x": 14.87993522654084, "y": -13.27012192661712, "z": -0.2418133510010691}, {"x": 14.95715568457936, "y": -13.18726035224714, "z": -0.2425046903475006}, {"x": 15.0338700113124, "y": -13.10396351741832, "z": -0.2431873998219504}, {"x": 15.11007618939178, "y": -13.02023606413752, "z": -0.2438619755926182}, {"x": 15.18577323215767, "y": -12.93608173301242, "z": -0.2445278082347968}, {"x": 15.26096066531392, "y": -12.85150377268655, "z": -0.2451858044718402}, {"x": 15.33563612161024, "y": -12.76650467528346, "z": -0.245835758485383}, {"x": 15.40979890836772, "y": -12.68108659356184, "z": -0.2464773003421915}, {"x": 15.48344597939417, "y": -12.59525177110692, "z": -0.2471104773048611}, {"x": 15.55657572123875, "y": -12.50900374216659, "z": -0.2477350246959288}, {"x": 15.6291856679237, "y": -12.42234570125064, "z": -0.248351872827162}, {"x": 15.70127402913831, "y": -12.33528072127569, "z": -0.2489599364117986}, {"x": 15.77283993707463, "y": -12.24781214596768, "z": -0.2495598700714136}, {"x": 15.8438821654582, "y": -12.15994184899034, "z": -0.2501511153330148}, {"x": 15.91439875540116, "y": -12.07167197195297, "z": -0.2507345164931336}, {"x": 15.98438591690757, "y": -11.98300503045305, "z": -0.2513096237023795}, {"x": 16.05384184826928, "y": -11.89394419209837, "z": -0.2518761269737905}, {"x": 16.12276335078376, "y": -11.8044933320371, "z": -0.2524341732793555}, {"x": 16.19114981403511, "y": -11.71465711331336, "z": -0.252983639446119}, {"x": 16.25899996472464, "y": -11.6244388042284, "z": -0.2535253309244648}, {"x": 16.32631322152131, "y": -11.53384090908912, "z": -0.2540581667653886}, {"x": 16.3930890120987, "y": -11.44286568888857, "z": -0.2545828826226766}, {"x": 16.45932537240992, "y": -11.35151432780179, "z": -0.2550988550167053}, {"x": 16.52501959506719, "y": -11.25978921202235, "z": -0.2556068525593429}, {"x": 16.59016805905111, "y": -11.1676933687222, "z": -0.2561062999938402}, {"x": 16.65476938236104, "y": -11.07523032982344, "z": -0.2565970553844364}, {"x": 16.7188210257094, "y": -10.98240386403184, "z": -0.2570793554333606}, {"x": 16.78232282095277, "y": -10.88921769857967, "z": -0.2575531526649746}, {"x": 16.84527279872806, "y": -10.79567408464614, "z": -0.258019092048889}, {"x": 16.90766929050974, "y": -10.70177541645614, "z": -0.2584760782352265}, {"x": 16.96951058215228, "y": -10.6075246793352, "z": -0.2589248671049488}, {"x": 17.03079423670057, "y": -10.5129246229823, "z": -0.2593647867923285}, {"x": 17.0915183294516, "y": -10.41797921726048, "z": -0.2597966238730319}, {"x": 17.15168107914169, "y": -10.32269200241365, "z": -0.260219767893971}, {"x": 17.21128263889532, "y": -10.22706599444133, "z": -0.2606342428882471}, {"x": 17.27032132787684, "y": -10.13110359741406, "z": -0.2610402847866126}, {"x": 17.3287966955264, "y": -10.03480682666494, "z": -0.2614378357506826}, {"x": 17.38670536996826, "y": -9.938177154163375, "z": -0.2618273606374554}, {"x": 17.44404457024319, "y": -9.841217396167618, "z": -0.262207775448375}, {"x": 17.5008119130014, "y": -9.743931336782785, "z": -0.2625798809665953}, {"x": 17.55700498766074, "y": -9.646322804330126, "z": -0.2629430440183282}, {"x": 17.61262253627837, "y": -9.548396422395136, "z": -0.2632981241137637}, {"x": 17.6676635888232, "y": -9.450155472462631, "z": -0.2636444457502715}, {"x": 17.72212836992077, "y": -9.351602576036267, "z": -0.263982106672096}, {"x": 17.77601485450757, "y": -9.252739995502512, "z": -0.2643112691936076}, {"x": 17.82932207904812, "y": -9.15356998687442, "z": -0.2646318539145309}, {"x": 17.88204653415862, "y": -9.05409493438769, "z": -0.2649441926701801}, {"x": 17.93418638197218, "y": -8.95431851255457, "z": -0.2652472799388357}, {"x": 17.9857403356924, "y": -8.854244416609172, "z": -0.2655420127306484}, {"x": 18.03670690959791, "y": -8.753875777780289, "z": -0.2658278352790427}, {"x": 18.08708503383187, "y": -8.65321588918404, "z": -0.2661056183176801}, {"x": 18.13687283301915, "y": -8.552266704546692, "z": -0.2663745171808862}, {"x": 18.18606884852562, "y": -8.451030837780431, "z": -0.2666346666120156}, {"x": 18.23466980946234, "y": -8.349511706709205, "z": -0.2668861997781323}, {"x": 18.28267431288983, "y": -8.247713175990285, "z": -0.267129069378633}, {"x": 18.33007962073006, "y": -8.145639275266744, "z": -0.2673635158873006}, {"x": 18.37688578052486, "y": -8.043294400430502, "z": -0.2675886556250152}, {"x": 18.42309284372124, "y": -7.940681595555031, "z": -0.2678054817691381}, {"x": 18.46869985336649, "y": -7.837802888776933, "z": -0.2680134478998586}, {"x": 18.51370536622705, "y": -7.734660531664864, "z": -0.2682133139670838}, {"x": 18.55810666243614, "y": -7.631256159918668, "z": -0.2684040485995846}, {"x": 18.60190168967805, "y": -7.527593049749729, "z": -0.2685859244118929}, {"x": 18.64508732011475, "y": -7.42367529422771, "z": -0.2687591282364423}, {"x": 18.68766247832705, "y": -7.319506978198392, "z": -0.268923649955997}, {"x": 18.72962494846734, "y": -7.215091966904041, "z": -0.2690796221378853}, {"x": 18.77097506046576, "y": -7.110434023599608, "z": -0.2692262778442929}, {"x": 18.81171183362939, "y": -7.005535737048862, "z": -0.269364646317411}, {"x": 18.85183319564099, "y": -6.900399738034758, "z": -0.26949409915911}, {"x": 18.89133729793845, "y": -6.795029502626904, "z": -0.2696152507790776}, {"x": 18.9302219695601, "y": -6.689428137324252, "z": -0.2697270097454585}, {"x": 18.96848650225031, "y": -6.58359997616158, "z": -0.269829915170607}, {"x": 19.00612942456014, "y": -6.477548866345495, "z": -0.2699241961809236}, {"x": 19.04315059146186, "y": -6.371277708703529, "z": -0.2700097957640815}, {"x": 19.07954790912921, "y": -6.264788949206469, "z": -0.2700866966258361}, {"x": 19.11532086877792, "y": -6.158085266456546, "z": -0.2701542428015843}, {"x": 19.1504666666903, "y": -6.051169306986931, "z": -0.2702134643270657}, {"x": 19.18498218190133, "y": -5.94404488012018, "z": -0.2702636309332345}, {"x": 19.21886558023981, "y": -5.83671677668968, "z": -0.2703052766368043}, {"x": 19.25211548941894, "y": -5.729189322889804, "z": -0.2703373996392762}, {"x": 19.28473227225474, "y": -5.621467364930675, "z": -0.270360822165063}, {"x": 19.31671524526733, "y": -5.513554183153973, "z": -0.270375670666828}, {"x": 19.3480642609512, "y": -5.405452127527592, "z": -0.2703817389890261}, {"x": 19.37877700130797, "y": -5.297163665102496, "z": -0.2703788929314856}, {"x": 19.40885275987776, "y": -5.188691889126287, "z": -0.2703666451521611}, {"x": 19.43828865104204, "y": -5.080040230744271, "z": -0.2703460244433539}, {"x": 19.46708249695557, "y": -4.971213041270834, "z": -0.2703162161103951}, {"x": 19.49523356870414, "y": -4.862214681404992, "z": -0.2702777506720391}, {"x": 19.52274099850418, "y": -4.753048624798415, "z": -0.2702297687628509}, {"x": 19.54960452732861, "y": -4.64371872719, "z": -0.2701732507750358}, {"x": 19.57582201565678, "y": -4.534227753187837, "z": -0.270108058376556}, {"x": 19.60139193718317, "y": -4.424579083303701, "z": -0.2700338661340856}, {"x": 19.62631171253412, "y": -4.314777118187431, "z": -0.2699505662122681}, {"x": 19.65058132936879, "y": -4.204826642041108, "z": -0.2698578999388097}, {"x": 19.67419927016608, "y": -4.094732156897178, "z": -0.2697568591078207}, {"x": 19.69716541808937, "y": -3.984497932558243, "z": -0.2696465541320113}, {"x": 19.71948019449794, "y": -3.874127070238739, "z": -0.2695275348862052}, {"x": 19.7411426661318, "y": -3.76362191355175, "z": -0.2693990324975267}, {"x": 19.76215164494317, "y": -3.652985784165879, "z": -0.2692620465304285}, {"x": 19.78250407505973, "y": -3.542221658397426, "z": -0.2691161586787909}, {"x": 19.80219825601877, "y": -3.431333989547877, "z": -0.2689610848258445}, {"x": 19.82123224320051, "y": -3.320328098935908, "z": -0.2687968658081616}, {"x": 19.83960663161244, "y": -3.209208997862401, "z": -0.268623436565821}, {"x": 19.8573203355777, "y": -3.097981042088962, "z": -0.2684416634636149}, {"x": 19.87437360644835, "y": -2.986648166858379, "z": -0.2682505696292634}, {"x": 19.89076632822697, "y": -2.875213470099736, "z": -0.2680507143945861}, {"x": 19.9064971767935, "y": -2.763680263023125, "z": -0.2678413753382451}, {"x": 19.92156531689029, "y": -2.652053047238024, "z": -0.2676235358971106}, {"x": 19.93596885792161, "y": -2.540335670348337, "z": -0.2673966027662681}, {"x": 19.94970786077184, "y": -2.428532912718419, "z": -0.2671604691250428}, {"x": 19.96278198555164, "y": -2.316649231646876, "z": -0.2669153097574722}, {"x": 19.9751921547882, "y": -2.20468808097354, "z": -0.2666611243953064}, {"x": 19.98693659230816, "y": -2.092652614728737, "z": -0.2663985726883236}, {"x": 19.99801455723143, "y": -1.980546465196303, "z": -0.2661266199216191}, {"x": 20.00842464378291, "y": -1.868373615926458, "z": -0.2658458755904363}, {"x": 20.01816531728812, "y": -1.756139108864438, "z": -0.2655556810569741}, {"x": 20.02723666463245, "y": -1.643848823747047, "z": -0.2652570339656139}, {"x": 20.03563839505798, "y": -1.531507326222696, "z": -0.2649492604345871}, {"x": 20.04337225145136, "y": -1.419119257388771, "z": -0.2646324395023384}, {"x": 20.05043884005735, "y": -1.306688017254072, "z": -0.2643067461039832}, {"x": 20.0568388935321, "y": -1.194216287143952, "z": -0.263972142196182}, {"x": 20.06257035887301, "y": -1.081707252999544, "z": -0.2636291089760112}, {"x": 20.06763282175197, "y": -0.9691649473114607, "z": -0.2632766524443536}, {"x": 20.07202536634512, "y": -0.8565938743538735, "z": -0.2629154869710276}, {"x": 20.07574759959083, "y": -0.743999181566785, "z": -0.2625450390128702}, {"x": 20.0788005384713, "y": -0.6313858541711779, "z": -0.2621663234029029}, {"x": 20.0811840560904, "y": -0.5187574037598018, "z": -0.2617785801013938}, {"x": 20.08289925674449, "y": -0.4061178757307955, "z": -0.2613819823116033}, {"x": 20.08394573901663, "y": -0.2934707960533108, "z": -0.2609766065973251}, {"x": 20.08432365964027, "y": -0.1808201605368167, "z": -0.2605624111995093}, {"x": 20.08403173533691, "y": -0.06817073238189908, "z": -0.2601398013855675}, {"x": 20.08307138365334, "y": 0.04447271007628546, "z": -0.2597078902979701}, {"x": 20.08144354092803, "y": 0.157105849071972, "z": -0.2592674946118526}, {"x": 20.0791494621661, "y": 0.2697247861081434, "z": -0.2588181019679229}, {"x": 20.0761904657661, "y": 0.3823265388992855, "z": -0.2583606768364745}, {"x": 20.07256570244808, "y": 0.4949088378493791, "z": -0.2578943168520361}, {"x": 20.06827528449391, "y": 0.6074678404462825, "z": -0.2574192542265311}, {"x": 20.06331807391554, "y": 0.7199996266408746, "z": -0.2569355106350203}, {"x": 20.05769417914093, "y": 0.8324992556412463, "z": -0.2564431395315509}, {"x": 20.05140315658838, "y": 0.9449613658708356, "z": -0.2559425168163575}, {"x": 20.0444474365183, "y": 1.057381396767416, "z": -0.2554328381085291}, {"x": 20.03682843377961, "y": 1.169755563397682, "z": -0.2549149655431606}, {"x": 20.02854753309083, "y": 1.282080534862141, "z": -0.2543883913785882}, {"x": 20.01960552918974, "y": 1.394353580631593, "z": -0.2538539693470036}, {"x": 20.01000158862937, "y": 1.506571815053069, "z": -0.2533106713561764}, {"x": 19.99973665290289, "y": 1.61873076178748, "z": -0.2527588640159901}, {"x": 19.98881069937273, "y": 1.730826549892321, "z": -0.2521986051320179}, {"x": 19.97722502091277, "y": 1.842854904454757, "z": -0.2516300649093359}, {"x": 19.96497999689118, "y": 1.954812030751254, "z": -0.2510535182499029}, {"x": 19.95207763078185, "y": 2.066695122654925, "z": -0.2504681689470769}, {"x": 19.93851784717044, "y": 2.178501180480639, "z": -0.2498748865497432}, {"x": 19.92430066007055, "y": 2.290226532127627, "z": -0.2492731536259386}, {"x": 19.90942591938925, "y": 2.401867252495961, "z": -0.2486637203910084}, {"x": 19.89389340692474, "y": 2.51341885705071, "z": -0.2480455150094915}, {"x": 19.8777056705547, "y": 2.624876115113114, "z": -0.2474191255954744}, {"x": 19.86086414048081, "y": 2.736235582320079, "z": -0.2467846535182256}, {"x": 19.84337103589748, "y": 2.84749416928597, "z": -0.2461422797846031}, {"x": 19.82522687346431, "y": 2.958649612752822, "z": -0.2454920636541361}, {"x": 19.80643287994397, "y": 3.069699885451424, "z": -0.2448332275346959}, {"x": 19.78698814127761, "y": 3.180641822790965, "z": -0.2441666998748273}, {"x": 19.7668925775503, "y": 3.291471406973236, "z": -0.2434919721243393}, {"x": 19.74614624184332, "y": 3.402184479520962, "z": -0.242809715282158}, {"x": 19.7247497405601, "y": 3.512776674396318, "z": -0.242118893920739}, {"x": 19.7027059352702, "y": 3.623243658973786, "z": -0.2414203233612094}, {"x": 19.68001547954042, "y": 3.733582796202133, "z": -0.2407140420852334}, {"x": 19.65667954188321, "y": 3.843790979744198, "z": -0.2400001154753455}, {"x": 19.63269807417123, "y": 3.95386523649475, "z": -0.2392783969120739}, {"x": 19.60807241818773, "y": 4.063802165423433, "z": -0.2385482646139055}, {"x": 19.5828026489666, "y": 4.173597547077948, "z": -0.2378107630196727}, {"x": 19.55689034663092, "y": 4.283247497991793, "z": -0.2370653584292421}, {"x": 19.53033686502496, "y": 4.392748882837426, "z": -0.236312638476558}, {"x": 19.50314353859039, "y": 4.502098929568122, "z": -0.2355516319867183}, {"x": 19.47531240244655, "y": 4.611295050342026, "z": -0.2347832986329122}, {"x": 19.44684238144003, "y": 4.720335201024685, "z": -0.2340075009518877}, {"x": 19.41773341803745, "y": 4.829215670687992, "z": -0.2332241902872785}, {"x": 19.38798510845521, "y": 4.93793248174672, "z": -0.2324331566672276}, {"x": 19.35759912209404, "y": 5.046481021074019, "z": -0.231634056250102}, {"x": 19.32657640088364, "y": 5.154856550774952, "z": -0.2308279988501384}, {"x": 19.29491948118768, "y": 5.263055715990894, "z": -0.2300143230502755}, {"x": 19.26263001662614, "y": 5.371076079999501, "z": -0.2291935139416408}, {"x": 19.2297092445219, "y": 5.478915281191086, "z": -0.2283646722604122}, {"x": 19.19615848134249, "y": 5.586570804166956, "z": -0.2275288344425522}, {"x": 19.1619764624103, "y": 5.694039997556213, "z": -0.2266856686442534}, {"x": 19.12716396319541, "y": 5.801318640885243, "z": -0.2258351241229012}, {"x": 19.09172159855206, "y": 5.908403069085889, "z": -0.2249770610720579}, {"x": 19.05565160058316, "y": 6.015289500858774, "z": -0.2241114041671752}, {"x": 19.01895465530904, "y": 6.121974551049258, "z": -0.2232391707883362}, {"x": 18.98163212706349, "y": 6.228455890076286, "z": -0.2223594902975122}, {"x": 18.94368413028308, "y": 6.334730684165724, "z": -0.221472796719379}, {"x": 18.90511114331569, "y": 6.440795151406594, "z": -0.2205783151864546}, {"x": 18.86591437072823, "y": 6.546645222647738, "z": -0.2196771353249185}, {"x": 18.82609383650302, "y": 6.652276967204894, "z": -0.2187687692069704}, {"x": 18.78565239019315, "y": 6.757686065590367, "z": -0.2178532641933152}, {"x": 18.74459194947865, "y": 6.862870006543631, "z": -0.2169305633210409}, {"x": 18.70291488363078, "y": 6.967826456480107, "z": -0.2160007227338102}, {"x": 18.66062114243003, "y": 7.072553240851673, "z": -0.2150645289538645}, {"x": 18.61771104072189, "y": 7.177048265728146, "z": -0.2141209616116979}, {"x": 18.57418404443363, "y": 7.281307990245039, "z": -0.2131705319302159}, {"x": 18.53004079477331, "y": 7.385327949303309, "z": -0.2122126244933482}, {"x": 18.48528267496827, "y": 7.489103816263548, "z": -0.2112483453474028}, {"x": 18.43991033794813, "y": 7.592631761062788, "z": -0.2102770741039293}, {"x": 18.39392692860868, "y": 7.695908076381606, "z": -0.2092989601517886}, {"x": 18.34733363654212, "y": 7.798930591010149, "z": -0.2083139413106626}, {"x": 18.30013202258425, "y": 7.901696443338762, "z": -0.2073220924090104}, {"x": 18.25232194692848, "y": 8.004202581388235, "z": -0.2063239835314074}, {"x": 18.20390444168017, "y": 8.10644586579431, "z": -0.2053186056505414}, {"x": 18.15488030062462, "y": 8.208422241280573, "z": -0.2043066333110863}, {"x": 18.10525163350176, "y": 8.310127953932353, "z": -0.203287563051488}, {"x": 18.05502026235472, "y": 8.411560124444083, "z": -0.2022624503913023}, {"x": 18.00418656351933, "y": 8.512716360495894, "z": -0.201230529466917}, {"x": 17.95275239385621, "y": 8.613593873505405, "z": -0.2001920099227205}, {"x": 17.90071719234145, "y": 8.714190044386381, "z": -0.1991467786335429}, {"x": 17.84808165168046, "y": 8.814500543785126, "z": -0.1980949489364369}, {"x": 17.79484593809772, "y": 8.914520933505816, "z": -0.197036976341846}, {"x": 17.74101225046791, "y": 9.014246969144601, "z": -0.195971971489499}, {"x": 17.68658281377877, "y": 9.11367446473882, "z": -0.1949007375293669}, {"x": 17.63156069106562, "y": 9.212800649244258, "z": -0.193822770777117}, {"x": 17.57594750721823, "y": 9.311623553308097, "z": -0.1927390155734685}, {"x": 17.51974328519615, "y": 9.410141028509942, "z": -0.1916485749376382}, {"x": 17.46294946337651, "y": 9.508350101127983, "z": -0.1905517291098997}, {"x": 17.40556549443577, "y": 9.606247499142054, "z": -0.1894483511002112}, {"x": 17.34759280989412, "y": 9.703828543931943, "z": -0.1883386626211901}, {"x": 17.28903230734418, "y": 9.801089387047515, "z": -0.1872230471878734}, {"x": 17.22988638861225, "y": 9.89802661374959, "z": -0.1861007091738775}, {"x": 17.17015660662511, "y": 9.994636827018066, "z": -0.1849724643600958}, {"x": 17.10984469645223, "y": 10.09091739552699, "z": -0.1838377403199115}, {"x": 17.04895109309987, "y": 10.18686515192865, "z": -0.1826973955539698}, {"x": 16.98747606037261, "y": 10.28247618121876, "z": -0.1815504750776236}, {"x": 16.92542208982415, "y": 10.37774626143202, "z": -0.1803973741821139}, {"x": 16.86279033068812, "y": 10.47267160221452, "z": -0.1792380026395453}, {"x": 16.79958391111939, "y": 10.56724824045867, "z": -0.1780726986190138}, {"x": 16.73580427832978, "y": 10.66147399234286, "z": -0.1769017024607657}, {"x": 16.67145333685535, "y": 10.7553466565213, "z": -0.1757242233332844}, {"x": 16.60653153178644, "y": 10.84886326204415, "z": -0.1745410476563239}, {"x": 16.54103946512761, "y": 10.9420207193905, "z": -0.1733515921176402}, {"x": 16.47497711071883, "y": 11.03481467977198, "z": -0.1721567032534749}, {"x": 16.40834545978187, "y": 11.12724023323396, "z": -0.1709554212057369}, {"x": 16.34114776328633, "y": 11.21929281265924, "z": -0.1697482791417024}, {"x": 16.27338587796463, "y": 11.31096871255281, "z": -0.1685352182719995}, {"x": 16.20506317413423, "y": 11.40226444743864, "z": -0.1673166027230749}, {"x": 16.13618063282707, "y": 11.49317797610663, "z": -0.1660924358935165}, {"x": 16.06674003782122, "y": 11.5837063395811, "z": -0.1648619419839397}, {"x": 15.99674232573187, "y": 11.67384572681788, "z": -0.1636259604221668}, {"x": 15.92618900098597, "y": 11.76359248721788, "z": -0.1623839783796314}, {"x": 15.85508131353573, "y": 11.85294232975891, "z": -0.1611368374741472}, {"x": 15.78342159168743, "y": 11.94189142044052, "z": -0.1598835571103654}, {"x": 15.71121301089671, "y": 12.03043663970883, "z": -0.1586247894987892}, {"x": 15.63845637160279, "y": 12.11857515483605, "z": -0.1573604478359463}, {"x": 15.5651536006648, "y": 12.20630342967045, "z": -0.1560908337370573}, {"x": 15.49130462698921, "y": 12.2936181107106, "z": -0.1548157333229148}, {"x": 15.41691158949801, "y": 12.38051427738182, "z": -0.1535345165643717}, {"x": 15.34197674324156, "y": 12.46698687205756, "z": -0.1522481562582569}, {"x": 15.26650324718028, "y": 12.55303188242126, "z": -0.1509561933995303}, {"x": 15.19049388464086, "y": 12.63864567062212, "z": -0.149659380680551}, {"x": 15.11395185404026, "y": 12.72382574746756, "z": -0.1483566775952116}, {"x": 15.03687982215141, "y": 12.8085697907432, "z": -0.1470488496664909}, {"x": 14.95927799556916, "y": 12.89287488735545, "z": -0.1457357582306167}, {"x": 14.88114819049997, "y": 12.97673710500248, "z": -0.144417636629819}, {"x": 14.80249088120331, "y": 13.06015245303801, "z": -0.1430941673235953}, {"x": 14.72330932588316, "y": 13.14311576212045, "z": -0.1417649915508299}, {"x": 14.64360641921853, "y": 13.22562270408282, "z": -0.1404311759034954}, {"x": 14.56338525114743, "y": 13.30767001637825, "z": -0.1390921852759752}, {"x": 14.48264812978305, "y": 13.38925432514354, "z": -0.1377486008791636}, {"x": 14.40139782607468, "y": 13.47037269450139, "z": -0.1363993659130394}, {"x": 14.31963685361593, "y": 13.55102148292208, "z": -0.1350454105239824}, {"x": 14.23736651487698, "y": 13.63119654130133, "z": -0.1336865467716294}, {"x": 14.15459045416425, "y": 13.7108936913196, "z": -0.1323229657385468}, {"x": 14.071311133481, "y": 13.79010950629735, "z": -0.1309543499822943}, {"x": 13.98753317157794, "y": 13.86884031492601, "z": -0.1295806202047031}, {"x": 13.90325920928995, "y": 13.94708381041976, "z": -0.1282027760992145}, {"x": 13.81849128286506, "y": 14.02483774203693, "z": -0.1268200931331994}, {"x": 13.73323076288177, "y": 14.10209863035936, "z": -0.1254330375606661}, {"x": 13.64747995521114, "y": 14.17886275310163, "z": -0.1240406681462219}, {"x": 13.56124148756851, "y": 14.25512531491303, "z": -0.1226441073513047}, {"x": 13.47451787865568, "y": 14.33088155332164, "z": -0.1212430796882166}, {"x": 13.38731410650892, "y": 14.40612761548822, "z": -0.1198377463036915}, {"x": 13.29963361509284, "y": 14.48086078181084, "z": -0.1184278190078576}, {"x": 13.21148127370114, "y": 14.55507822325785, "z": -0.1170134062759688}, {"x": 13.12285919871846, "y": 14.6287781213666, "z": -0.1155953109418582}, {"x": 13.03376955472424, "y": 14.70195784642905, "z": -0.1141726641687308}, {"x": 12.94421466067795, "y": 14.77461357978938, "z": -0.1127459762905131}, {"x": 12.85419793770345, "y": 14.84674181541527, "z": -0.1113145097597851}, {"x": 12.76372290964892, "y": 14.91833862768686, "z": -0.1098795057962434}, {"x": 12.67279273578349, "y": 14.98940088297845, "z": -0.1084405152710555}, {"x": 12.58141176668494, "y": 15.0599262378826, "z": -0.106997666098131}, {"x": 12.48958219454952, "y": 15.12991234603248, "z": -0.1055506925987132}, {"x": 12.39730782720534, "y": 15.19935576273653, "z": -0.1040998214838795}, {"x": 12.30459043770749, "y": 15.26825340164466, "z": -0.1026456547088829}, {"x": 12.21143348425938, "y": 15.33660132269089, "z": -0.1011873200302106}, {"x": 12.11784132979315, "y": 15.40439557193521, "z": -0.09972547185025771}, {"x": 12.02381898770736, "y": 15.47163365088282, "z": -0.0982595295410755}, {"x": 11.9293706384175, "y": 15.5383133527843, "z": -0.09679069894553717}, {"x": 11.83449934695857, "y": 15.60443334682847, "z": -0.09531829350273266}, {"x": 11.73920844359694, "y": 15.66999209615359, "z": -0.09384245487122123}, {"x": 11.6434993559332, "y": 15.73498707257272, "z": -0.09236297065096057}, {"x": 11.54737571577668, "y": 15.79941454404926, "z": -0.09088016935074687}, {"x": 11.4508395617713, "y": 15.86327119723197, "z": -0.08939451045055115}, {"x": 11.35389523087736, "y": 15.9265532346812, "z": -0.08790521755021535}, {"x": 11.25654746910732, "y": 15.98925763239199, "z": -0.0864130488434403}, {"x": 11.15880079552628, "y": 16.05138261629713, "z": -0.08491744408979046}, {"x": 11.06065861623833, "y": 16.11292605077789, "z": -0.08341947791237421}, {"x": 10.96212380133936, "y": 16.17388616196092, "z": -0.0819182845557725}, {"x": 10.86320000036956, "y": 16.23426049430005, "z": -0.08041412337872532}, {"x": 10.76388986762284, "y": 16.29404600788498, "z": -0.07890686351373233}, {"x": 10.66419846504481, "y": 16.35323964304085, "z": -0.07739691894257443}, {"x": 10.56412880696809, "y": 16.41183948867054, "z": -0.07588463161680298}, {"x": 10.46368549477989, "y": 16.46984353032374, "z": -0.07436930758206166}, {"x": 10.36287209567332, "y": 16.52725040836492, "z": -0.0728516909161509}, {"x": 10.26169139157667, "y": 16.58405861730658, "z": -0.07133117616422859}, {"x": 10.16014560681605, "y": 16.64026519439821, "z": -0.06980876018975167}, {"x": 10.05823751964178, "y": 16.69586724358833, "z": -0.0682835177220346}]', 1023, 30687, '#4FD1C5', '2025-11-29 08:13:09.930867', '2025-11-29 08:24:55.512962');
INSERT INTO "public"."orbits" ("id", "body_id", "points", "num_points", "period_days", "color", "created_at", "updated_at") VALUES (9, '899', '[{"x": 1.514877102629975, "y": 29.82557057050231, "z": -0.6491145131369999}, {"x": 1.326105143603471, "y": 29.8355565739991, "z": -0.644976181686464}, {"x": 1.137299906969867, "y": 29.84437853849227, "z": -0.6408123209588995}, {"x": 0.9484704562759526, "y": 29.85204384189739, "z": -0.6366238059278839}, {"x": 0.759614315113671, "y": 29.85855807176739, "z": -0.632410671044071}, {"x": 0.5707296571476567, "y": 29.86391616670679, "z": -0.6281724111201538}, {"x": 0.3818266787373394, "y": 29.86811383721452, "z": -0.623908999113222}, {"x": 0.1929163657735457, "y": 29.8711556301994, "z": -0.6196209085510405}, {"x": 0.003999966673946491, "y": 29.87304484332858, "z": -0.6153084763701258}, {"x": -0.1849211228244256, "y": 29.87377914069453, "z": -0.6109717711915552}, {"x": -0.3738395841974193, "y": 29.87335960827699, "z": -0.6066107035559942}, {"x": -0.5627527736326214, "y": 29.87179066867531, "z": -0.6022250316662103}, {"x": -0.7516618938733042, "y": 29.8690683607164, "z": -0.597814890317022}, {"x": -0.940559303603982, "y": 29.86518416973425, "z": -0.5933810181359679}, {"x": -1.129433400931797, "y": 29.86014001543368, "z": -0.5889236923924865}, {"x": -1.318282712265891, "y": 29.85394363870828, "z": -0.5844421979867825}, {"x": -1.507109226194598, "y": 29.84659258362806, "z": -0.5799362557251895}, {"x": -1.695906781111051, "y": 29.83807821766107, "z": -0.5754067696039293}, {"x": -1.884667265964413, "y": 29.82839887973863, "z": -0.5708544169669205}, {"x": -2.073388169698426, "y": 29.81755498853535, "z": -0.5662786881322429}, {"x": -2.262064602320224, "y": 29.80554133789546, "z": -0.561679050009078}, {"x": -2.450685279805331, "y": 29.79235525351113, "z": -0.5570559797411978}, {"x": -2.639243932883052, "y": 29.77800054959608, "z": -0.5524102264510874}, {"x": -2.827743017340018, "y": 29.76247440942278, "z": -0.5477418633891293}, {"x": -3.016178720818621, "y": 29.74576545251296, "z": -0.5430505919405334}, {"x": -3.204535676456332, "y": 29.72786886242987, "z": -0.5383364201117246}, {"x": -3.39280257578622, "y": 29.70878822428242, "z": -0.5335996762136813}, {"x": -3.5809770159365, "y": 29.68852168364399, "z": -0.5288408036415934}, {"x": -3.76905270996775, "y": 29.6670623648202, "z": -0.5240601809493803}, {"x": -3.957018297121954, "y": 29.64440901076994, "z": -0.5192577947594196}, {"x": -4.144867423853349, "y": 29.6205618135011, "z": -0.5144333127096373}, {"x": -4.332593033351791, "y": 29.59551327456756, "z": -0.5095870323916988}, {"x": -4.520179023674843, "y": 29.5692568267033, "z": -0.5047199912776451}, {"x": -4.707611345988636, "y": 29.54179726035731, "z": -0.4998325481343612}, {"x": -4.894886811928129, "y": 29.51313976891778, "z": -0.4949240200279839}, {"x": -5.082000084475005, "y": 29.48327848099241, "z": -0.489994346769801}, {"x": -5.268935830072794, "y": 29.45220641681984, "z": -0.4850446334537232}, {"x": -5.455680073311049, "y": 29.4199256974173, "z": -0.4800756016935465}, {"x": -5.642225190852934, "y": 29.38643876996053, "z": -0.4750869165211078}, {"x": -5.828560142139519, "y": 29.35174368963108, "z": -0.4700783301867377}, {"x": -6.014669448623704, "y": 29.31584324364792, "z": -0.4650504161286097}, {"x": -6.200544675140137, "y": 29.27874388910186, "z": -0.4600039092379976}, {"x": -6.386182409262631, "y": 29.24044320504102, "z": -0.4549391041092388}, {"x": -6.571569948997129, "y": 29.20093532233233, "z": -0.4498560090446057}, {"x": -6.756687809327357, "y": 29.16022591899931, "z": -0.4447546652715683}, {"x": -6.941525875747512, "y": 29.1183255902319, "z": -0.4396353088116059}, {"x": -7.126080563615526, "y": 29.07523566275911, "z": -0.4344985553010891}, {"x": -7.310341918537181, "y": 29.0309546385096, "z": -0.4293450550663452}, {"x": -7.494297701783916, "y": 28.98548810672306, "z": -0.4241747747394926}, {"x": -7.677940974255689, "y": 28.93884104318679, "z": -0.4189872846153145}, {"x": -7.861261583745459, "y": 28.89101252142921, "z": -0.4137830156766314}, {"x": -8.044243353486292, "y": 28.84200592670647, "z": -0.4085631491269534}, {"x": -8.226877517995893, "y": 28.7918331153295, "z": -0.4033279698827305}, {"x": -8.409164142524329, "y": 28.74050096262573, "z": -0.3980767740965656}, {"x": -8.591096096178362, "y": 28.6880066433015, "z": -0.3928096033001798}, {"x": -8.772657238680496, "y": 28.634351276992, "z": -0.3875275246590184}, {"x": -8.953837473474787, "y": 28.57954473720924, "z": -0.3822311155866449}, {"x": -9.134633491324742, "y": 28.52359361875411, "z": -0.3769200980959025}, {"x": -9.315037238469309, "y": 28.46650037996379, "z": -0.3715943170987404}, {"x": -9.495038087155855, "y": 28.40827293807228, "z": -0.3662541712793739}, {"x": -9.674632714654432, "y": 28.34891892183566, "z": -0.3609002037914679}, {"x": -9.853818263407295, "y": 28.2884364657887, "z": -0.3555328016144975}, {"x": -10.03258211523748, "y": 28.2268257947574, "z": -0.3501520752656816}, {"x": -10.21091117906228, "y": 28.16409964719756, "z": -0.3447578676515572}, {"x": -10.38880343820725, "y": 28.1002693618561, "z": -0.3393502056874597}, {"x": -10.56625831314727, "y": 28.03533498168105, "z": -0.3339297670268049}, {"x": -10.7432671147641, "y": 27.96929712437982, "z": -0.3284972774853658}, {"x": -10.91982182669752, "y": 27.90216402107292, "z": -0.3230525128531401}, {"x": -11.09591927725211, "y": 27.83394157224892, "z": -0.3175948808931672}, {"x": -11.27155170164684, "y": 27.76463146439746, "z": -0.3121248463214324}, {"x": -11.44670851024062, "y": 27.6942407154404, "z": -0.3066435444372199}, {"x": -11.62138894827581, "y": 27.62278030898825, "z": -0.3011510833841483}, {"x": -11.79559641975766, "y": 27.55025284595922, "z": -0.2956467366371328}, {"x": -11.96932300344483, "y": 27.4766551550277, "z": -0.2901305774711042}, {"x": -12.14255513506832, "y": 27.4019925217389, "z": -0.2846034953806728}, {"x": -12.31528943724372, "y": 27.32627599650234, "z": -0.2790659026599499}, {"x": -12.48752734926053, "y": 27.24950953736417, "z": -0.2735176102110581}, {"x": -12.65926353256884, "y": 27.17169458897391, "z": -0.2679585028202736}, {"x": -12.83049191422374, "y": 27.09283868533974, "z": -0.2623887231210089}, {"x": -13.00121251418622, "y": 27.01294592112334, "z": -0.2568086421566079}, {"x": -13.17142219534452, "y": 26.93201276507205, "z": -0.2512187593445677}, {"x": -13.34111066973591, "y": 26.85004237134198, "z": -0.2456192190174143}, {"x": -13.51027274615593, "y": 26.76704751270156, "z": -0.240009625610458}, {"x": -13.67891212385613, "y": 26.68303347309109, "z": -0.2343898572870251}, {"x": -13.847028213802, "y": 26.59799517566018, "z": -0.2287606784506243}, {"x": -14.01461238037189, "y": 26.51193219706128, "z": -0.2231228295777422}, {"x": -14.18165986775849, "y": 26.4248512192849, "z": -0.2174759167635347}, {"x": -14.34816994784627, "y": 26.33675488001144, "z": -0.2118192867838909}, {"x": -14.51413608308904, "y": 26.24764279327516, "z": -0.2061534677314843}, {"x": -14.67955134629837, "y": 26.15751985324925, "z": -0.200479508876194}, {"x": -14.84441862151125, "y": 26.06639057276035, "z": -0.194797409681435}, {"x": -15.00873937416722, "y": 25.97425042715262, "z": -0.1891065366519684}, {"x": -15.17250213354472, "y": 25.88109475366457, "z": -0.1834070095690916}, {"x": -15.33569525097313, "y": 25.78692938074394, "z": -0.1776995325749687}, {"x": -15.49831887158693, "y": 25.6917603475434, "z": -0.171984474627717}, {"x": -15.66037336938431, "y": 25.59558432394864, "z": -0.1662618706138818}, {"x": -15.82185065815027, "y": 25.49839869790634, "z": -0.160531688743071}, {"x": -15.98274343718396, "y": 25.40020715594416, "z": -0.1547938983943266}, {"x": -16.14304805417511, "y": 25.3010083100657, "z": -0.1490488816013164}, {"x": -16.3027555994544, "y": 25.20079657137356, "z": -0.1432974053602589}, {"x": -16.46185376435631, "y": 25.09957572757667, "z": -0.1375397310072728}, {"x": -16.62033804697209, "y": 24.99735477968433, "z": -0.1317753831608193}, {"x": -16.77820798442606, "y": 24.89413208188097, "z": -0.1260043143277578}, {"x": -16.93545420277887, "y": 24.78989984831028, "z": -0.1202275217503692}, {"x": -17.092061713924, "y": 24.68465935571607, "z": -0.1144458504358851}, {"x": -17.24802282591998, "y": 24.57841745451347, "z": -0.108658940651209}, {"x": -17.40333224491976, "y": 24.47117549840992, "z": -0.1028663242556646}, {"x": -17.55797754175312, "y": 24.36293387534776, "z": -0.09706873215344398}, {"x": -17.71194814110437, "y": 24.25369840185227, "z": -0.09126724221553567}, {"x": -17.86524175102296, "y": 24.14347172197431, "z": -0.08546197169671355}, {"x": -18.01785012515449, "y": 24.03225023111622, "z": -0.07965260480901604}, {"x": -18.16975441488805, "y": 23.92003656848223, "z": -0.07383940925731476}, {"x": -18.32094205985509, "y": 23.80684295307152, "z": -0.06802301258411049}, {"x": -18.471411268094, "y": 23.69267640559634, "z": -0.06220392825930636}, {"x": -18.62115620433901, "y": 23.57753550623936, "z": -0.05638253555600697}, {"x": -18.77016366328053, "y": 23.4614237686256, "z": -0.05055889439563371}, {"x": -18.91842378365833, "y": 23.34435060598713, "z": -0.04473286257186795}, {"x": -19.06592913706608, "y": 23.22631972749646, "z": -0.0389049336848556}, {"x": -19.21266762200023, "y": 23.10733348432067, "z": -0.0330761419443495}, {"x": -19.35862818577826, "y": 22.98740374797876, "z": -0.02724679781533353}, {"x": -19.50380850054949, "y": 22.86654259071685, "z": -0.02141635289284447}, {"x": -19.64820531293479, "y": 22.74475068863694, "z": -0.01558484479206034}, {"x": -19.79180489529748, "y": 22.62202817033648, "z": -0.009753388240110008}, {"x": -19.93459347771089, "y": 22.49838648352884, "z": -0.003922782200036435}, {"x": -20.0765677886609, "y": 22.37383839549542, "z": 0.001907359786053725}, {"x": -20.21772448635321, "y": 22.2483894913871, "z": 0.007737412140107835}, {"x": -20.35805287798016, "y": 22.12204637757901, "z": 0.01356667054430433}, {"x": -20.49754660090789, "y": 21.99481958598217, "z": 0.01939424286985892}, {"x": -20.63620517096753, "y": 21.86671407320469, "z": 0.02522001234613777}, {"x": -20.77401990252874, "y": 21.73773206894202, "z": 0.03104414324047728}, {"x": -20.91097651505632, "y": 21.60788514946561, "z": 0.03686648290082047}, {"x": -21.04707115874779, "y": 21.47718949121694, "z": 0.04268667843792114}, {"x": -21.18230648886677, "y": 21.34565138128806, "z": 0.04850419698609563}, {"x": -21.31667731409566, "y": 21.21327131844013, "z": 0.05431851668143346}, {"x": -21.45017354106261, "y": 21.0800580598717, "z": 0.06012973206066446}, {"x": -21.58279054384606, "y": 20.94602448458726, "z": 0.06593823990006539}, {"x": -21.71452485816179, "y": 20.81117672361951, "z": 0.07174355675000625}, {"x": -21.84536899960542, "y": 20.67552101735727, "z": 0.07754460489478672}, {"x": -21.97531951983693, "y": 20.53907132655526, "z": 0.08334123517462767}, {"x": -22.10437987247373, "y": 20.40183715767368, "z": 0.08913416054487194}, {"x": -22.23254734359549, "y": 20.26381829492141, "z": 0.09492335492880796}, {"x": -22.35980967505721, "y": 20.12501975534534, "z": 0.1007077736322232}, {"x": -22.486160649025, "y": 19.98545666495112, "z": 0.1064868014352957}, {"x": -22.61160434765668, "y": 19.84513979185287, "z": 0.1122608711703916}, {"x": -22.73614051392222, "y": 19.70407285161269, "z": 0.1180303193543085}, {"x": -22.85976187798463, "y": 19.56226317090683, "z": 0.1237946076171899}, {"x": -22.98246688265974, "y": 19.41972020409887, "z": 0.1295530904857164}, {"x": -23.10425696896532, "y": 19.27644740571686, "z": 0.1353056305663848}, {"x": -23.22512556758822, "y": 19.13244921707836, "z": 0.1410523003845318}, {"x": -23.34506583566436, "y": 18.98773941033168, "z": 0.1467931707084447}, {"x": -23.46408194244956, "y": 18.84233042251753, "z": 0.1525281707213574}, {"x": -23.58217861850947, "y": 18.69622286038307, "z": 0.1582567197259877}, {"x": -23.69935055285983, "y": 18.54941607172336, "z": 0.1639782157767868}, {"x": -23.8155915513125, "y": 18.4019199609861, "z": 0.1696929624038807}, {"x": -23.93090244086148, "y": 18.25374544507168, "z": 0.1754015512153151}, {"x": -24.04528303482764, "y": 18.10489554258836, "z": 0.1811034713638187}, {"x": -24.15872937828987, "y": 17.95537486509726, "z": 0.1867976597467972}, {"x": -24.27124324254175, "y": 17.80519337393011, "z": 0.1924841299244381}, {"x": -24.38282976882815, "y": 17.65435384900463, "z": 0.1981636627422547}, {"x": -24.49348443672212, "y": 17.50285361468579, "z": 0.2038362164144242}, {"x": -24.60319725606881, "y": 17.35069941181242, "z": 0.2095008716378689}, {"x": -24.71196890597537, "y": 17.19790324819033, "z": 0.2151571733118835}, {"x": -24.81980671173775, "y": 17.04446790903519, "z": 0.2208054935337534}, {"x": -24.92670936762449, "y": 16.89039155684972, "z": 0.2264460968026465}, {"x": -25.03266990796322, "y": 16.73567839019744, "z": 0.2320786240026128}, {"x": -25.13768754051405, "y": 16.58033289544288, "z": 0.2377025835789478}, {"x": -25.24176199227615, "y": 16.42435415185014, "z": 0.2433176798964346}, {"x": -25.34488617604169, "y": 16.26774472888475, "z": 0.2489238424513644}, {"x": -25.44705620743336, "y": 16.11051457340103, "z": 0.2545213076377531}, {"x": -25.54827642260262, "y": 15.95266774641395, "z": 0.2601101150527308}, {"x": -25.64854555120175, "y": 15.79419802790056, "z": 0.2656894873040346}, {"x": -25.74785261338701, "y": 15.63510385229154, "z": 0.2712586834201685}, {"x": -25.84619093042428, "y": 15.47539458188888, "z": 0.2768181019538681}, {"x": -25.9435605153298, "y": 15.31507643617924, "z": 0.2823683098096321}, {"x": -26.03995679743625, "y": 15.15414804758371, "z": 0.2879086122965873}, {"x": -26.13537184924317, "y": 14.99261202058262, "z": 0.2934378721359311}, {"x": -26.22980391533313, "y": 14.83047426654689, "z": 0.2989560781465194}, {"x": -26.32325057913923, "y": 14.66773375797635, "z": 0.3044638199644899}, {"x": -26.41569916154442, "y": 14.50438994122807, "z": 0.3099608744078974}, {"x": -26.50713702647002, "y": 14.34045328613723, "z": 0.3154463253401273}, {"x": -26.59756361403264, "y": 14.17593388892591, "z": 0.3209196550419816}, {"x": -26.6869797868619, "y": 14.01083141316819, "z": 0.3263809343542493}, {"x": -26.7753756636476, "y": 13.84514607489612, "z": 0.3318302235506516}, {"x": -26.86273917711791, "y": 13.6788865453287, "z": 0.3372672405938157}, {"x": -26.94906551233374, "y": 13.51206023872552, "z": 0.3426914549793639}, {"x": -27.034349216222, "y": 13.34467004422728, "z": 0.3481022513989327}, {"x": -27.11858017635327, "y": 13.17672407698667, "z": 0.3534993605578273}, {"x": -27.20175414434147, "y": 13.00823531717973, "z": 0.3588831040641913}, {"x": -27.28387137840002, "y": 12.83920848978102, "z": 0.3642534799705261}, {"x": -27.36492288201713, "y": 12.6696423536033, "z": 0.3696094584741417}, {"x": -27.4448944532663, "y": 12.49954542103761, "z": 0.3749501954575302}, {"x": -27.52378189047864, "y": 12.3289341468491, "z": 0.3802761506636392}, {"x": -27.60158560586033, "y": 12.1578176415478, "z": 0.3855878031400163}, {"x": -27.6782988225003, "y": 11.98619954410296, "z": 0.3908843444112489}, {"x": -27.75391386722625, "y": 11.81408927196563, "z": 0.3961647075732952}, {"x": -27.82842980474903, "y": 11.64149698046354, "z": 0.4014289105339301}, {"x": -27.90184291792264, "y": 11.4684271002165, "z": 0.4066774099249367}, {"x": -27.9741418874799, "y": 11.29488836642137, "z": 0.4119099811197985}, {"x": -28.04532050215266, "y": 11.12089794249949, "z": 0.4171259099821634}, {"x": -28.11538306260327, "y": 10.94646663951398, "z": 0.4223247187643105}, {"x": -28.18433021510006, "y": 10.77159567145365, "z": 0.4275063164711569}, {"x": -28.25215225931393, "y": 10.5962918112783, "z": 0.4326707914936798}, {"x": -28.31884195953658, "y": 10.42057024702555, "z": 0.4378181416474892}, {"x": -28.38439969100132, "y": 10.24444165152968, "z": 0.4429479196254471}, {"x": -28.44882344058345, "y": 10.06791227780137, "z": 0.448059378710197}, {"x": -28.5121085933052, "y": 9.890994206186804, "z": 0.4531523158936272}, {"x": -28.57425742435731, "y": 9.713700843422352, "z": 0.4582273188735172}, {"x": -28.63527201516743, "y": 9.53603650236404, "z": 0.463284468992819}, {"x": -28.69514396507628, "y": 9.35800454499159, "z": 0.4683227000410044}, {"x": -28.75386587740412, "y": 9.17961952546373, "z": 0.4733413050777839}, {"x": -28.81144262202406, "y": 9.000897861168138, "z": 0.4783409089410466}, {"x": -28.86787876918944, "y": 8.82184599507034, "z": 0.483321991054482}, {"x": -28.92316963756039, "y": 8.642468393418731, "z": 0.4882838131260472}, {"x": -28.97731212978449, "y": 8.462776150885743, "z": 0.4932255461568543}, {"x": -29.03030930347426, "y": 8.282778884383797, "z": 0.4981472723016624}, {"x": -29.08216021546779, "y": 8.102482202584142, "z": 0.5030493717713026}, {"x": -29.13285938082086, "y": 7.921897922213191, "z": 0.5079317660125742}, {"x": -29.18240894511931, "y": 7.741042094268724, "z": 0.5127940430636324}, {"x": -29.23081743968635, "y": 7.559920414318893, "z": 0.5176357713997823}, {"x": -29.27808547199406, "y": 7.378532413583542, "z": 0.5224567554419458}, {"x": -29.32420613456387, "y": 7.196887734655077, "z": 0.5272572222128866}, {"x": -29.36917946184473, "y": 7.015001890089541, "z": 0.5320374671774847}, {"x": -29.41301121543441, "y": 6.832882199444647, "z": 0.5367970940065016}, {"x": -29.45570220917858, "y": 6.650532770669903, "z": 0.5415352674235222}, {"x": -29.4972527055379, "y": 6.467963910620905, "z": 0.5462519211564577}, {"x": -29.53766909916386, "y": 6.285184246070004, "z": 0.5509478572235793}, {"x": -29.57695328959748, "y": 6.102195084521236, "z": 0.5556231830859184}, {"x": -29.61509855924265, "y": 5.919001540690986, "z": 0.5602768485996807}, {"x": -29.65210516189799, "y": 5.735617760736842, "z": 0.5649083291607464}, {"x": -29.68798415803252, "y": 5.552053514186497, "z": 0.5695183356240924}, {"x": -29.72274077815489, "y": 5.368308787337609, "z": 0.5741073079726241}, {"x": -29.75637071092057, "y": 5.184385837227408, "z": 0.5786746345006818}, {"x": -29.78887394585761, "y": 5.000293326380342, "z": 0.5832197162631395}, {"x": -29.82025572211534, "y": 4.816036211597145, "z": 0.5877425945423974}, {"x": -29.85051637343699, "y": 4.631616666794039, "z": 0.5922435242517162}, {"x": -29.87965403372571, "y": 4.44704358797982, "z": 0.5967225894306105}, {"x": -29.9076743694729, "y": 4.262325702821017, "z": 0.6011796005825818}, {"x": -29.93458383666679, "y": 4.077460188712938, "z": 0.6056140426194556}, {"x": -29.96037868821178, "y": 3.892443692877369, "z": 0.6100255613007447}, {"x": -29.98505283736466, "y": 3.707285650674309, "z": 0.6144144950150076}, {"x": -30.00860966115604, "y": 3.521996415700435, "z": 0.6187812988921546}, {"x": -30.03105385650588, "y": 3.336575843047976, "z": 0.6231254904510484}, {"x": -30.05238289954855, "y": 3.151023380930915, "z": 0.6274460907351327}, {"x": -30.07259560806473, "y": 2.965344712916985, "z": 0.6317430851943613}, {"x": -30.0916948139868, "y": 2.779542296215848, "z": 0.6360172810346991}, {"x": -30.10967608011874, "y": 2.593614857623209, "z": 0.6402686324518791}, {"x": -30.12652984412475, "y": 2.407567962519753, "z": 0.6444960211272952}, {"x": -30.14225675109652, "y": 2.221412173534421, "z": 0.648698946088863}, {"x": -30.15686368084883, "y": 2.035150061952252, "z": 0.6528779423017477}, {"x": -30.17034695613479, "y": 1.848778233983571, "z": 0.657033219196031}, {"x": -30.18269545281503, "y": 1.662300766280472, "z": 0.6611641849902147}, {"x": -30.19390563734592, "y": 1.475727291995043, "z": 0.6652702708201543}, {"x": -30.20397810873722, "y": 1.289061833788021, "z": 0.6693512408518735}, {"x": -30.21290784558409, "y": 1.102307564406746, "z": 0.6734070771043164}, {"x": -30.22068999988297, "y": 0.9154748917907363, "z": 0.6774379145776425}, {"x": -30.22732584195714, "y": 0.72857092091216, "z": 0.6814435771951958}, {"x": -30.2328127880568, "y": 0.5415934928407405, "z": 0.6854232730086376}, {"x": -30.23713981898744, "y": 0.3545464243848234, "z": 0.6893764001471334}, {"x": -30.24030034086446, "y": 0.167445755091086, "z": 0.693303311536469}, {"x": -30.24229714176047, "y": -0.01969701263539816, "z": 0.6972044427658295}, {"x": -30.24312969935983, "y": -0.2068801492292635, "z": 0.7010791149203589}, {"x": -30.24279059590501, "y": -0.3940983404193927, "z": 0.7049262143946645}, {"x": -30.24127684950625, "y": -0.5813404283807178, "z": 0.7087457462040456}, {"x": -30.2385887030222, "y": -0.7685990204479383, "z": 0.712538441841992}, {"x": -30.2347194027676, "y": -0.9558675453813616, "z": 0.7163041219290822}, {"x": -30.22966165288048, "y": -1.143132444406434, "z": 0.7200417253331856}, {"x": -30.2234196555155, "y": -1.330380350845485, "z": 0.7237508177642719}, {"x": -30.21599881522378, "y": -1.51760745264478, "z": 0.7274317705804265}, {"x": -30.20739217710213, "y": -1.704810772707596, "z": 0.7310846925202037}, {"x": -30.19759055950562, "y": -1.891976850264698, "z": 0.7347091984560872}, {"x": -30.18659538827364, "y": -2.079090659998218, "z": 0.7383048379684349}, {"x": -30.17440987345236, "y": -2.266145291713538, "z": 0.7418712034983456}, {"x": -30.1610313598353, "y": -2.453132732902023, "z": 0.7454082206719241}, {"x": -30.14645976992879, "y": -2.640038639773038, "z": 0.7489162817808621}, {"x": -30.13069882637597, "y": -2.826854646504781, "z": 0.7523953562836764}, {"x": -30.11374585741973, "y": -3.013578290656896, "z": 0.7558445624639771}, {"x": -30.09559439003782, "y": -3.200197719502192, "z": 0.7592633248441668}, {"x": -30.07624711190025, "y": -3.386693890696776, "z": 0.7626522063467673}, {"x": -30.05571244658162, "y": -3.573057276001371, "z": 0.7660117448339343}, {"x": -30.03399099642608, "y": -3.759285521133377, "z": 0.7693412604698636}, {"x": -30.01107820309123, "y": -3.945369485406555, "z": 0.7726397616505776}, {"x": -29.98697648810593, "y": -4.131295994208139, "z": 0.7759074102865104}, {"x": -29.96169035278542, "y": -4.317056548790933, "z": 0.779144947080614}, {"x": -29.93521748014433, "y": -4.502641847062232, "z": 0.7823522332637205}, {"x": -29.90755805052239, "y": -4.688036995621841, "z": 0.7855284660666884}, {"x": -29.87872221246839, "y": -4.873231853112896, "z": 0.7886733617207237}, {"x": -29.84871600777401, "y": -5.058224751098174, "z": 0.79178719774118}, {"x": -29.81753405003315, "y": -5.243009164724988, "z": 0.7948701490713356}, {"x": -29.78517488572184, "y": -5.427568357256218, "z": 0.7979221709830173}, {"x": -29.75164751819522, "y": -5.611889764174499, "z": 0.8009429525205337}, {"x": -29.71695848891016, "y": -5.795969676454453, "z": 0.8039319659835468}, {"x": -29.68110879856255, "y": -5.979800580407244, "z": 0.8068892086392526}, {"x": -29.64410348487851, "y": -6.163370084353765, "z": 0.8098153684909094}, {"x": -29.60594841629635, "y": -6.346672630929636, "z": 0.812710531130801}, {"x": -29.56664265904418, "y": -6.529704678082534, "z": 0.815573768255876}, {"x": -29.52618651235281, "y": -6.712452772529179, "z": 0.8184046211419166}, {"x": -29.48459074613108, "y": -6.894902347905552, "z": 0.8212038468163189}, {"x": -29.44186647421244, "y": -7.077050384216909, "z": 0.8239720414159121}, {"x": -29.39801420400181, "y": -7.258896407847626, "z": 0.8267085839562358}, {"x": -29.35303284133389, "y": -7.440430976461823, "z": 0.8294126803399676}, {"x": -29.30693036182212, "y": -7.621643823147308, "z": 0.8320846006150446}, {"x": -29.25971479810654, "y": -7.802530551572752, "z": 0.8347250367494945}, {"x": -29.21138723482119, "y": -7.983084531199789, "z": 0.8373339375878883}, {"x": -29.16195308157312, "y": -8.163295627113278, "z": 0.8399107768636646}, {"x": -29.11142419198646, "y": -8.343161470093085, "z": 0.8424553336589191}, {"x": -29.05980419364482, "y": -8.522684603617089, "z": 0.8449677303904418}, {"x": -29.00708917195608, "y": -8.701858130706215, "z": 0.8474482329929968}, {"x": -28.95328402338749, "y": -8.880668678627588, "z": 0.8498970910019961}, {"x": -28.898400437572, "y": -9.059112045357054, "z": 0.8523140187791136}, {"x": -28.84244335357693, "y": -9.237191073582514, "z": 0.8546983325892746}, {"x": -28.78541365191841, "y": -9.414902150433603, "z": 0.8570501086452573}, {"x": -28.72731682018545, "y": -9.59223854503441, "z": 0.8593702176473138}, {"x": -28.66815653791388, "y": -9.769200029182853, "z": 0.8616587148967392}, {"x": -28.60793042967131, "y": -9.945785471523713, "z": 0.863914574288532}, {"x": -28.54664074698703, "y": -10.12198544286367, "z": 0.8661373908697559}, {"x": -28.48429814002127, "y": -10.29779446386754, "z": 0.8683279285592352}, {"x": -28.4209075694317, "y": -10.47321719545296, "z": 0.870486653218117}, {"x": -28.35646275382195, "y": -10.64825454963793, "z": 0.8726129136245482}, {"x": -28.29096058865509, "y": -10.82289770403771, "z": 0.874705986349282}, {"x": -28.2244074678717, "y": -10.99714088916809, "z": 0.8767660175730947}, {"x": -28.15680662257611, "y": -11.17098383820623, "z": 0.8787934587526635}, {"x": -28.08815477259264, "y": -11.34442160420479, "z": 0.8807882481927991}, {"x": -28.01845390717116, "y": -11.51744754702842, "z": 0.882749966892072}, {"x": -27.94770832961274, "y": -11.69006294812533, "z": 0.8846782123751706}, {"x": -27.87591296395136, "y": -11.86226855456339, "z": 0.8865727806701513}, {"x": -27.80306114796297, "y": -12.03405343597912, "z": 0.8884339103948895}, {"x": -27.72915712638907, "y": -12.2054052667461, "z": 0.8902619368241749}, {"x": -27.6542065417545, "y": -12.37632270113662, "z": 0.8920563714244688}, {"x": -27.57820597549662, "y": -12.54680683298963, "z": 0.8938162608263025}, {"x": -27.50115141547669, "y": -12.71684954472128, "z": 0.8955416604910668}, {"x": -27.42304467890612, "y": -12.8864409510693, "z": 0.8972334310573002}, {"x": -27.34388487406273, "y": -13.05557673780687, "z": 0.8988914556712025}, {"x": -27.26366723671884, "y": -13.22424959423091, "z": 0.9005146063006557}, {"x": -27.18239451282657, "y": -13.3924465642873, "z": 0.9021025007632524}, {"x": -27.10007489657669, "y": -13.56016199697271, "z": 0.9036558008008138}, {"x": -27.0167071373788, "y": -13.72739639704138, "z": 0.9051748110746027}, {"x": -26.93228230956988, "y": -13.89414096508018, "z": 0.9066589299540555}, {"x": -26.84680044578571, "y": -14.0603800271118, "z": 0.9081075383725737}, {"x": -26.7602696498994, "y": -14.22610555459306, "z": 0.9095206404723634}, {"x": -26.6726920689657, "y": -14.39131334018902, "z": 0.9108985264475082}, {"x": -26.58406549142201, "y": -14.55599271959284, "z": 0.9122412801573154}, {"x": -26.4943936437162, "y": -14.72013365130627, "z": 0.9135486775547558}, {"x": -26.40367987828354, "y": -14.88373290203461, "z": 0.914820216467059}, {"x": -26.31192049116223, "y": -15.0467830151244, "z": 0.9160555690514548}, {"x": -26.21911608685236, "y": -15.20926700082637, "z": 0.9172551653876594}, {"x": -26.12527711531362, "y": -15.37117244005397, "z": 0.9184195511188219}, {"x": -26.03040973499051, "y": -15.53249783891931, "z": 0.9195481887807544}, {"x": -25.93451094064066, "y": -15.69323944643172, "z": 0.9206401144045522}, {"x": -25.83758166603568, "y": -15.8533839284527, "z": 0.921695572868281}, {"x": -25.73962917067507, "y": -16.01291942003749, "z": 0.9227155213693534}, {"x": -25.64065637948766, "y": -16.17183964604534, "z": 0.923699843667674}, {"x": -25.54066392601355, "y": -16.33013437701226, "z": 0.9246475643711434}, {"x": -25.43966077834543, "y": -16.48779134482719, "z": 0.9255584855903977}, {"x": -25.33765702255804, "y": -16.64480703094252, "z": 0.9264332546325955}, {"x": -25.23465181440286, "y": -16.80117872386077, "z": 0.9272721928617861}, {"x": -25.13064238743318, "y": -16.95689203883317, "z": 0.9280749686360455}, {"x": -25.02563784337271, "y": -17.1119318737627, "z": 0.9288411833381661}, {"x": -24.91965083263292, "y": -17.26629402512046, "z": 0.9295707711628843}, {"x": -24.81268559480064, "y": -17.41997491082184, "z": 0.9302640100050411}, {"x": -24.70474444415108, "y": -17.57296354495232, "z": 0.9309212735770228}, {"x": -24.59583517020215, "y": -17.72525150943111, "z": 0.9315425652646318}, {"x": -24.48596336993717, "y": -17.87683550280674, "z": 0.9321273228024807}, {"x": -24.37513047885025, "y": -18.02770630160572, "z": 0.9326752158548429}, {"x": -24.26334547706761, "y": -18.1778490287915, "z": 0.9331869303624571}, {"x": -24.15062321369156, "y": -18.32725726971996, "z": 0.9336631875539446}, {"x": -24.03696934486786, "y": -18.4759324678661, "z": 0.934103439642184}, {"x": -23.92238295032119, "y": -18.62386900357027, "z": 0.9345068277424138}, {"x": -23.80687192620984, "y": -18.7710537540621, "z": 0.9348738072843129}, {"x": -23.6904490966496, "y": -18.91747913463324, "z": 0.9352053770092764}, {"x": -23.57312051341458, "y": -19.06314220334727, "z": 0.9355014601213629}, {"x": -23.45489151065816, "y": -19.20803529532313, "z": 0.9357613147238366}, {"x": -23.33577489323613, "y": -19.3521520462657, "z": 0.9359848900613619}, {"x": -23.21578047844722, "y": -19.49549377913359, "z": 0.9361727513267953}, {"x": -23.09490864318084, "y": -19.63805740519265, "z": 0.9363252652474943}, {"x": -22.9731635067105, "y": -19.77982956827871, "z": 0.9364423956119317}, {"x": -22.85055998890047, "y": -19.92080269412067, "z": 0.9365238849721899}, {"x": -22.72711093215909, "y": -20.0609802474886, "z": 0.9365695419290769}, {"x": -22.60282008880682, "y": -20.20036197493785, "z": 0.9365796602301326}, {"x": -22.47769235055519, "y": -20.3389402416661, "z": 0.9365548921316662}, {"x": -22.35173735202124, "y": -20.47671192822968, "z": 0.9364953649602684}, {"x": -22.22496109923366, "y": -20.61367788818782, "z": 0.9364004074068007}, {"x": -22.09736768850891, "y": -20.74983285782615, "z": 0.9362696965647411}, {"x": -21.96896932686167, "y": -20.88517014022045, "z": 0.9361040845152225}, {"x": -21.83977841985043, "y": -21.01969277394034, "z": 0.9359043075336618}, {"x": -21.70979507495488, "y": -21.15340634074902, "z": 0.935669739609845}, {"x": -21.57901760540041, "y": -21.28630612452808, "z": 0.9353995874121269}, {"x": -21.44745599352253, "y": -21.41838440722831, "z": 0.9350943464646749}, {"x": -21.31512099650346, "y": -21.54964169966701, "z": 0.9347548623556222}, {"x": -21.18201435354282, "y": -21.68008003329012, "z": 0.9343810088871325}, {"x": -21.04813883995145, "y": -21.80969595655399, "z": 0.9339721899600634}, {"x": -20.91350266672596, "y": -21.93848930271125, "z": 0.9335282906588466}, {"x": -20.77810852113696, "y": -22.06646447789072, "z": 0.9330495988836909}, {"x": -20.64195309497412, "y": -22.19361778569619, "z": 0.9325364131528153}, {"x": -20.50504020890434, "y": -22.31993882919666, "z": 0.9319888287837403}, {"x": -20.36738034259335, "y": -22.44542703858878, "z": 0.931406477611108}, {"x": -20.22897698434187, "y": -22.57008940570691, "z": 0.9307888538645879}, {"x": -20.08982623484733, "y": -22.69392399661485, "z": 0.9301361356954625}, {"x": -19.94992907254973, "y": -22.81692209816139, "z": 0.9294490433760902}, {"x": -19.8092902751286, "y": -22.93908097444127, "z": 0.9287275805635025}, {"x": -19.66790987213133, "y": -23.06039984250494, "z": 0.927970824352726}, {"x": -19.52578870987138, "y": -23.18087144692636, "z": 0.9271783722742959}, {"x": -19.38293536444244, "y": -23.30049024636244, "z": 0.9263510562821257}, {"x": -19.23935397881262, "y": -23.41925854260082, "z": 0.9254894478850931}, {"x": -19.09503752507153, "y": -23.53717492675993, "z": 0.9245927917310852}, {"x": -18.94998403344457, "y": -23.65422771791901, "z": 0.9236603244144687}, {"x": -18.8042036656867, "y": -23.77040788077331, "z": 0.9226924408682634}, {"x": -18.65770293493251, "y": -23.88571477865977, "z": 0.9216897496462443}, {"x": -18.51047959132884, "y": -24.00014519147856, "z": 0.9206521133953839}, {"x": -18.36253520066324, "y": -24.11369047222314, "z": 0.9195790978958021}, {"x": -18.21387559256074, "y": -24.22634640982085, "z": 0.9184704742849659}, {"x": -18.0645014075018, "y": -24.33811055914587, "z": 0.917326295420531}, {"x": -17.91441203917257, "y": -24.44897153834972, "z": 0.916146932607503}, {"x": -17.76361565880524, "y": -24.55891636286047, "z": 0.9149326969033461}, {"x": -17.61212235632575, "y": -24.66794409950662, "z": 0.9136831756622017}, {"x": -17.45993289303136, "y": -24.77605668259724, "z": 0.9123977194110809}, {"x": -17.30704534211459, "y": -24.88324413693228, "z": 0.9110765990984303}, {"x": -17.15346623932264, "y": -24.98949350989446, "z": 0.9097207123226206}, {"x": -16.99920363507666, "y": -25.09480019125031, "z": 0.9083300652503867}, {"x": -16.84425982298723, "y": -25.19915973835882, "z": 0.9069037145249476}, {"x": -16.68864042015422, "y": -25.30256241735052, "z": 0.9054414034652012}, {"x": -16.5323568084712, "y": -25.40500304626599, "z": 0.9039440524753068}, {"x": -16.37541272161348, "y": -25.50648092875525, "z": 0.9024122160169858}, {"x": -16.21780478506039, "y": -25.60698771143696, "z": 0.9008452677026001}, {"x": -16.05953988176153, "y": -25.70650904386088, "z": 0.8992426826158483}, {"x": -15.90063382149507, "y": -25.80503863588166, "z": 0.8976048621375793}, {"x": -15.74109433020127, "y": -25.90257683124855, "z": 0.895932345768773}, {"x": -15.58092196794813, "y": -25.9991178663183, "z": 0.8942252186078685}, {"x": -15.42012326460568, "y": -26.09465192432515, "z": 0.8924833379351734}, {"x": -15.25870755617962, "y": -26.18917497053256, "z": 0.8907064356173864}, {"x": -15.09667936691894, "y": -26.28268313358744, "z": 0.8888944744918179}, {"x": -14.93404518257228, "y": -26.37516457302126, "z": 0.8870480593536575}, {"x": -14.77081885241812, "y": -26.46661058401505, "z": 0.8851677567341492}, {"x": -14.60701063214523, "y": -26.55702380074514, "z": 0.8832531489703602}, {"x": -14.4426215292048, "y": -26.64640381466997, "z": 0.8813035707361102}, {"x": -14.27765597705773, "y": -26.73473808995837, "z": 0.8793194878520558}, {"x": -14.11212787959687, "y": -26.822016702956, "z": 0.8773019655493516}, {"x": -13.94604855842236, "y": -26.90823887795236, "z": 0.8752510454450342}, {"x": -13.77942318470162, "y": -26.99340151838575, "z": 0.8731658810550057}, {"x": -13.61226198862349, "y": -27.07749799933014, "z": 0.8710464056649672}, {"x": -13.44457819254951, "y": -27.16052735890391, "z": 0.8688935754189121}, {"x": -13.27637638325057, "y": -27.24248909583448, "z": 0.8667079356751249}, {"x": -13.10765902451125, "y": -27.32337408549904, "z": 0.8644890752635983}, {"x": -12.93844053106507, "y": -27.40317304763357, "z": 0.8622366919379721}, {"x": -12.76873870336783, "y": -27.48188745575864, "z": 0.8599511196724463}, {"x": -12.59856023373642, "y": -27.55952127816004, "z": 0.8576328429692521}, {"x": -12.42790812179144, "y": -27.6360693649256, "z": 0.8552822238841843}, {"x": -12.25679333564665, "y": -27.71152506693582, "z": 0.8528993568371173}, {"x": -12.08522774609483, "y": -27.78588918360872, "z": 0.8504838867492943}, {"x": -11.91321853898545, "y": -27.85916144004164, "z": 0.848035725052153}, {"x": -11.74077686105983, "y": -27.93133544773387, "z": 0.8455557145649073}, {"x": -11.567917764956, "y": -28.00241137662291, "z": 0.8430445756494134}, {"x": -11.39464814786033, "y": -28.07239734003897, "z": 0.8405018271131944}, {"x": -11.22096872343381, "y": -28.14129335370491, "z": 0.8379268099142101}, {"x": -11.04688878940624, "y": -28.20909083192825, "z": 0.835320120675088}, {"x": -10.87242428403505, "y": -28.27578902733915, "z": 0.8326828404772562}, {"x": -10.69758379345839, "y": -28.34139437131956, "z": 0.8300149658244304}, {"x": -10.52237042153061, "y": -28.40590803202643, "z": 0.8273157355631119}, {"x": -10.34679329473849, "y": -28.46932931963385, "z": 0.8245851537032396}, {"x": -10.17086216473133, "y": -28.53166281051555, "z": 0.8218240426153114}, {"x": -9.99457871606768, "y": -28.59291037890213, "z": 0.8190328479137617}, {"x": -9.817946260640866, "y": -28.6530665454073, "z": 0.8162113114438114}, {"x": -9.640978244851423, "y": -28.71213070071638, "z": 0.8133591681957612}, {"x": -9.463685121947686, "y": -28.77011220121152, "z": 0.81047648033068}, {"x": -9.286065462712681, "y": -28.82701687894224, "z": 0.8075635623783229}, {"x": -9.108119065531147, "y": -28.88283974077937, "z": 0.8046209104827762}, {"x": -8.92985416284293, "y": -28.93757776598013, "z": 0.8016486059924992}, {"x": -8.751276625959488, "y": -28.99123555388079, "z": 0.7986460010118178}, {"x": -8.5723881136675, "y": -29.04381402364534, "z": 0.7956128379774225}, {"x": -8.393195568549524, "y": -29.09530933407344, "z": 0.7925500053431243}, {"x": -8.213706093564, "y": -29.14572470510895, "z": 0.789458131644059}, {"x": -8.033917279353293, "y": -29.19506571302722, "z": 0.7863365179406743}, {"x": -7.853826267052167, "y": -29.24332710384826, "z": 0.7831844262529049}, {"x": -7.673441623798115, "y": -29.29050050855566, "z": 0.7800023956332884}, {"x": -7.492773901978284, "y": -29.33658774158906, "z": 0.776791309864626}, {"x": -7.311823538614656, "y": -29.38159311097558, "z": 0.7735510230083212}, {"x": -7.130588445872452, "y": -29.42551286267444, "z": 0.7702808090995698}, {"x": -6.949074157179699, "y": -29.46834297534356, "z": 0.7669805958880497}, {"x": -6.767286010817521, "y": -29.51008388972096, "z": 0.76365094232536}, {"x": -6.585223254274855, "y": -29.55073121767509, "z": 0.7602921903432682}, {"x": -6.402890056765484, "y": -29.59027550287362, "z": 0.7569042439147766}, {"x": -6.220297997876409, "y": -29.62871556807105, "z": 0.7534868232768349}, {"x": -6.037451530383317, "y": -29.66605696045679, "z": 0.7500397297051689}, {"x": -5.854346835963478, "y": -29.70229639584668, "z": 0.7465632335550928}, {"x": -5.670987530288769, "y": -29.73742195808498, "z": 0.7430580404383185}, {"x": -5.487384242266655, "y": -29.77142848560596, "z": 0.7395242474021018}, {"x": -5.303542140028201, "y": -29.80431750520254, "z": 0.7359610448425028}, {"x": -5.119464223305553, "y": -29.83608501291496, "z": 0.732368211653273}, {"x": -4.935159608920732, "y": -29.86672462421747, "z": 0.7287467862173976}, {"x": -4.750634753749473, "y": -29.89623642183643, "z": 0.7250973989453531}, {"x": -4.565888289452481, "y": -29.92461867437772, "z": 0.7214193466986395}, {"x": -4.380923986063491, "y": -29.95186031411019, "z": 0.7177120505512166}, {"x": -4.195756585147739, "y": -29.97795360391558, "z": 0.7139761270552357}, {"x": -4.010397608320068, "y": -30.00290122854665, "z": 0.7102124123307523}, {"x": -3.824847879163444, "y": -30.02670342464657, "z": 0.7064208799524568}, {"x": -3.639109815783913, "y": -30.04935190974073, "z": 0.7026010737159869}, {"x": -3.453194258691378, "y": -30.07084150577347, "z": 0.698752973807753}, {"x": -3.267110199161837, "y": -30.09117165840878, "z": 0.6948770310130332}, {"x": -3.080861938998774, "y": -30.11033605496604, "z": 0.6909737205004471}, {"x": -2.894459946791252, "y": -30.1283266272251, "z": 0.6870432680307373}, {"x": -2.707917566742168, "y": -30.14514523643319, "z": 0.683085463458481}, {"x": -2.521238591260728, "y": -30.16079564882056, "z": 0.6790999901672827}, {"x": -2.334424298022106, "y": -30.17526998826581, "z": 0.6750872605163881}, {"x": -2.147486968373714, "y": -30.18855705947937, "z": 0.6710482679150446}, {"x": -1.960441377240432, "y": -30.20065580799448, "z": 0.666983172209992}, {"x": -1.773294224632649, "y": -30.2115690787013, "z": 0.6628911512093799}, {"x": -1.586052570192811, "y": -30.2212930803727, "z": 0.6587721628297238}, {"x": -1.398729271395976, "y": -30.22982386645023, "z": 0.6546274025688422}, {"x": -1.21133262601254, "y": -30.23716254962944, "z": 0.6504575151758724}, {"x": -1.023865687483643, "y": -30.24330609515832, "z": 0.64626191093544}, {"x": -0.8363397915260414, "y": -30.24824571525987, "z": 0.6420402348024258}, {"x": -0.648773753428781, "y": -30.2519807225472, "z": 0.6377931363144027}, {"x": -0.4611782868637061, "y": -30.25451814085261, "z": 0.6335213963096231}, {"x": -0.2735551877513296, "y": -30.25585722755969, "z": 0.6292251850863919}, {"x": -0.08591245702696021, "y": -30.25599034996252, "z": 0.6249043248544416}, {"x": 0.1017343900892783, "y": -30.25491694977474, "z": 0.6205587904962246}, {"x": 0.2893740459817062, "y": -30.25264032801856, "z": 0.6161889395328902}, {"x": 0.4769982002521024, "y": -30.24915736556053, "z": 0.611795445451537}, {"x": 0.6645926863644563, "y": -30.244466477531, "z": 0.6073788216821067}, {"x": 0.852145094989567, "y": -30.23857523416854, "z": 0.602938861544573}, {"x": 1.039652004035826, "y": -30.231488169089, "z": 0.5984751561981771}, {"x": 1.227106360067167, "y": -30.22319910471857, "z": 0.5939882792033385}, {"x": 1.414490467684142, "y": -30.2137048226482, "z": 0.5894794169455826}, {"x": 1.601790200629234, "y": -30.2030128536041, "z": 0.5849487084619096}, {"x": 1.789000710762908, "y": -30.19113045758295, "z": 0.5803953407666813}, {"x": 1.976113931934893, "y": -30.17805785644059, "z": 0.575819420564453}, {"x": 2.163116708866129, "y": -30.16379700644087, "z": 0.5712221611981725}, {"x": 2.350001592903959, "y": -30.14835364414454, "z": 0.5666041431395226}, {"x": 2.536764086260414, "y": -30.13172846599686, "z": 0.5619649019696751}, {"x": 2.723390802870022, "y": -30.11392061945928, "z": 0.557304224863285}, {"x": 2.909866201434189, "y": -30.0949396029334, "z": 0.5526226291625982}, {"x": 3.096186172156132, "y": -30.07479745300412, "z": 0.5479207442555475}, {"x": 3.282351367699011, "y": -30.05349434635488, "z": 0.5431988768116798}, {"x": 3.468353103864494, "y": -30.03102772160785, "z": 0.5384569658552495}, {"x": 3.654178989681181, "y": -30.00740499847448, "z": 0.5336947789406004}, {"x": 3.839823428407935, "y": -29.98263454655728, "z": 0.5289124576016802}, {"x": 4.025282031788591, "y": -29.95671745604632, "z": 0.5241107446358477}, {"x": 4.210546186817545, "y": -29.92965796041764, "z": 0.5192902095598253}, {"x": 4.395612131917341, "y": -29.90146602901115, "z": 0.5144504394084841}, {"x": 4.580481906892913, "y": -29.87214474403895, "z": 0.5095908247311045}, {"x": 4.765149420488702, "y": -29.84168978621583, "z": 0.5047119396335569}, {"x": 4.949601378303512, "y": -29.81010403632417, "z": 0.4998149032282655}, {"x": 5.133833438395231, "y": -29.77739817685063, "z": 0.4948996395717745}, {"x": 5.317849200528661, "y": -29.74357731870236, "z": 0.489965241185288}, {"x": 5.501645248574761, "y": -29.70863976246712, "z": 0.4850117794477708}, {"x": 5.685213740382875, "y": -29.67258727870154, "z": 0.4800402323319515}, {"x": 5.868553264700052, "y": -29.63542359758671, "z": 0.4750509695722485}, {"x": 6.051662792333631, "y": -29.59714651276104, "z": 0.4700435741782689}, {"x": 6.23453290301874, "y": -29.55775551552988, "z": 0.4650178121985287}, {"x": 6.417156443878127, "y": -29.51725933763726, "z": 0.4599739037758028}, {"x": 6.599536649894547, "y": -29.47566276900211, "z": 0.4549122902356446}, {"x": 6.781674597520037, "y": -29.4329579773705, "z": 0.449833403317692}, {"x": 6.963560818451204, "y": -29.38914033755166, "z": 0.4447372163489859}, {"x": 7.145186518124253, "y": -29.34421602928058, "z": 0.4396232523096124}, {"x": 7.326549955724723, "y": -29.29818840970908, "z": 0.4344915072925558}, {"x": 7.507647585254341, "y": -29.25105381254549, "z": 0.4293428431492587}, {"x": 7.688472579369305, "y": -29.20281278426204, "z": 0.4241778716236056}, {"x": 7.869023330613016, "y": -29.15346867881056, "z": 0.41899604871441}, {"x": 8.049299597359063, "y": -29.10301728101458, "z": 0.4137967366785356}, {"x": 8.229290661366452, "y": -29.05145209746808, "z": 0.4085806137872331}, {"x": 8.408983208384184, "y": -28.99877622914147, "z": 0.4033487903503351}, {"x": 8.58837581278252, "y": -28.94499611961231, "z": 0.3981011600507411}, {"x": 8.767470527505669, "y": -28.89010918620162, "z": 0.39283697215333}, {"x": 8.946258528859179, "y": -28.83410956860715, "z": 0.3875564133475678}, {"x": 9.124728592506955, "y": -28.77699795205333, "z": 0.3822603526809696}, {"x": 9.302876792156225, "y": -28.71877543930515, "z": 0.3769491848921744}, {"x": 9.480697341001385, "y": -28.65943780686714, "z": 0.3716227833688208}, {"x": 9.658178299227467, "y": -28.59898569145868, "z": 0.3662810243438652}, {"x": 9.835313366118278, "y": -28.53742632067564, "z": 0.3609239812294329}, {"x": 10.0121028675748, "y": -28.4747585504727, "z": 0.3555521405232611}, {"x": 10.18853968059947, "y": -28.41097223951667, "z": 0.3501662375114314}, {"x": 10.36460897552521, "y": -28.3460661112671, "z": 0.3447663723813814}, {"x": 10.54030136569027, "y": -28.28004803896166, "z": 0.3393519829428571}, {"x": 10.71561332481276, "y": -28.21291943363442, "z": 0.3339231339923653}, {"x": 10.89053677572023, "y": -28.14467615119182, "z": 0.3284809281264884}, {"x": 11.06506153006547, "y": -28.07531941955018, "z": 0.3230260753537915}, {"x": 11.23918279724225, "y": -28.00485151165933, "z": 0.3175580385390016}, {"x": 11.41289408027937, "y": -27.93326829162784, "z": 0.3120763155999471}, {"x": 11.58617915129706, "y": -27.86056820664905, "z": 0.3065817240080421}, {"x": 11.75902474970036, "y": -27.78675891029753, "z": 0.301075366913116}, {"x": 11.93143013381225, "y": -27.71184563609847, "z": 0.2955572099598918}, {"x": 12.10339216052078, "y": -27.63582362393624, "z": 0.2900267542773609}, {"x": 12.27489560563581, "y": -27.55869018858308, "z": 0.2844842703512843}, {"x": 12.44592686107053, "y": -27.48045063598616, "z": 0.2789305086276762}, {"x": 12.61647980395392, "y": -27.40110795594719, "z": 0.2733659748179398}, {"x": 12.78654459646197, "y": -27.32066093836667, "z": 0.2677908773644245}, {"x": 12.95610824248965, "y": -27.23911487515377, "z": 0.262205152343133}, {"x": 13.125164527905, "y": -27.15647809519191, "z": 0.2566087346989136}, {"x": 13.2937088984218, "y": -27.07274907528126, "z": 0.251002219897802}, {"x": 13.4617273250174, "y": -26.98792295839129, "z": 0.2453866166247481}, {"x": 13.62920338948189, "y": -26.9020069090027, "z": 0.2397620744645836}, {"x": 13.79612973847729, "y": -26.81501324477987, "z": 0.2341279592385281}, {"x": 13.96250203275661, "y": -26.72694480169886, "z": 0.2284844343162768}, {"x": 14.12830897418049, "y": -26.63780142898091, "z": 0.2228327559468914}, {"x": 14.29353892975552, "y": -26.54758960545879, "z": 0.2171736423756768}, {"x": 14.45818610287011, "y": -26.45631523581663, "z": 0.2115065785357137}, {"x": 14.6222408218134, "y": -26.36397970163821, "z": 0.2058312119864881}, {"x": 14.78568644335733, "y": -26.27059065991544, "z": 0.2001483886294794}, {"x": 14.94851409724597, "y": -26.17616200518308, "z": 0.1944591134736394}, {"x": 15.11072499012632, "y": -26.0807000263629, "z": 0.188763425886911}, {"x": 15.2723126186156, "y": -25.9842037114159, "z": 0.1830610262979105}, {"x": 15.43326105839403, "y": -25.88667951353369, "z": 0.1773521077066462}, {"x": 15.5935608648454, "y": -25.78814070644057, "z": 0.1716371953512302}, {"x": 15.75320933291887, "y": -25.68859500739384, "z": 0.1659168572331636}, {"x": 15.91219921800406, "y": -25.58804704979659, "z": 0.1601914916536611}, {"x": 16.07052306880411, "y": -25.48650779331426, "z": 0.1544608966741376}, {"x": 16.22817971711904, "y": -25.38398781457162, "z": 0.148724754508842}, {"x": 16.38516548732274, "y": -25.28048838817235, "z": 0.1429836790920525}, {"x": 16.54146839367694, "y": -25.17601249898156, "z": 0.1372387443294591}, {"x": 16.69708013137259, "y": -25.07057478011237, "z": 0.1314899427493731}, {"x": 16.8520028805892, "y": -24.96418895287666, "z": 0.1257364545688108}, {"x": 17.00623729419265, "y": -24.85685737451418, "z": 0.1199783991362769}, {"x": 17.15977576030584, "y": -24.74858288529742, "z": 0.1142169237704522}, {"x": 17.31261326789776, "y": -24.63937494879348, "z": 0.1084525365159464}, {"x": 17.46475071226247, "y": -24.52923966460829, "z": 0.1026846205566705}, {"x": 17.61618354725466, "y": -24.41818011760063, "z": 0.09691279982049417}, {"x": 17.76690371248224, "y": -24.30620650338587, "z": 0.0911376874659047}, {"x": 17.91691275614064, "y": -24.19332965039703, "z": 0.08536000450799128}, {"x": 18.06621655952056, "y": -24.0795493822554, "z": 0.07957977848413796}, {"x": 18.21480965119688, "y": -23.9648630423298, "z": 0.07379675832204327}, {"x": 18.36268155055368, "y": -23.8492783795676, "z": 0.0680108753548627}, {"x": 18.50983103556868, "y": -23.73280622563532, "z": 0.06222234928551793}, {"x": 18.65626044748467, "y": -23.61544886601383, "z": 0.0564317811484695}, {"x": 18.80196608318055, "y": -23.49720676857597, "z": 0.05063963948088017}, {"x": 18.94694519946281, "y": -23.37808627883092, "z": 0.0448454982677396}, {"x": 19.09119927004976, "y": -23.25809128144379, "z": 0.03904881857833786}, {"x": 19.23472365619638, "y": -23.13721852496292, "z": 0.03325026375778573}, {"x": 19.37750789103007, "y": -23.01547042052988, "z": 0.0274509194970734}, {"x": 19.51954955480084, "y": -22.89285805999628, "z": 0.02165064845074371}, {"x": 19.66085400016042, "y": -22.76938582115525, "z": 0.01584859695599184}, {"x": 19.80141881272791, "y": -22.64504859771423, "z": 0.01004495126307764}, {"x": 19.94123361324932, "y": -22.51984691788335, "z": 0.004240799345261733}, {"x": 20.08029360933035, "y": -22.39378718154145, "z": -0.001563415739271547}, {"x": 20.21859853597239, "y": -22.2668705736861, "z": -0.007368178914039873}, {"x": 20.35614172449302, "y": -22.13909796046361, "z": -0.01317373975908451}, {"x": 20.49291594379625, "y": -22.01047710735631, "z": -0.01897960567896117}, {"x": 20.62892243709371, "y": -21.88101214362062, "z": -0.02478513941055548}, {"x": 20.764160911521, "y": -21.75069725770301, "z": -0.03059007879604556}, {"x": 20.89861984209331, "y": -21.61953040920169, "z": -0.03639448535604745}, {"x": 21.03228844748626, "y": -21.48752074527648, "z": -0.04219855017666086}, {"x": 21.16516617537798, "y": -21.35467598095063, "z": -0.04800212342192222}, {"x": 21.29725168862689, "y": -21.22099409615715, "z": -0.05380435190034999}, {"x": 21.42853667925302, "y": -21.08647408406653, "z": -0.05960458199455827}, {"x": 21.5590154788873, "y": -20.95112131871781, "z": -0.0654033005096428}, {"x": 21.68868518006474, "y": -20.81493786073567, "z": -0.07120102651097561}, {"x": 21.81753528798652, "y": -20.67792192504881, "z": -0.07699689969079286}, {"x": 21.94555386958037, "y": -20.54007967837931, "z": -0.08278976296165652}, {"x": 22.07273985822254, "y": -20.40142109732035, "z": -0.08857975295474275}, {"x": 22.1990949126825, "y": -20.26194586615425, "z": -0.09436756866894032}, {"x": 22.32460906853019, "y": -20.12164952583231, "z": -0.1001528916933542}, {"x": 22.44926820521394, "y": -19.98053719865039, "z": -0.1059346821571123}, {"x": 22.57306674957348, "y": -19.83861690914818, "z": -0.1117124641925148}, {"x": 22.69600163615743, "y": -19.69588990919071, "z": -0.1174864619560584}, {"x": 22.81806337238658, "y": -19.55235937317049, "z": -0.1232567825748783}, {"x": 22.93924376476609, "y": -19.40803406717068, "z": -0.1290230439589551}, {"x": 23.0595406057586, "y": -19.26291675291448, "z": -0.1347846011910862}, {"x": 23.17894636638243, "y": -19.11700367444036, "z": -0.1405408899188493}, {"x": 23.29744559737255, "y": -18.97029966302421, "z": -0.1462918170719069}, {"x": 23.41502918600701, "y": -18.82281856317103, "z": -0.1520377004373944}, {"x": 23.53169674947217, "y": -18.67456779021018, "z": -0.157778382490501}, {"x": 23.64744216620894, "y": -18.52554600743057, "z": -0.163512761906847}, {"x": 23.76225319042425, "y": -18.37575665894125, "z": -0.1692400807745248}, {"x": 23.87612289903082, "y": -18.22520916922525, "z": -0.1749608844661961}, {"x": 23.98904561475463, "y": -18.07390867475191, "z": -0.1806756057687393}, {"x": 24.10100809842659, "y": -17.9218596273525, "z": -0.1863832373061465}, {"x": 24.21200007012026, "y": -17.76907424528411, "z": -0.1920826292867264}, {"x": 24.32202184206747, "y": -17.61556326508918, "z": -0.1977738954008036}, {"x": 24.43107060392926, "y": -17.46132732990729, "z": -0.2034575405539083}, {"x": 24.53913191545531, "y": -17.30636978040366, "z": -0.209133201846647}, {"x": 24.64619288840562, "y": -17.1507047646422, "z": -0.2147999834465342}, {"x": 24.75225084191947, "y": -16.99434492834766, "z": -0.2204573788630722}, {"x": 24.85730317216403, "y": -16.83729545420625, "z": -0.2261053830560707}, {"x": 24.96134149607837, "y": -16.6795653923265, "z": -0.2317440980918264}, {"x": 25.06436018604874, "y": -16.521168046796, "z": -0.2373733633735576}, {"x": 25.16635750740507, "y": -16.36210967035031, "z": -0.2429925614023944}, {"x": 25.26732512886241, "y": -16.20239377851073, "z": -0.2486009330954337}, {"x": 25.36725197161719, "y": -16.04203456736107, "z": -0.2541984011301084}, {"x": 25.46613732623269, "y": -15.88105042416216, "z": -0.2597855162766248}, {"x": 25.56398505855965, "y": -15.71944920097551, "z": -0.2653621731424658}, {"x": 25.66078948481853, "y": -15.55723359081851, "z": -0.270927204574098}, {"x": 25.75654249663371, "y": -15.39441404919823, "z": -0.2764799723930013}, {"x": 25.85124419426938, "y": -15.23100436258731, "z": -0.2820212036786625}, {"x": 25.94489416050684, "y": -15.06701277878669, "z": -0.2875513608056182}, {"x": 26.03748584072469, "y": -14.90244868427798, "z": -0.293069539869728}, {"x": 26.1290187477478, "y": -14.73732627858988, "z": -0.2985748425712071}, {"x": 26.21950002812908, "y": -14.57165358459647, "z": -0.3040674901717564}, {"x": 26.30892916131379, "y": -14.40543097482842, "z": -0.3095479509299858}, {"x": 26.39729685181089, "y": -14.23866634216419, "z": -0.3150160624689662}, {"x": 26.48460023419616, "y": -14.07137585690147, "z": -0.3204712678770912}, {"x": 26.57084541494879, "y": -13.90356863567466, "z": -0.3259131265553865}, {"x": 26.65603478768869, "y": -13.73524643825273, "z": -0.3313415591642179}, {"x": 26.74016531719903, "y": -13.56641670821854, "z": -0.3367568682347243}, {"x": 26.82323755926583, "y": -13.39708948923674, "z": -0.3421592357944326}, {"x": 26.90525330796568, "y": -13.22726706994947, "z": -0.3475481248807394}, {"x": 26.9862074450471, "y": -13.05695228500263, "z": -0.3529227153283293}, {"x": 27.06609673506611, "y": -12.88615775849513, "z": -0.3582830788594246}, {"x": 27.14492834253484, "y": -12.71489412189201, "z": -0.3636300099883164}, {"x": 27.22270692146422, "y": -12.54316034385874, "z": -0.3689634329945108}, {"x": 27.29942547173413, "y": -12.3709558630343, "z": -0.3742821751497545}, {"x": 27.3750788777824, "y": -12.19828904550594, "z": -0.3795857340573659}, {"x": 27.44967063894136, "y": -12.02516808149383, "z": -0.3848748885042728}, {"x": 27.52320070800114, "y": -11.85159578151765, "z": -0.3901500177926558}, {"x": 27.59566393445971, "y": -11.67757776162053, "z": -0.3954102995265476}, {"x": 27.6670616868283, "y": -11.50312194166125, "z": -0.4006549952293031}, {"x": 27.73739859246555, "y": -11.32822868199885, "z": -0.405884226407093}, {"x": 27.80666931938511, "y": -11.15289555609289, "z": -0.4110982809654644}, {"x": 27.87486427976265, "y": -10.97713104664814, "z": -0.416297107161413}, {"x": 27.94198349549829, "y": -10.80094788222534, "z": -0.4214803129048275}, {"x": 28.0080321024396, "y": -10.62434772161632, "z": -0.4266472912958588}, {"x": 28.07300765626453, "y": -10.44732795610255, "z": -0.431797736767674}, {"x": 28.1369040018293, "y": -10.26989458373267, "z": -0.4369320119013365}, {"x": 28.19971964224721, "y": -10.09205479499821, "z": -0.4420504021982543}, {"x": 28.26145189723928, "y": -9.91380889442735, "z": -0.4471522146663038}, {"x": 28.32209275153695, "y": -9.735161086730475, "z": -0.4522364423065136}, {"x": 28.3816400969487, "y": -9.556122781601188, "z": -0.4573031678698145}, {"x": 28.4400994634753, "y": -9.376698838507611, "z": -0.4623531944197509}, {"x": 28.49746801654187, "y": -9.196885719660346, "z": -0.4673862997460034}, {"x": 28.55373342039318, "y": -9.016686176209598, "z": -0.4724012417145149}, {"x": 28.60889041311989, "y": -8.836110675652408, "z": -0.477397546886059}, {"x": 28.6629415828345, "y": -8.655165699266021, "z": -0.4823758523727074}, {"x": 28.71588342424723, "y": -8.4738533229952, "z": -0.4873363498772131}, {"x": 28.76770859474412, "y": -8.292179704731009, "z": -0.4922782780858804}, {"x": 28.81841601661002, "y": -8.110151593923861, "z": -0.4972009554868969}, {"x": 28.86800445420653, "y": -7.927768680167482, "z": -0.5021042527323526}, {"x": 28.91646338747835, "y": -7.745032782022521, "z": -0.5069882392307404}, {"x": 28.9637836348945, "y": -7.561957254531677, "z": -0.5118529734637888}, {"x": 29.00996662192881, "y": -7.378554102407234, "z": -0.5166981425468086}, {"x": 29.05501327535554, "y": -7.194822563996408, "z": -0.5215229024277083}, {"x": 29.09891522477126, "y": -7.010762856287441, "z": -0.5263267528033826}, {"x": 29.14166432989856, "y": -6.826385459134289, "z": -0.531110132223486}, {"x": 29.18325790541006, "y": -6.641699439018482, "z": -0.5358733597261148}, {"x": 29.22369011993116, "y": -6.456708271821078, "z": -0.5406155701646355}, {"x": 29.26295234304572, "y": -6.271420901036049, "z": -0.5453356433998402}, {"x": 29.301043571037, "y": -6.085849496486217, "z": -0.5500336783544346}, {"x": 29.3379657924677, "y": -5.899997882704103, "z": -0.5547104053417589}, {"x": 29.37370967047707, "y": -5.713867208732673, "z": -0.5593654666654703}, {"x": 29.40826128541739, "y": -5.527468608467383, "z": -0.5639976415816371}, {"x": 29.44161797098507, "y": -5.340817408720525, "z": -0.5686064897580797}, {"x": 29.47378241378169, "y": -5.153921544429468, "z": -0.5731924622066779}, {"x": 29.50474892647785, "y": -4.96678668510749, "z": -0.5777556280761378}, {"x": 29.53450986507875, "y": -4.779424232012611, "z": -0.5822953958898136}, {"x": 29.5630640395884, "y": -4.591844784751188, "z": -0.5868111542413216}, {"x": 29.59040795330234, "y": -4.404053087439503, "z": -0.5913025376948318}, {"x": 29.61653183244436, "y": -4.216059636908106, "z": -0.5957695203663881}, {"x": 29.64143228424172, "y": -4.027884021771279, "z": -0.6002123716254429}, {"x": 29.66511432804389, "y": -3.839538860782244, "z": -0.6046308697894512}, {"x": 29.68757685198441, "y": -3.651025989623402, "z": -0.6090240084452639}, {"x": 29.70881139707487, "y": -3.462353903108965, "z": -0.6133912597756376}, {"x": 29.72881486257544, "y": -3.273540394748853, "z": -0.6177332478518588}, {"x": 29.74758954973216, "y": -3.084598503586439, "z": -0.6220503819650047}, {"x": 29.76513348124329, "y": -2.895537023976003, "z": -0.6263417810529217}, {"x": 29.78144453375418, "y": -2.706369930461787, "z": -0.6306064408334999}, {"x": 29.79652826505156, "y": -2.517110468820915, "z": -0.6348446186024344}, {"x": 29.81038927427424, "y": -2.327763827459516, "z": -0.6390570766682814}, {"x": 29.82302132919028, "y": -2.138337557573414, "z": -0.6432435427551864}, {"x": 29.83441954180974, "y": -1.948849032883317, "z": -0.6474030683795502}, {"x": 29.84459198699848, "y": -1.759313792990585, "z": -0.6515353843455386}, {"x": 29.85354736072784, "y": -1.569737358434785, "z": -0.6556408843597672}, {"x": 29.86128433005036, "y": -1.380126141241656, "z": -0.6597197521495278}, {"x": 29.86780241551933, "y": -1.190493046720048, "z": -0.6637717855670867}, {"x": 29.87310731156627, "y": -1.000847622370856, "z": -0.6677965663873033}, {"x": 29.87720056300958, "y": -0.8111945427891255, "z": -0.6717936509157958}, {"x": 29.88008104112595, "y": -0.6215453885165221, "z": -0.6757631536840916}, {"x": 29.88175611425999, "y": -0.4319157643938686, "z": -0.679705708464086}, {"x": 29.88223594951948, "y": -0.242310436739901, "z": -0.6836212595161993}, {"x": 29.88152042270611, "y": -0.05272794997276839, "z": -0.6875087863449549}, {"x": 29.87960593463264, "y": 0.1368231313515241, "z": -0.6913679037851467}, {"x": 29.8764973192852, "y": 0.3263287564552661, "z": -0.6951994586065299}, {"x": 29.87220198823603, "y": 0.5157827235309662, "z": -0.6990039309143236}, {"x": 29.86672093122415, "y": 0.7051812802818043, "z": -0.7027804898903975}, {"x": 29.86005579274445, "y": 0.8945158259643857, "z": -0.7065283038123684}, {"x": 29.85221424521504, "y": 1.083780785419751, "z": -0.7102477156342442}, {"x": 29.84319946512971, "y": 1.27297634397043, "z": -0.7139394206143008}, {"x": 29.8330058202501, "y": 1.462095984850328, "z": -0.7176032261169357}, {"x": 29.82163363303419, "y": 1.651125741735622, "z": -0.7212384090653379}, {"x": 29.80909406768221, "y": 1.840059134823472, "z": -0.7248447062364825}, {"x": 29.79539263547703, "y": 2.028898619578432, "z": -0.7284223091740982}, {"x": 29.7805251222435, "y": 2.217640774546503, "z": -0.7319714442042409}, {"x": 29.76449139717445, "y": 2.406275749278857, "z": -0.7354921418130546}, {"x": 29.74729583460898, "y": 2.594799025597094, "z": -0.7389839365088025}, {"x": 29.72893733265709, "y": 2.783208660853464, "z": -0.7424461364953586}, {"x": 29.7094154755759, "y": 2.971495535497049, "z": -0.7458788689481122}, {"x": 29.68873764660211, "y": 3.159650597766622, "z": -0.749282906506089}, {"x": 29.66690816908226, "y": 3.347675061833105, "z": -0.7526581098620008}, {"x": 29.64392075438922, "y": 3.535569951774401, "z": -0.7560033161171099}, {"x": 29.6197711684714, "y": 3.723325005686083, "z": -0.7593181566540579}, {"x": 29.59446525978608, "y": 3.910929187534311, "z": -0.762603472294641}, {"x": 29.56800778876766, "y": 4.09838068090668, "z": -0.7658596107529498}, {"x": 29.54039581880334, "y": 4.285677084329814, "z": -0.7690857128294986}, {"x": 29.51162850730448, "y": 4.472810940544718, "z": -0.7722810085838349}, {"x": 29.48170991676904, "y": 4.659779215978093, "z": -0.7754457242343586}, {"x": 29.45063783376052, "y": 4.846581400573933, "z": -0.7785803328629642}, {"x": 29.41840520625396, "y": 5.033207563556897, "z": -0.7816846716450234}, {"x": 29.38501418697484, "y": 5.219644698482993, "z": -0.7847581477756461}, {"x": 29.35047305022117, "y": 5.40589105848589, "z": -0.7878003492380646}, {"x": 29.31478006459968, "y": 5.591949274175188, "z": -0.7908112033738153}, {"x": 29.27792761550005, "y": 5.777811960636607, "z": -0.7937909789287485}, {"x": 29.2399154937128, "y": 5.963467501314799, "z": -0.7967398610139315}, {"x": 29.20074575995806, "y": 6.148911292972233, "z": -0.7996572425150799}, {"x": 29.16041492386807, "y": 6.334139370594203, "z": -0.802542208874739}, {"x": 29.11892266051295, "y": 6.519141798611566, "z": -0.8053949215731822}, {"x": 29.0762741129295, "y": 6.703911510961285, "z": -0.8082162114994287}, {"x": 29.03246713805126, "y": 6.888448748725697, "z": -0.8110057939197709}, {"x": 28.9874916855229, "y": 7.072748218075407, "z": -0.8137624223466268}, {"x": 28.9413451290894, "y": 7.256794986028484, "z": -0.8164857584823293}, {"x": 28.89403418397354, "y": 7.440578641344727, "z": -0.8191765586968888}, {"x": 28.84556000576854, "y": 7.624097232953476, "z": -0.8218350289329308}, {"x": 28.79591628489019, "y": 7.807344119556931, "z": -0.8244603696006351}, {"x": 28.7451012773812, "y": 7.990307977972823, "z": -0.827051892959827}, {"x": 28.69311709718822, "y": 8.172983159910554, "z": -0.8296096640984776}, {"x": 28.63995948104347, "y": 8.355363277486198, "z": -0.832133978785985}, {"x": 28.5856239293726, "y": 8.537432397257017, "z": -0.8346248010458863}, {"x": 28.53011558946595, "y": 8.719176906725961, "z": -0.8370816875623484}, {"x": 28.47343959190291, "y": 8.90059489482702, "z": -0.8395040578527314}, {"x": 28.41559019456016, "y": 9.081682539274373, "z": -0.8418916614465706}, {"x": 28.35656166450309, "y": 9.262424373411433, "z": -0.8442449011199384}, {"x": 28.2963577529287, "y": 9.442804421970697, "z": -0.8465641236999584}, {"x": 28.23498182437284, "y": 9.622814632891677, "z": -0.8488486202445757}, {"x": 28.17243236139043, "y": 9.80244597324367, "z": -0.8510974158473161}, {"x": 28.10871283860644, "y": 9.981684788596455, "z": -0.8533108233762253}, {"x": 28.04383014333477, "y": 10.16052170686874, "z": -0.855489767637795}, {"x": 27.97778236948115, "y": 10.33895107652821, "z": -0.8576339391845054}, {"x": 27.91056470200427, "y": 10.51695900545538, "z": -0.8597422272853434}, {"x": 27.84218391913746, "y": 10.69452683370519, "z": -0.8618144681764649}, {"x": 27.77265262305468, "y": 10.8716455789238, "z": -0.8638514044108884}, {"x": 27.70197386773547, "y": 11.04831160365458, "z": -0.8658532750577956}, {"x": 27.63014594064348, "y": 11.22451310475073, "z": -0.8678195659990623}, {"x": 27.5571743863518, "y": 11.4002361324111, "z": -0.869749815542053}, {"x": 27.48306708979907, "y": 11.57547391156079, "z": -0.8716440450818213}, {"x": 27.40782670209787, "y": 11.75021695623873, "z": -0.8735026000322741}, {"x": 27.33145900904643, "y": 11.9244490208871, "z": -0.875325796243819}, {"x": 27.25397686910187, "y": 12.09816104421798, "z": -0.8771134802335526}, {"x": 27.17538777917299, "y": 12.27135346920338, "z": -0.8788650544017107}, {"x": 27.09569064162191, "y": 12.44402008480402, "z": -0.8805803327018047}, {"x": 27.01488983923979, "y": 12.6161452686971, "z": -0.8822600370065121}, {"x": 26.93299834123431, "y": 12.78771815897186, "z": -0.8839047533607001}, {"x": 26.85002437674061, "y": 12.95873616401719, "z": -0.8855137999998194}, {"x": 26.76597120273473, "y": 13.12919407629908, "z": -0.8870863278480019}, {"x": 26.68084779756086, "y": 13.29908337144137, "z": -0.8886228787461288}, {"x": 26.59466381536053, "y": 13.46840054774175, "z": -0.8901244589531212}, {"x": 26.50741959536184, "y": 13.63714229177832, "z": -0.8915908166650809}, {"x": 26.4191170953563, "y": 13.8052969402879, "z": -0.8930210759382528}, {"x": 26.32977012577293, "y": 13.97285426712345, "z": -0.8944152235759218}, {"x": 26.2393916346549, "y": 14.13981571980674, "z": -0.8957739064746971}, {"x": 26.14798271883926, "y": 14.30618220426675, "z": -0.8970974077831723}, {"x": 26.05554364138518, "y": 14.47194450456016, "z": -0.8983854842702195}, {"x": 25.96208262681163, "y": 14.63709483099726, "z": -0.8996377643715793}, {"x": 25.8676073759449, "y": 14.80163276444535, "z": -0.9008540797481137}, {"x": 25.77212110314693, "y": 14.96555340510763, "z": -0.9020347460762358}, {"x": 25.67563089314248, "y": 15.12884755524971, "z": -0.9031802881914976}, {"x": 25.5781467118359, "y": 15.29151449336167, "z": -0.9042906087829686}, {"x": 25.4796700842356, "y": 15.45355798411919, "z": -0.9053649199597853}, {"x": 25.3801983079271, "y": 15.61497162040931, "z": -0.9064029822611778}, {"x": 25.27973827702215, "y": 15.7757433514104, "z": -0.9074056374242171}, {"x": 25.17830203147944, "y": 15.93586975627608, "z": -0.9083734441781618}, {"x": 25.07589261987127, "y": 16.09535297209478, "z": -0.9093055955100875}, {"x": 24.97250974729263, "y": 16.25418959187799, "z": -0.9102012536988342}, {"x": 24.8681602208696, "y": 16.41237415861854, "z": -0.9110609676315565}, {"x": 24.76284922225419, "y": 16.56990595668222, "z": -0.9118855752934666}, {"x": 24.65657403143764, "y": 16.72678104453539, "z": -0.912674760473394}, {"x": 24.54933748279374, "y": 16.88298894332415, "z": -0.9134277586313321}, {"x": 24.44115158851087, "y": 17.03852560389252, "z": -0.9141444875475223}, {"x": 24.33202164929986, "y": 17.19339621959618, "z": -0.9148253155232919}, {"x": 24.22194308833078, "y": 17.34759901745377, "z": -0.9154704985913664}, {"x": 24.11091560516326, "y": 17.50112269636963, "z": -0.9160799681845475}, {"x": 23.99894638740372, "y": 17.6539613732532, "z": -0.9166532754590806}, {"x": 23.8860396411267, "y": 17.80611572616718, "z": -0.9171899788695836}, {"x": 23.77219630763939, "y": 17.95758068491114, "z": -0.9176903518925968}, {"x": 23.65742143541224, "y": 18.10834881215142, "z": -0.9181550520644812}, {"x": 23.5417196853592, "y": 18.25842072171911, "z": -0.9185839175708823}, {"x": 23.42508703735499, "y": 18.40779662144159, "z": -0.9189759581098019}, {"x": 23.30752063024905, "y": 18.55646592151832, "z": -0.9193308912244854}, {"x": 23.18902903306352, "y": 18.70441782170864, "z": -0.9196495957053552}, {"x": 23.06962041667441, "y": 18.85165192128389, "z": -0.9199325125074578}, {"x": 22.94929160714567, "y": 18.9981682586856, "z": -0.9201787493554411}, {"x": 22.82803999311934, "y": 19.14395932627894, "z": -0.9203875221557302}, {"x": 22.70587111942483, "y": 19.28901803103488, "z": -0.9205593175741658}, {"x": 22.58278699702636, "y": 19.43334117257949, "z": -0.9206947713300576}, {"x": 22.45878445500759, "y": 19.5769203170173, "z": -0.9207935847844447}, {"x": 22.33386790630684, "y": 19.71974388850546, "z": -0.9208551474998333}, {"x": 22.20804635168997, "y": 19.86180939254388, "z": -0.920879257579637}, {"x": 22.08131895194473, "y": 20.00311865940037, "z": -0.920866026836158}, {"x": 21.9536797208427, "y": 20.14366225331858, "z": -0.9208157635957585}, {"x": 21.82513108290113, "y": 20.28342431072504, "z": -0.9207285833330174}, {"x": 21.69568063730824, "y": 20.42239797667595, "z": -0.9206039269029752}, {"x": 21.56533066871328, "y": 20.56058084196299, "z": -0.9204411544303998}, {"x": 21.43408197782705, "y": 20.69796321690937, "z": -0.9202405982032462}, {"x": 21.30194012526295, "y": 20.83453457530806, "z": -0.9200030609880646}, {"x": 21.16890819530204, "y": 20.97029110204571, "z": -0.9197283372815385}, {"x": 21.03498282514139, "y": 21.1052246934023, "z": -0.9194153781503113}, {"x": 20.90016719849829, "y": 21.23931886733304, "z": -0.919063993074023}, {"x": 20.76447488880074, "y": 21.37256285454246, "z": -0.9186751322591451}, {"x": 20.62791323491079, "y": 21.50495495575399, "z": -0.9182491990991292}, {"x": 20.49047936921753, "y": 21.63648838472119, "z": -0.9177854021500513}, {"x": 20.35217604628021, "y": 21.76714947464959, "z": -0.9172831571807606}, {"x": 20.21301405051135, "y": 21.89692841635104, "z": -0.9167429413090027}, {"x": 20.07299940405267, "y": 22.02581832265372, "z": -0.9161653275425335}, {"x": 19.93213592383194, "y": 22.15380696056468, "z": -0.9155502624861438}, {"x": 19.79043508878603, "y": 22.28088265147975, "z": -0.9148974488535905}, {"x": 19.64790859990229, "y": 22.40704331747189, "z": -0.914206674949}, {"x": 19.50455852881104, "y": 22.53228648213037, "z": -0.9134780135607521}, {"x": 19.36038776449905, "y": 22.65659780924081, "z": -0.9127120666594113}, {"x": 19.21540963616675, "y": 22.77996237651546, "z": -0.9119092812110704}, {"x": 19.06963814367897, "y": 22.90237749133112, "z": -0.9110691373897594}, {"x": 18.9230798017325, "y": 23.02384203560234, "z": -0.9101910360911104}, {"x": 18.77574195820761, "y": 23.14434707510417, "z": -0.9092755685694733}, {"x": 18.62763662197003, "y": 23.26388545756354, "z": -0.9083237685898532}, {"x": 18.47877117040966, "y": 23.38245532633803, "z": -0.9073355134642123}, {"x": 18.3291493650256, "y": 23.50004881771319, "z": -0.9063099070598405}, {"x": 18.17878411607584, "y": 23.61665473727772, "z": -0.9052469888082693}, {"x": 18.02769381624007, "y": 23.73227187711626, "z": -0.9041478069292115}, {"x": 17.87588576316849, "y": 23.84690371220345, "z": -0.9030128172148657}, {"x": 17.72336040826728, "y": 23.96054471047248, "z": -0.901841471632661}, {"x": 17.57012727353941, "y": 24.07318565435482, "z": -0.9006334251040902}, {"x": 17.4162012063227, "y": 24.18482450792316, "z": -0.8993890985342389}, {"x": 17.26159024428941, "y": 24.29546082312958, "z": -0.8981090227558401}, {"x": 17.10630132528025, "y": 24.40508892299282, "z": -0.8967934128596111}, {"x": 16.95034698732065, "y": 24.51370568296008, "z": -0.8954421777825663}, {"x": 16.79373586254784, "y": 24.62131563965842, "z": -0.8940549624162005}, {"x": 16.63646886231891, "y": 24.72791834020172, "z": -0.8926317503737891}, {"x": 16.4785526928138, "y": 24.8335029438147, "z": -0.8911733432494648}, {"x": 16.32000297066666, "y": 24.93806364980194, "z": -0.8896803119373342}, {"x": 16.16082978817708, "y": 25.04160629274403, "z": -0.8881520131053805}, {"x": 16.00103542895612, "y": 25.14413304850414, "z": -0.8865877972862822}, {"x": 15.84062630538592, "y": 25.24563822477706, "z": -0.884988345287137}, {"x": 15.67961259216092, "y": 25.34612005637868, "z": -0.8833546664310354}, {"x": 15.51799846338203, "y": 25.44557946347569, "z": -0.8816865460592345}, {"x": 15.35578746447393, "y": 25.54401091368258, "z": -0.8799831237197966}, {"x": 15.19299202131157, "y": 25.64141014377765, "z": -0.8782444510225079}, {"x": 15.02962431215891, "y": 25.737782792839, "z": -0.8764714021931311}, {"x": 14.86568432462286, "y": 25.83313259430554, "z": -0.8746643235045163}, {"x": 14.70117068641296, "y": 25.92745233293481, "z": -0.8728227916621067}, {"x": 14.53609327355741, "y": 26.02073536300907, "z": -0.8709464911992321}, {"x": 14.37046363963277, "y": 26.11298407658814, "z": -0.8690355809666511}, {"x": 14.20428532405615, "y": 26.20419990403395, "z": -0.8670904549624431}, {"x": 14.03756256104755, "y": 26.29437847411813, "z": -0.865111501106694}, {"x": 13.87030388178956, "y": 26.3835190901229, "z": -0.8630986569449262}, {"x": 13.70251183451399, "y": 26.47162597322465, "z": -0.861051304606849}, {"x": 13.53418533362739, "y": 26.55869562473807, "z": -0.8589693133417973}, {"x": 13.3653327056298, "y": 26.64471821148182, "z": -0.8568535904947107}, {"x": 13.19596673338411, "y": 26.72969324973362, "z": -0.8547046720309354}, {"x": 13.02608980191917, "y": 26.81362761171508, "z": -0.8525217402848091}, {"x": 12.85569961212176, "y": 26.89651971781221, "z": -0.8503041105572167}, {"x": 12.6848016075635, "y": 26.97836226374934, "z": -0.848052476366752}, {"x": 12.51340345448848, "y": 27.05915384271736, "z": -0.8457677203582851}, {"x": 12.34150655326744, "y": 27.13889329314185, "z": -0.8434495513504695}, {"x": 12.16911398792899, "y": 27.21757402080924, "z": -0.8410971930379536}, {"x": 11.99623580565627, "y": 27.29519400302143, "z": -0.8387106588606859}, {"x": 11.82287766653626, "y": 27.3717584616459, "z": -0.8362905975656714}, {"x": 11.64903533950854, "y": 27.44726527098616, "z": -0.8338373032179861}, {"x": 11.47470882331487, "y": 27.52170264152104, "z": -0.8313505175688002}, {"x": 11.29990893717062, "y": 27.59506449899005, "z": -0.8288298978853086}, {"x": 11.12464330786202, "y": 27.66735367986767, "z": -0.8262753263697824}, {"x": 10.94891163792448, "y": 27.73856822731825, "z": -0.8236871363639533}, {"x": 10.77271717717538, "y": 27.80870008326382, "z": -0.8210659089880228}, {"x": 10.59606632339189, "y": 27.87774590722098, "z": -0.8184115725832739}, {"x": 10.41895903962304, "y": 27.94570431226623, "z": -0.8157233015199934}, {"x": 10.2413965857465, "y": 28.01256575907931, "z": -0.813000966313973}, {"x": 10.06339068227903, "y": 28.07831965775402, "z": -0.810245599237736}, {"x": 9.884951674326349, "y": 28.14296592874945, "z": -0.8074576982108583}, {"x": 9.706078245744061, "y": 28.20650560227724, "z": -0.8046363947569031}, {"x": 9.526769883311504, "y": 28.26892918579131, "z": -0.8017811032659183}, {"x": 9.347036202757417, "y": 28.33022565578246, "z": -0.7988925507838406}, {"x": 9.16688678077278, "y": 28.39039123118406, "z": -0.7959715296465509}, {"x": 8.986325251752413, "y": 28.44942025339916, "z": -0.793017831277081}, {"x": 8.80535854227495, "y": 28.507302905768, "z": -0.7900309091045573}, {"x": 8.623998720203765, "y": 28.56403581723098, "z": -0.787010803213969}, {"x": 8.44225179064021, "y": 28.61961942898696, "z": -0.7839580507012188}, {"x": 8.26011858766494, "y": 28.67404394505872, "z": -0.7808731078617684}, {"x": 8.077608804267154, "y": 28.72729437715078, "z": -0.7777560484982995}, {"x": 7.894739807864499, "y": 28.77936663809097, "z": -0.7746066120115305}, {"x": 7.711521248423917, "y": 28.83026330242947, "z": -0.7714245987037001}, {"x": 7.527957446116164, "y": 28.87997902570793, "z": -0.768210525823067}, {"x": 7.344059267575576, "y": 28.92850453440562, "z": -0.7649653137196565}, {"x": 7.159838694703977, "y": 28.97583691735992, "z": -0.7616889972828282}, {"x": 6.97530172461527, "y": 29.02197334855774, "z": -0.758380768231336}, {"x": 6.790459267086269, "y": 29.06690521886528, "z": -0.7550407229181401}, {"x": 6.60533039435399, "y": 29.1106279548161, "z": -0.7516701282343098}, {"x": 6.419927247687908, "y": 29.15314583393559, "z": -0.7482695613719715}, {"x": 6.234252061569776, "y": 29.19445897675046, "z": -0.7448383335188472}, {"x": 6.048312955782429, "y": 29.23455856110401, "z": -0.7413761337964357}, {"x": 5.862127683279571, "y": 29.27343986683134, "z": -0.737883781784203}, {"x": 5.675710093347677, "y": 29.31110605754545, "z": -0.7343620752170862}, {"x": 5.489067730518407, "y": 29.3475564285161, "z": -0.730811052905516}, {"x": 5.302211849790301, "y": 29.38278748637618, "z": -0.727230466691823}, {"x": 5.115156083346377, "y": 29.41680331868624, "z": -0.7236203559292576}, {"x": 4.927906908957167, "y": 29.44960818322606, "z": -0.7199811661206499}, {"x": 4.740470008418716, "y": 29.48119547080047, "z": -0.7163135591696317}, {"x": 4.552860895050642, "y": 29.51155909432975, "z": -0.7126178811800586}, {"x": 4.365096171587801, "y": 29.54070590671351, "z": -0.7088938422422517}, {"x": 4.177181638016729, "y": 29.56864397416611, "z": -0.7051411317579834}, {"x": 3.989121863631341, "y": 29.59537126783493, "z": -0.7013603981800658}, {"x": 3.800929296565168, "y": 29.62088479764378, "z": -0.6975527282815119}, {"x": 3.612614463730198, "y": 29.64518809369773, "z": -0.6937180940314078}, {"x": 3.424182620330989, "y": 29.66828296471595, "z": -0.6898556348709849}, {"x": 3.23564522783922, "y": 29.69016785891179, "z": -0.6859655338113334}, {"x": 3.047017797714992, "y": 29.71084721109473, "z": -0.6820490347601625}, {"x": 2.858305445722011, "y": 29.73032963898971, "z": -0.6781065835656289}, {"x": 2.669507411821722, "y": 29.74861519511866, "z": -0.6741375509971674}, {"x": 2.480632804207009, "y": 29.76569813066586, "z": -0.6701417016805475}, {"x": 2.291697531262742, "y": 29.78158119046289, "z": -0.6661196745272687}, {"x": 2.102709761461291, "y": 29.79627265390065, "z": -0.6620720963396973}, {"x": 1.91367261761319, "y": 29.80977357360445, "z": -0.6579991290767764}, {"x": 1.724594235219086, "y": 29.8220833437807, "z": -0.6539006187673555}, {"x": 1.535483030933061, "y": 29.83320888178243, "z": -0.6497763817020327}]', 1004, 60190, '#4169E1', '2025-11-29 08:13:02.686018', '2025-11-29 08:24:55.660285');
COMMIT;
-- ----------------------------
-- Table structure for positions
-- ----------------------------
DROP TABLE IF EXISTS "public"."positions";
CREATE TABLE "public"."positions" (
"id" int8 NOT NULL DEFAULT nextval('positions_id_seq'::regclass),
"body_id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"time" timestamp(6) NOT NULL,
"x" float8 NOT NULL,
"y" float8 NOT NULL,
"z" float8 NOT NULL,
"vx" float8,
"vy" float8,
"vz" float8,
"source" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"created_at" timestamp(6) DEFAULT now()
)
;
ALTER TABLE "public"."positions" OWNER TO "postgres";
COMMENT ON COLUMN "public"."positions"."body_id" IS 'Reference to celestial_bodies.id';
COMMENT ON COLUMN "public"."positions"."time" IS 'Position timestamp (UTC)';
COMMENT ON COLUMN "public"."positions"."x" IS 'X coordinate (AU)';
COMMENT ON COLUMN "public"."positions"."y" IS 'Y coordinate (AU)';
COMMENT ON COLUMN "public"."positions"."z" IS 'Z coordinate (AU)';
COMMENT ON COLUMN "public"."positions"."vx" IS 'X velocity (optional)';
COMMENT ON COLUMN "public"."positions"."vy" IS 'Y velocity (optional)';
COMMENT ON COLUMN "public"."positions"."vz" IS 'Z velocity (optional)';
COMMENT ON COLUMN "public"."positions"."source" IS 'Data source';
-- ----------------------------
-- Records of positions
-- ----------------------------
BEGIN;
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120255, '2000001', '2025-11-27 00:00:00', 2.698868279444411, 0.980156835393438, -0.4661727053167005, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:03.939418');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120256, '399', '2025-11-27 00:00:00', 0.4228021761292776, 0.8916819232909798, -5.428474024956687e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:03.968864');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120257, '136199', '2025-11-27 00:00:00', 85.23083422469026, 39.43348604915285, -17.53251138105464, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:03.982927');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120258, '136108', '2025-11-27 00:00:00', -37.07113127398033, -23.54641114634978, 23.5549788440341, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:03.996551');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120259, '-61', '2025-11-27 00:00:00', -1.430988307801712, 4.990503860901064, -0.01859797717741123, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.009801');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120260, '599', '2025-11-27 00:00:00', -1.438865411828493, 4.996074245450399, 0.01143884631349353, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.03758');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120261, '136472', '2025-11-27 00:00:00', -45.99165548158427, -8.97573519195765, 24.15343848144866, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.07105');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120262, '499', '2025-11-27 00:00:00', -0.1642318451044373, -1.459658071049636, -0.02656098522531437, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.217868');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120263, '199', '2025-11-27 00:00:00', -0.05095553929571318, 0.3057880571237405, 0.02966332616954951, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.238172');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120264, '301', '2025-11-27 00:00:00', 0.424776160067158, 0.8899819642601253, -0.000150159964098408, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.256634');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120759, '2000001', '2025-11-02 00:00:00', 2.782394105008508, 0.7511571376944858, -0.4888096970732382, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.583121');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120214, '2000001', '2025-11-26 00:00:00', 2.702601056945195, 0.971126284560654, -0.4671462629291652, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:14.950429');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120216, '399', '2025-11-26 00:00:00', 0.4385657286854642, 0.8842432984692209, -5.338272498396311e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:14.977475');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120217, '136199', '2025-11-26 00:00:00', 85.23131162800924, 39.43262777285576, -17.53344859700739, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:14.994827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120220, '136108', '2025-11-26 00:00:00', -37.07250962768507, -23.54465682880082, 23.5551114003899, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.006579');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120221, '-61', '2025-11-26 00:00:00', -1.424288651896172, 4.993068661123791, -0.01703278319189943, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.022407');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120224, '599', '2025-11-26 00:00:00', -1.431517900071797, 4.997806578399909, 0.01126730741994878, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.035885');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120226, '136472', '2025-11-26 00:00:00', -45.99183973207791, -8.973593476275743, 24.15376029258411, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.045608');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120228, '499', '2025-11-26 00:00:00', -0.1786592049909938, -1.459228615700759, -0.0261982014107643, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.062279');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120229, '199', '2025-11-26 00:00:00', -0.0173629012768162, 0.3078760952717054, 0.02675286743387364, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.071069');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120231, '301', '2025-11-26 00:00:00', 0.4401403641583912, 0.8821314461933324, -0.0001937729408146045, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.079577');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120233, '899', '2025-11-26 00:00:00', 29.87485194708481, 0.4052743686218909, -0.6967883046200377, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.088453');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120213, '2000001', '2025-11-28 00:00:00', 2.695103055638463, 0.989175598405148, -0.4651935429156057, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:14.943654');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120215, '399', '2025-11-28 00:00:00', 0.4069096565927317, 0.898844958806908, -5.522887991875773e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:14.97518');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120218, '136199', '2025-11-28 00:00:00', 85.23035679505978, 39.4343443015953, -17.53157415922237, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:14.99448');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120219, '136108', '2025-11-28 00:00:00', -37.06975282888567, -23.54816541798193, 23.55484623121936, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.007825');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120222, '-61', '2025-11-28 00:00:00', -1.437755979923895, 4.98797865184957, -0.01989199042680636, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.022405');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120223, '599', '2025-11-28 00:00:00', -1.446208885740123, 4.994331848518202, 0.01161039423087845, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.035639');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120225, '136472', '2025-11-28 00:00:00', -45.99147113543151, -8.977876899931898, 24.1531166213925, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.044978');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120227, '499', '2025-11-28 00:00:00', -0.1497891567545544, -1.459951306889201, -0.02692129026178018, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.062076');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120230, '199', '2025-11-28 00:00:00', -0.0840506956359852, 0.3007075868245221, 0.0322836073665921, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.071053');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120232, '301', '2025-11-28 00:00:00', 0.4091821122797022, 0.8976427159750155, -0.0001017236328996329, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.079738');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120234, '899', '2025-11-28 00:00:00', 29.87471094758927, 0.4115889127982045, -0.6969154495136582, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.088664');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120236, '-98', '2025-11-28 00:00:00', 19.90522076551015, -60.05862209326342, 2.203256780305199, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.097102');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120238, '-96', '2025-11-28 00:00:00', 0.4866676873210167, -0.1296991871900179, -0.02985941529723999, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.105157');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120240, '-168', '2025-11-28 00:00:00', -0.1497691805035074, -1.459961716561737, -0.02692387889272935, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.11839');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120241, '999', '2025-11-28 00:00:00', 19.13555973301846, -29.68658388345706, -2.357095029738795, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.132027');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120243, '699', '2025-11-28 00:00:00', 9.52120362598483, 0.06849770155472548, -0.3801919336127172, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.141796');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120245, '10', '2025-11-28 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.151183');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120247, '799', '2025-11-28 00:00:00', 9.996580917893352, 16.73806573292644, -0.06745700931614317, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.161395');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120249, '299', '2025-11-28 00:00:00', -0.5291121367495197, -0.4927667467510257, 0.02375982976468011, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.172127');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120251, '-31', '2025-11-28 00:00:00', -31.79570802395128, -134.4112089100603, 97.2516826245431, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.18169');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120253, '-32', '2025-11-28 00:00:00', 39.14498991441749, -103.8081164201916, -87.69634657107362, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.192437');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120235, '-98', '2025-11-26 00:00:00', 19.89907835632467, -60.04415933924647, 2.202687478364319, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.096705');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120244, '699', '2025-11-26 00:00:00', 9.521903234820684, 0.05736383880727534, -0.380025925204588, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.144954');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120246, '10', '2025-11-26 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.15484');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120237, '-96', '2025-11-26 00:00:00', 0.5133923572981219, -0.157526243208142, -0.03178374029635921, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.104755');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120248, '799', '2025-11-26 00:00:00', 10.0034058254771, 16.73439736732494, -0.06755929857949648, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.165996');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120250, '299', '2025-11-26 00:00:00', -0.555553787625912, -0.4622182320475151, 0.02570519682741283, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.17554');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120252, '-31', '2025-11-26 00:00:00', -31.79331338038015, -134.3954868492563, 97.24032220154211, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.185661');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120254, '-32', '2025-11-26 00:00:00', 39.14013444760983, -103.7973261891661, -87.6832690987916, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.195876');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120239, '-168', '2025-11-26 00:00:00', -0.1786371174944146, -1.459232585021869, -0.02620144138721896, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.118383');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120242, '999', '2025-11-26 00:00:00', 19.13013635694631, -29.68857004810126, -2.355298330141992, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 05:59:15.135638');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122477, '299', '2025-11-29 08:48:00.000043', -0.5100871650160621, -0.5127612560082145, 0.02238739921464858, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120265, '899', '2025-11-27 00:00:00', 29.8747817900636, 0.4084316111299547, -0.6968520626477959, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.26749');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120266, '-98', '2025-11-27 00:00:00', 19.90214957121805, -60.05139074612871, 2.20297213066238, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.282611');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120760, '399', '2025-11-02 00:00:00', 0.7661004228292623, 0.6307426893470816, -4.187496662925206e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.608757');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125263, '503', '2025-10-31 00:00:00', -1.240918965899314, 5.046126873724218, 0.007046133672502143, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:27.848157');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125367, '-170', '2025-11-03 00:00:00', 0.7582864591208465, 0.6537889334629102, -0.0004098179444373725, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:28.456084');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122440, '299', '2025-11-06 08:48:00.000043', -0.7122313282783825, -0.1021544863513396, 0.03969217297922882, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122442, '299', '2025-11-07 08:48:00.000043', -0.7092058700784205, -0.12222266172964, 0.03924189938381961, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122444, '299', '2025-11-08 08:48:00.000043', -0.705619892278631, -0.1421942401845095, 0.03876061099070275, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122446, '299', '2025-11-09 08:48:00.000043', -0.7014765022228175, -0.1620534924146419, 0.03824870319141618, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122448, '299', '2025-11-10 08:48:00.000043', -0.6967792488694713, -0.1817847942616948, 0.03770659541381136, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122450, '299', '2025-11-11 08:48:00.000043', -0.6915321190303115, -0.2013726392117925, 0.03713473073324056, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122452, '299', '2025-11-12 08:48:00.000043', -0.6857395332529864, -0.2208016507484424, 0.03653357546525683, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122454, '299', '2025-11-13 08:48:00.000043', -0.6794063413544055, -0.2400565945466138, 0.03590361874034334, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122456, '299', '2025-11-14 08:48:00.000043', -0.6725378176114657, -0.259122390498008, 0.0352453720612024, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122458, '299', '2025-11-15 08:48:00.000043', -0.6651396556162389, -0.2779841245579034, 0.03455936884314555, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122460, '299', '2025-11-16 08:48:00.000043', -0.6572179628029424, -0.2966270604043176, 0.03384616393813868, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122462, '299', '2025-11-17 08:48:00.000043', -0.6487792546542885, -0.3150366509004531, 0.03310633314306752, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122464, '299', '2025-11-18 08:48:00.000043', -0.6398304485950289, -0.3331985493518998, 0.03234047269279228, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122466, '299', '2025-11-19 08:48:00.000043', -0.6303788575807323, -0.3510986205503356, 0.0315491987385699, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122468, '299', '2025-11-20 08:48:00.000043', -0.620432183390025, -0.3687229515958506, 0.03073314681242608, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122469, '299', '2025-11-21 08:48:00.000043', -0.6099985096286904, -0.3860578624904143, 0.02989297127806092, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122470, '299', '2025-11-22 08:48:00.000043', -0.599086294454154, -0.40308991649537, 0.02902934476887086, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122471, '299', '2025-11-23 08:48:00.000043', -0.5877043630289944, -0.4198059302462027, 0.0281429576136715, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122472, '299', '2025-11-24 08:48:00.000043', -0.5758618997122104, -0.4361929836181666, 0.02723451725070392, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122473, '299', '2025-11-25 08:48:00.000043', -0.5635684399970547, -0.4522384293366936, 0.0263047476305081, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122474, '299', '2025-11-26 08:48:00.000043', -0.5508338622043165, -0.46792990232682, 0.02535438860824739, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122475, '299', '2025-11-27 08:48:00.000043', -0.5376683789400073, -0.4832553287961833, 0.02438419532607066, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122476, '299', '2025-11-28 08:48:00.000043', -0.5240825283264762, -0.4982029350464351, 0.02339493758610115, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123028, '136472', '2025-11-22 08:50:00.000036', -45.99250811590925, -8.96581481968229, 24.15492868128737, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123029, '136472', '2025-11-23 08:50:00.000036', -45.99232421235637, -8.967956563046224, 24.15460704780991, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123030, '136472', '2025-11-24 08:50:00.000036', -45.99214021335749, -8.97009829882479, 24.15428536542135, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123031, '136472', '2025-11-25 08:50:00.000036', -45.99195611885246, -8.972240026994614, 24.15396363411805, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123032, '136472', '2025-11-26 08:50:00.000036', -45.99177192878135, -8.974381747524337, 24.15364185389704, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123033, '136472', '2025-11-27 08:50:00.000036', -45.99158764308616, -8.976523460374848, 24.15332002475619, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123034, '136472', '2025-11-28 08:50:00.000036', -45.99140326171222, -8.978665165499907, 24.15299814669426, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123035, '136472', '2025-11-29 08:50:00.000036', -45.99121878460937, -8.980806862847016, 24.15267621971095, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123585, '699', '2025-11-21 08:50:00.000036', 9.523470810442404, 0.0315752302313619, -0.379637918911854, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123586, '699', '2025-11-22 08:50:00.000036', 9.523138754662492, 0.03714283389236153, -0.3797219700175667, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123587, '699', '2025-11-23 08:50:00.000036', 9.522803195258373, 0.04271049014128523, -0.3798059051313327, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123588, '699', '2025-11-24 08:50:00.000036', 9.522464111057674, 0.04827810792083247, -0.3798896764016903, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120267, '-96', '2025-11-27 00:00:00', 0.5005520467587186, -0.1437624755281461, -0.03085375277609581, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.302561');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120718, '399', '2025-10-31 00:00:00', 0.7880656073400608, 0.6039448856452807, -3.910732384477678e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.034746');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120744, '136472', '2025-11-01 00:00:00', -45.99641503435005, -8.920048115311722, 24.1617896807349, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.969751');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123731, '-31', '2025-10-30 08:50:00.000036', -31.7614247146586, -134.186133164808, 97.08904487006821, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123733, '-31', '2025-10-31 08:50:00.000036', -31.76262215202818, -134.1939941356404, 97.09472524179424, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123735, '-31', '2025-11-01 08:50:00.000036', -31.76381958528996, -134.2018551087191, 97.10040560761945, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123737, '-31', '2025-11-02 08:50:00.000036', -31.76501701443809, -134.2097160840238, 97.10608596754551, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123739, '-31', '2025-11-03 08:50:00.000036', -31.76621443946794, -134.2175770615359, 97.11176632157402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123741, '-31', '2025-11-04 08:50:00.000036', -31.76741186037599, -134.2254380412387, 97.11744666970661, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123743, '-31', '2025-11-05 08:50:00.000036', -31.76860927715969, -134.233299023117, 97.12312701194469, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123745, '-31', '2025-11-06 08:50:00.000036', -31.76980668981729, -134.2411600071583, 97.1288073482896, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122488, '-31', '2025-10-30 08:48:00.000043', -31.76142305154828, -134.1861222467946, 97.08903698065895, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122491, '-31', '2025-10-31 08:48:00.000043', -31.76262048892356, -134.1939832176238, 97.09471735239316, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122493, '-31', '2025-11-01 08:48:00.000043', -31.76381792219106, -134.2018441906993, 97.10039771822655, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122495, '-31', '2025-11-02 08:48:00.000043', -31.76501535134491, -134.209705166001, 97.10607807816079, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122497, '-31', '2025-11-03 08:48:00.000043', -31.76621277638048, -134.2175661435101, 97.11175843219753, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122499, '-31', '2025-11-04 08:48:00.000043', -31.76741019729425, -134.2254271232098, 97.11743878033829, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122501, '-31', '2025-11-05 08:48:00.000043', -31.76860761408368, -134.2332881050851, 97.12311912258455, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122503, '-31', '2025-11-06 08:48:00.000043', -31.76980502674702, -134.2411490891234, 97.12879945893764, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122505, '-31', '2025-11-07 08:48:00.000043', -31.77100243528304, -134.2490100753143, 97.13447978939874, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122507, '-31', '2025-11-08 08:48:00.000043', -31.77219983969077, -134.2568710636502, 97.14016011396876, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122509, '-31', '2025-11-09 08:48:00.000043', -31.7733972399691, -134.2647320541265, 97.14584043264841, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122511, '-31', '2025-11-10 08:48:00.000043', -31.7745946361163, -134.2725930467412, 97.15152074543803, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122513, '-31', '2025-11-11 08:48:00.000043', -31.7757920281296, -134.2804540414959, 97.15720105233757, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122515, '-31', '2025-11-12 08:48:00.000043', -31.77698941600444, -134.2883150383952, 97.16288135334663, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122517, '-31', '2025-11-13 08:48:00.000043', -31.77818679973391, -134.2961760374468, 97.16856164846428, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122519, '-31', '2025-11-14 08:48:00.000043', -31.77938417930801, -134.3040370386611, 97.17424193768903, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122521, '-31', '2025-11-15 08:48:00.000043', -31.78058155471289, -134.311898042051, 97.17992222101886, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122523, '-31', '2025-11-16 08:48:00.000043', -31.78177892593009, -134.3197590476315, 97.18560249845119, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122525, '-31', '2025-11-17 08:48:00.000043', -31.78297629293599, -134.3276200554183, 97.19128276998283, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122527, '-31', '2025-11-18 08:48:00.000043', -31.78417365570121, -134.3354810654274, 97.19696303561012, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122529, '-31', '2025-11-19 08:48:00.000043', -31.78537101419037, -134.3433420776734, 97.20264329532888, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122530, '-31', '2025-11-20 08:48:00.000043', -31.786568368362, -134.3512030921686, 97.2083235491346, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122531, '-31', '2025-11-21 08:48:00.000043', -31.78776571816892, -134.3590641089214, 97.21400379702256, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122532, '-31', '2025-11-22 08:48:00.000043', -31.78896306355881, -134.3669251279352, 97.21968403898798, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122533, '-31', '2025-11-23 08:48:00.000043', -31.79016040447524, -134.3747861492068, 97.22536427502624, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122534, '-31', '2025-11-24 08:48:00.000043', -31.79135774085895, -134.3826471727258, 97.23104450513306, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122535, '-31', '2025-11-25 08:48:00.000043', -31.79255507264939, -134.3905081984742, 97.23672472930468, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122536, '-31', '2025-11-26 08:48:00.000043', -31.79375239978627, -134.3983692264257, 97.24240494753802, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122537, '-31', '2025-11-27 08:48:00.000043', -31.79494972221117, -134.4062302565467, 97.24808515983085, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122538, '-31', '2025-11-28 08:48:00.000043', -31.79614703986901, -134.4140912887959, 97.2537653661818, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122539, '-31', '2025-11-29 08:48:00.000043', -31.79734435270925, -134.4219523231262, 97.25944556659044, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.522932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122679, '399', '2025-10-30 08:50:00.000036', 0.7948102318969024, 0.5953233642851582, -3.826007715890125e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122681, '399', '2025-10-31 08:50:00.000036', 0.784093764838198, 0.6089324905530166, -3.961004786108617e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122683, '399', '2025-11-01 08:50:00.000036', 0.7731416026996247, 0.6223565802430822, -4.099603706326209e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122685, '399', '2025-11-02 08:50:00.000036', 0.761957092711287, 0.6355917636996957, -4.238330270855749e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122687, '399', '2025-11-03 08:50:00.000036', 0.750543576613109, 0.6486342940908376, -4.373272558127661e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122689, '399', '2025-11-04 08:50:00.000036', 0.7389043596290632, 0.6614805271820547, -4.500337686416797e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122691, '399', '2025-11-05 08:50:00.000036', 0.7270426867482634, 0.6741268847588753, -4.615634665881549e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122694, '399', '2025-11-06 08:50:00.000036', 0.714961736684845, 0.6865698056670141, -4.715926209790738e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122695, '399', '2025-11-07 08:50:00.000036', 0.7026646403210312, 0.698805695719758, -4.79903672141926e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122697, '399', '2025-11-08 08:50:00.000036', 0.6901545215608701, 0.7108308909087859, -4.864095155250383e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122699, '399', '2025-11-09 08:50:00.000036', 0.6774345493715634, 0.7226416439924679, -4.911549258091701e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122701, '399', '2025-11-10 08:50:00.000036', 0.664507986564644, 0.7342341350225856, -4.942977552740795e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120268, '-168', '2025-11-27 00:00:00', -0.1642105855803329, -1.459665347221563, -0.02656401865569663, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.317067');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120809, '199', '2025-11-04 00:00:00', 0.3482281737646162, -0.1676293526604613, -0.04563837488339036, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.694893');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125369, '-170', '2025-11-02 00:00:00', 0.7697369148547141, 0.6405722205881116, -0.0003341619672788889, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:28.471417');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122550, '-32', '2025-10-30 08:48:00.000043', 39.07547506967994, -103.6536361218549, -87.50911730772499, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122553, '-32', '2025-10-31 08:48:00.000043', 39.07790285862105, -103.6590312488773, -87.51565628990222, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122555, '-32', '2025-11-01 08:48:00.000043', 39.08033064535304, -103.6644263755196, -87.52219526298495, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122557, '-32', '2025-11-02 08:48:00.000043', 39.08275842988253, -103.6698215017622, -87.52873422697323, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122559, '-32', '2025-11-03 08:48:00.000043', 39.08518621221492, -103.6752166275869, -87.53527318186711, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122561, '-32', '2025-11-04 08:48:00.000043', 39.08761399235451, -103.6806117529773, -87.54181212766673, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122563, '-32', '2025-11-05 08:48:00.000043', 39.09004177030459, -103.686006877919, -87.54835106437238, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122565, '-32', '2025-11-06 08:48:00.000043', 39.09246954606769, -103.6914020023997, -87.55488999198437, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122567, '-32', '2025-11-07 08:48:00.000043', 39.09489731964569, -103.6967971264097, -87.56142891050325, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122569, '-32', '2025-11-08 08:48:00.000043', 39.09732509104055, -103.7021922499419, -87.56796781992978, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122571, '-32', '2025-11-09 08:48:00.000043', 39.09975286025406, -103.7075873729921, -87.57450672026503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122573, '-32', '2025-11-10 08:48:00.000043', 39.10218062728866, -103.712982495559, -87.58104561151032, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122575, '-32', '2025-11-11 08:48:00.000043', 39.10460839214795, -103.7183776176445, -87.58758449366734, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122577, '-32', '2025-11-12 08:48:00.000043', 39.10703615483722, -103.7237727392539, -87.59412336673827, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122579, '-32', '2025-11-13 08:48:00.000043', 39.10946391536414, -103.7291678603952, -87.60066223072575, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122581, '-32', '2025-11-14 08:48:00.000043', 39.1118916737395, -103.7345629810794, -87.60720108563288, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122583, '-32', '2025-11-15 08:48:00.000043', 39.11431942997792, -103.73995810132, -87.61373993146343, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122585, '-32', '2025-11-16 08:48:00.000043', 39.1167471840986, -103.7453532211324, -87.62027876822167, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122587, '-32', '2025-11-17 08:48:00.000043', 39.11917493612594, -103.7507483405329, -87.62681759591248, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122589, '-32', '2025-11-18 08:48:00.000043', 39.12160268609008, -103.7561434595378, -87.63335641454124, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122591, '-32', '2025-11-19 08:48:00.000043', 39.12403043402718, -103.7615385781625, -87.63989522411384, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122592, '-32', '2025-11-20 08:48:00.000043', 39.12645817997944, -103.7669336964196, -87.64643402463645, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122593, '-32', '2025-11-21 08:48:00.000043', 39.12888592399484, -103.7723288143181, -87.65297281611547, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122594, '-32', '2025-11-22 08:48:00.000043', 39.13131366612649, -103.7777239318619, -87.65951159855743, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122595, '-32', '2025-11-23 08:48:00.000043', 39.13374140643148, -103.7831190490481, -87.66605037196862, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122596, '-32', '2025-11-24 08:48:00.000043', 39.13616914496988, -103.7885141658672, -87.67258913635497, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122597, '-32', '2025-11-25 08:48:00.000043', 39.13859688180304, -103.7939092823015, -87.67912789172199, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122598, '-32', '2025-11-26 08:48:00.000043', 39.141024616992, -103.7993043983252, -87.6856666380744, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122599, '-32', '2025-11-27 08:48:00.000043', 39.14345235059594, -103.8046995139052, -87.69220537541621, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122600, '-32', '2025-11-28 08:48:00.000043', 39.14588008267069, -103.8100946290009, -87.69874410375041, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122601, '-32', '2025-11-29 08:48:00.000043', 39.14830781326758, -103.8154897435655, -87.70528282307917, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.587779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122739, '136199', '2025-10-30 08:50:00.000036', 85.24401597321388, 39.40976140402279, -17.5584063026002, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122741, '136199', '2025-10-31 08:50:00.000036', 85.24353928391685, 39.41062031721308, -17.55746924455961, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122743, '136199', '2025-11-01 08:50:00.000036', 85.24306256766332, 39.41147920643191, -17.55653218057342, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122745, '136199', '2025-11-02 08:50:00.000036', 85.24258582445935, 39.41233807169998, -17.55559511064093, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122747, '136199', '2025-11-03 08:50:00.000036', 85.24210905430976, 39.41319691303649, -17.55465803476144, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122749, '136199', '2025-11-04 08:50:00.000036', 85.24163225721833, 39.4140557304589, -17.55372095293437, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122751, '136199', '2025-11-05 08:50:00.000036', 85.24115543318777, 39.41491452398266, -17.5527838651592, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122753, '136199', '2025-11-06 08:50:00.000036', 85.24067858222003, 39.41577329362107, -17.55184677143556, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122755, '136199', '2025-11-07 08:50:00.000036', 85.24020170431652, 39.41663203938497, -17.55090967176325, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122757, '136199', '2025-11-08 08:50:00.000036', 85.23972479947848, 39.41749076128252, -17.54997256614228, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122759, '136199', '2025-11-09 08:50:00.000036', 85.23924786770719, 39.41834945931903, -17.54903545457293, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122761, '136199', '2025-11-10 08:50:00.000036', 85.23877090900461, 39.41920813349676, -17.5480983370558, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120269, '999', '2025-11-27 00:00:00', 19.13285095777496, -29.68757749297204, -2.356202351697279, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.327958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125306, '601', '2025-10-31 00:00:00', 9.528751179177227, -0.08797272664567156, -0.3774213730003984, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:28.024502');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125373, '-170', '2025-11-01 00:00:00', 0.7809577464229908, 0.6271590870993377, -0.0002581801482940994, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:28.500167');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122633, '2000001', '2025-10-30 08:50:00.000036', 2.789993855023939, 0.7266935679242374, -0.4909841843591748, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122634, '2000001', '2025-10-31 08:50:00.000036', 2.787133267817529, 0.7359955654466747, -0.4901627273782084, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122635, '2000001', '2025-11-01 08:50:00.000036', 2.784239689918095, 0.7452888467183737, -0.4893354680333748, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122636, '2000001', '2025-11-02 08:50:00.000036', 2.781313137250967, 0.7545732968619543, -0.4885024128974237, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122637, '2000001', '2025-11-03 08:50:00.000036', 2.778353626085099, 0.763848800958146, -0.4876635686079763, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122638, '2000001', '2025-11-04 08:50:00.000036', 2.775361173033842, 0.7731152440461355, -0.4868189418676683, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122639, '2000001', '2025-11-05 08:50:00.000036', 2.772335795055804, 0.782372511123807, -0.4859685394443114, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122640, '2000001', '2025-11-06 08:50:00.000036', 2.769277509456505, 0.7916204871501913, -0.4851123681709444, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122641, '2000001', '2025-11-07 08:50:00.000036', 2.766186333888042, 0.8008590570433034, -0.4842504349460829, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122642, '2000001', '2025-11-08 08:50:00.000036', 2.763062286350677, 0.810088105681177, -0.4833827467338829, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122643, '2000001', '2025-11-09 08:50:00.000036', 2.759905385194256, 0.8193075179029786, -0.4825093105642815, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122645, '2000001', '2025-11-10 08:50:00.000036', 2.756715649119402, 0.8285171785097474, -0.4816301335331505, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122646, '2000001', '2025-11-11 08:50:00.000036', 2.753493097178673, 0.8377169722649731, -0.4807452228024591, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122647, '2000001', '2025-11-12 08:50:00.000036', 2.750237748777804, 0.846906783895178, -0.4798545856004439, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122648, '2000001', '2025-11-13 08:50:00.000036', 2.746949623677071, 0.8560864980906233, -0.4789582292217816, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122649, '2000001', '2025-11-14 08:50:00.000036', 2.743628741992768, 0.8652559995062173, -0.4780561610277556, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122650, '2000001', '2025-11-15 08:50:00.000036', 2.740275124198745, 0.8744151727626717, -0.4771483884464077, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122651, '2000001', '2025-11-16 08:50:00.000036', 2.73688879112794, 0.8835639024479159, -0.4762349189726695, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122652, '2000001', '2025-11-17 08:50:00.000036', 2.733469763973824, 0.8927020731187556, -0.4753157601684659, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122653, '2000001', '2025-11-18 08:50:00.000036', 2.73001806429168, 0.9018295693027376, -0.474390919662786, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122654, '2000001', '2025-11-19 08:50:00.000036', 2.726533713999633, 0.9109462755001702, -0.4734604051517212, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122655, '2000001', '2025-11-20 08:50:00.000036', 2.723016735379403, 0.9200520761862254, -0.4725242243984689, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122656, '2000001', '2025-11-21 08:50:00.000036', 2.719467151076723, 0.9291468558130572, -0.4715823852333072, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122657, '2000001', '2025-11-22 08:50:00.000036', 2.715884984101427, 0.9382304988118453, -0.4706348955535434, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122658, '2000001', '2025-11-23 08:50:00.000036', 2.712270257827224, 0.9473028895946947, -0.4696817633234484, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122659, '2000001', '2025-11-24 08:50:00.000036', 2.708622995991208, 0.956363912556314, -0.4687229965741836, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122660, '2000001', '2025-11-25 08:50:00.000036', 2.704943222693164, 0.9654134520754112, -0.467758603403734, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122661, '2000001', '2025-11-26 08:50:00.000036', 2.701230962394758, 0.9744513925157541, -0.4667885919768573, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122662, '2000001', '2025-11-27 08:50:00.000036', 2.697486239918737, 0.9834776182268724, -0.4658129705250651, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122663, '2000001', '2025-11-28 08:50:00.000036', 2.693709080448205, 0.9924920135443897, -0.4648317473466408, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122664, '2000001', '2025-11-29 08:50:00.000036', 2.68989950952612, 1.001494462790008, -0.4638449308067074, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.008522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122798, '136108', '2025-10-30 08:50:00.000036', -37.1091843861562, -23.4979190906007, 23.55862087535775, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122800, '136108', '2025-10-31 08:50:00.000036', -37.10780845372735, -23.4996746273867, 23.55848982117204, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122802, '136108', '2025-11-01 08:50:00.000036', -37.10643243050436, -23.50143011851885, 23.55835871060158, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122804, '136108', '2025-11-02 08:50:00.000036', -37.10505631648302, -23.50318556397095, 23.55822754364679, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122806, '136108', '2025-11-03 08:50:00.000036', -37.10368011166034, -23.50494096371833, 23.55809632030803, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122808, '136108', '2025-11-04 08:50:00.000036', -37.10230381603442, -23.50669631773805, 23.5579650405856, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122810, '136108', '2025-11-05 08:50:00.000036', -37.10092742960438, -23.50845162600915, 23.55783370447971, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122812, '136108', '2025-11-06 08:50:00.000036', -37.0995509523701, -23.51020688851285, 23.5577023119904, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122814, '136108', '2025-11-07 08:50:00.000036', -37.09817438433202, -23.51196210523284, 23.55757086311761, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122816, '136108', '2025-11-08 08:50:00.000036', -37.09679772549076, -23.51371727615546, 23.55743935786099, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122818, '136108', '2025-11-09 08:50:00.000036', -37.09542097584689, -23.51547240126991, 23.55730779621996, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122820, '136108', '2025-11-10 08:50:00.000036', -37.09404413540032, -23.51722748056844, 23.55717617819363, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120270, '699', '2025-11-27 00:00:00', 9.521555048348024, 0.06293093371341328, -0.3801090698672618, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.337187');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120838, '10', '2025-11-05 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.212912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122703, '399', '2025-11-11 08:50:00.000036', 0.651378225008064, 0.7456044981276942, -4.960788313291486e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122705, '399', '2025-11-12 08:50:00.000036', 0.6380488043785895, 0.7567488542567601, -4.967901566924265e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122707, '399', '2025-11-13 08:50:00.000036', 0.6245234173397787, 0.767663341977298, -4.967476886765188e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122709, '399', '2025-11-14 08:50:00.000036', 0.6108059062243015, 0.7783441425658636, -4.962708926103865e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122711, '399', '2025-11-15 08:50:00.000036', 0.5969002557638426, 0.7887874989613596, -4.956684776850356e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122712, '399', '2025-11-16 08:50:00.000036', 0.5828105847840431, 0.7989897298730421, -4.952285747033527e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122713, '399', '2025-11-17 08:50:00.000036', 0.5685411382001285, 0.8089472407586649, -4.952115877742986e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122714, '399', '2025-11-18 08:50:00.000036', 0.5540962795553478, 0.8186565330989704, -4.958444391958571e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122715, '399', '2025-11-19 08:50:00.000036', 0.5394804837766786, 0.8281142128478471, -4.973155238973527e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122716, '399', '2025-11-20 08:50:00.000036', 0.5246983296669944, 0.837316998401256, -4.997701871057411e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122717, '399', '2025-11-21 08:50:00.000036', 0.5097544917658847, 0.846261728042102, -5.033068460849111e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122718, '399', '2025-11-22 08:50:00.000036', 0.4946537314483818, 0.8549453666424734, -5.079739743014301e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122719, '399', '2025-11-23 08:50:00.000036', 0.4794008873555398, 0.863365011435766, -5.137680882026947e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122720, '399', '2025-11-24 08:50:00.000036', 0.4640008653504972, 0.8715178968466123, -5.206327035729556e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122721, '399', '2025-11-25 08:50:00.000036', 0.4484586281030026, 0.8794013985763902, -5.284580704352978e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122722, '399', '2025-11-26 08:50:00.000036', 0.432779184123225, 0.8870130372541852, -5.370814669941765e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122723, '399', '2025-11-27 08:50:00.000036', 0.416967575658186, 0.8943504818489745, -5.462880282125342e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122724, '399', '2025-11-28 08:50:00.000036', 0.4010288644660019, 0.9014115525923146, -5.558125607019488e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122725, '399', '2025-11-29 08:50:00.000036', 0.3849681143138619, 0.9081942223216476, -5.653435483706485e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.361848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120271, '10', '2025-11-27 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.347174');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125344, '-170', '2025-11-05 00:00:00', 0.7347102988157094, 0.6796172568372536, -0.0005598403556958128, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:28.189234');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122861, '-61', '2025-10-30 08:50:00.000036', -1.224507698843249, 5.030442372593004, -0.02828058236288964, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122863, '-61', '2025-10-31 08:50:00.000036', -1.231652223643287, 5.028447402583106, -0.02850144265222986, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122865, '-61', '2025-11-01 08:50:00.000036', -1.238847353216969, 5.026492787896609, -0.02854380752395413, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122867, '-61', '2025-11-02 08:50:00.000036', -1.246092560153459, 5.024579410393224, -0.02841203688329217, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122869, '-61', '2025-11-03 08:50:00.000036', -1.253387810446394, 5.022708574240804, -0.02810874050002631, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122871, '-61', '2025-11-04 08:50:00.000036', -1.260733546469094, 5.020882053472413, -0.02763490289469807, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122873, '-61', '2025-11-05 08:50:00.000036', -1.268130735807657, 5.019102144134842, -0.0269899308980543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122875, '-61', '2025-11-06 08:50:00.000036', -1.275580866521786, 5.017371781507104, -0.02617160345252124, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122877, '-61', '2025-11-07 08:50:00.000036', -1.283086054604969, 5.015694659563994, -0.02517594800179772, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122879, '-61', '2025-11-08 08:50:00.000036', -1.290649151641406, 5.014075426536909, -0.0239970034044372, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122881, '-61', '2025-11-09 08:50:00.000036', -1.298273919958256, 5.012519960968109, -0.02262644431131193, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122883, '-61', '2025-11-10 08:50:00.000036', -1.305965295323081, 5.011035778007777, -0.02105300133635448, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122885, '-61', '2025-11-11 08:50:00.000036', -1.313729787156995, 5.009632648904218, -0.01926156853284992, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122887, '-61', '2025-11-12 08:50:00.000036', -1.321576110829118, 5.008323585644166, -0.01723180251805586, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122889, '-61', '2025-11-13 08:50:00.000036', -1.329516239948203, 5.007126485432617, -0.01493582945221422, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122891, '-61', '2025-11-14 08:50:00.000036', -1.337567265434683, 5.006067078506831, -0.01233425855488557, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122893, '-61', '2025-11-15 08:50:00.000036', -1.345754986409075, 5.005184733440172, -0.009368672267525807, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122895, '-61', '2025-11-16 08:50:00.000036', -1.354121797331679, 5.00454548787865, -0.00594571473369034, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122897, '-61', '2025-11-17 08:50:00.000036', -1.362747744372519, 5.004277890356025, -0.001896678268311743, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122899, '-61', '2025-11-18 08:50:00.000036', -1.371830853470484, 5.004716265357104, 0.0031641684642288, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122901, '-61', '2025-11-19 08:50:00.000036', -1.382913516683811, 5.009377025457558, 0.01047143644584043, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122902, '-61', '2025-11-20 08:50:00.000036', -1.388560046222629, 5.008244267870638, 0.0006695162344989026, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122903, '-61', '2025-11-21 08:50:00.000036', -1.394507212632593, 5.005497014900791, -0.004420109058404997, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122763, '136199', '2025-11-11 08:50:00.000036', 85.23829392337367, 39.42006678381485, -17.54716121359187, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122765, '136199', '2025-11-12 08:50:00.000036', 85.2378169108192, 39.42092541026925, -17.54622408418255, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122767, '136199', '2025-11-13 08:50:00.000036', 85.23733987134827, 39.42178401285283, -17.54528694882971, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122769, '136199', '2025-11-14 08:50:00.000036', 85.23686280497111, 39.42264259155567, -17.54434980753578, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122771, '136199', '2025-11-15 08:50:00.000036', 85.23638571170181, 39.42350114636533, -17.54341266030373, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122773, '136199', '2025-11-16 08:50:00.000036', 85.23590859155898, 39.42435967726757, -17.5424755071371, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122775, '136199', '2025-11-17 08:50:00.000036', 85.2354314445665, 39.4252181842471, -17.54153834804004, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122776, '136199', '2025-11-18 08:50:00.000036', 85.23495427075397, 39.42607666728858, -17.54060118301717, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122777, '136199', '2025-11-19 08:50:00.000036', 85.23447707015696, 39.42693512637784, -17.53966401207362, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122778, '136199', '2025-11-20 08:50:00.000036', 85.23399984281714, 39.42779356150319, -17.53872683521486, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122779, '136199', '2025-11-21 08:50:00.000036', 85.23352258878195, 39.42865197265676, -17.53778965244656, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122780, '136199', '2025-11-22 08:50:00.000036', 85.23304530810387, 39.42951035983584, -17.53685246377444, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122781, '136199', '2025-11-23 08:50:00.000036', 85.23256800083956, 39.43036872304408, -17.53591526920408, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122782, '136199', '2025-11-24 08:50:00.000036', 85.23209066704848, 39.43122706229238, -17.53497806874072, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122783, '136199', '2025-11-25 08:50:00.000036', 85.23161330679144, 39.43208537759943, -17.53404086238906, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122784, '136199', '2025-11-26 08:50:00.000036', 85.23113592012886, 39.43294366899191, -17.53310365015313, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122785, '136199', '2025-11-27 08:50:00.000036', 85.23065850711939, 39.43380193650425, -17.53216643203613, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122786, '136199', '2025-11-28 08:50:00.000036', 85.23018106781832, 39.43466018017806, -17.53122920804037, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122787, '136199', '2025-11-29 08:50:00.000036', 85.22970360227635, 39.43551840006111, -17.5302919781672, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.419165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120272, '799', '2025-11-27 00:00:00', 9.999993516569933, 16.73623191035391, -0.06750809444543461, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.357742');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125355, '-170', '2025-11-04 00:00:00', 0.7466097750384438, 0.6668052503177244, -0.0004850689807611907, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:28.395541');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122922, '599', '2025-10-30 08:50:00.000036', -1.234780828063019, 5.040023924836316, 0.00669031493123069, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122924, '599', '2025-10-31 08:50:00.000036', -1.242203002398711, 5.038575228785731, 0.006862414572938999, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122926, '599', '2025-11-01 08:50:00.000036', -1.249622633397981, 5.037116555164602, 0.007034522191554832, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122928, '599', '2025-11-02 08:50:00.000036', -1.257040478536941, 5.035646549968546, 0.007206580090765316, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122930, '599', '2025-11-03 08:50:00.000036', -1.264455628151817, 5.034165985263575, 0.007378628816442179, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122932, '599', '2025-11-04 08:50:00.000036', -1.271868035690239, 5.032674026324266, 0.007550634758695348, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122934, '599', '2025-11-05 08:50:00.000036', -1.279277950033302, 5.031171408703584, 0.007722620233555708, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122936, '599', '2025-11-06 08:50:00.000036', -1.286684151917719, 5.02965762270161, 0.007894587649468075, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122938, '599', '2025-11-07 08:50:00.000036', -1.294087641921348, 5.028133743507172, 0.008066559852415134, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122940, '599', '2025-11-08 08:50:00.000036', -1.301488161693072, 5.026599876721281, 0.008238540233525913, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122942, '599', '2025-11-09 08:50:00.000036', -1.308886745602106, 5.025054970779479, 0.008410477339474056, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122944, '599', '2025-11-10 08:50:00.000036', -1.316282312739717, 5.023499633605604, 0.008582408522564592, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122946, '599', '2025-11-11 08:50:00.000036', -1.32367510680013, 5.021933119152112, 0.008754299213415192, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122948, '599', '2025-11-12 08:50:00.000036', -1.331065228628686, 5.020356246539929, 0.00892617608323131, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122950, '599', '2025-11-13 08:50:00.000036', -1.338451735638154, 5.018768246813003, 0.009098028481032864, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122951, '599', '2025-11-14 08:50:00.000036', -1.345835447867803, 5.017170392339868, 0.009269889757165459, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122953, '599', '2025-11-15 08:50:00.000036', -1.353216160491796, 5.015562582624964, 0.0094417552973312, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122955, '599', '2025-11-16 08:50:00.000036', -1.360595114510877, 5.013943977294195, 0.009613578187778807, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122957, '599', '2025-11-17 08:50:00.000036', -1.367971063934956, 5.012314836205254, 0.009785386411839814, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122959, '599', '2025-11-18 08:50:00.000036', -1.37534442018934, 5.010674463176858, 0.009957145274397769, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122961, '599', '2025-11-19 08:50:00.000036', -1.382714995764516, 5.009023639299541, 0.01012888361907754, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122963, '599', '2025-11-20 08:50:00.000036', -1.39008203422596, 5.007361395878943, 0.01030058094829231, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122965, '599', '2025-11-21 08:50:00.000036', -1.397445986654609, 5.005689187348906, 0.01047228294997013, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122822, '136108', '2025-11-11 08:50:00.000036', -37.09266720414989, -23.51898251404644, 23.55704450378071, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122824, '136108', '2025-11-12 08:50:00.000036', -37.09129018209271, -23.52073750170247, 23.55691277297948, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122826, '136108', '2025-11-13 08:50:00.000036', -37.08991306922351, -23.52249244353815, 23.55678098578776, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122828, '136108', '2025-11-14 08:50:00.000036', -37.0885358655339, -23.52424733955795, 23.55664914220283, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122830, '136108', '2025-11-15 08:50:00.000036', -37.08715857101167, -23.5260021897688, 23.55651724222142, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122832, '136108', '2025-11-16 08:50:00.000036', -37.08578118564002, -23.52775699417944, 23.55638528583965, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122834, '136108', '2025-11-17 08:50:00.000036', -37.08440370939694, -23.52951175279971, 23.55625327305312, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122836, '136108', '2025-11-18 08:50:00.000036', -37.08302614225472, -23.53126646563942, 23.55612120385685, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122838, '136108', '2025-11-19 08:50:00.000036', -37.08164848417957, -23.53302113270727, 23.55598907824544, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122840, '136108', '2025-11-20 08:50:00.000036', -37.08027073513172, -23.53477575400948, 23.55585689621311, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122841, '136108', '2025-11-21 08:50:00.000036', -37.07889289506556, -23.53653032954841, 23.55572465775388, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122842, '136108', '2025-11-22 08:50:00.000036', -37.07751496393043, -23.53828485932129, 23.55559236286173, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122843, '136108', '2025-11-23 08:50:00.000036', -37.07613694167156, -23.54003934331897, 23.55546001153077, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122844, '136108', '2025-11-24 08:50:00.000036', -37.07475882823132, -23.54179378152508, 23.55532760375547, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122845, '136108', '2025-11-25 08:50:00.000036', -37.0733806235508, -23.54354817391544, 23.55519513953082, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122846, '136108', '2025-11-26 08:50:00.000036', -37.07200232757135, -23.54530252045786, 23.55506261885247, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122847, '136108', '2025-11-27 08:50:00.000036', -37.07062394023622, -23.54705682111244, 23.55493004171694, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122848, '136108', '2025-11-28 08:50:00.000036', -37.06924546149197, -23.54881107583209, 23.55479740812161, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122849, '136108', '2025-11-29 08:50:00.000036', -37.06786689128973, -23.55056528456353, 23.55466471806481, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.466814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120273, '299', '2025-11-27 00:00:00', -0.5425450964677115, -0.4776792586923725, 0.02474218748642042, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.370367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125372, '-170', '2025-10-31 00:00:00', 0.7919456449192028, 0.613553555636886, -0.0001819489864591872, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:28.494102');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122983, '136472', '2025-10-30 08:50:00.000036', -45.99671163373894, -8.91655262857634, 24.16231275918106, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122985, '136472', '2025-10-31 08:50:00.000036', -45.99652991775703, -8.918694546210652, 24.16199224996191, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122987, '136472', '2025-11-01 08:50:00.000036', -45.99634810674514, -8.920836456378595, 24.16167169185978, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122989, '136472', '2025-11-02 08:50:00.000036', -45.99616620069781, -8.922978359054804, 24.16135108487646, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122991, '136472', '2025-11-03 08:50:00.000036', -45.9959841996108, -8.925120254215404, 24.16103042901368, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122993, '136472', '2025-11-04 08:50:00.000036', -45.99580210348095, -8.92726214183827, 24.1607097242731, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122995, '136472', '2025-11-05 08:50:00.000036', -45.99561991230616, -8.929404021903247, 24.16038897065629, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122997, '136472', '2025-11-06 08:50:00.000036', -45.99543762608501, -8.931545894392382, 24.1600681681647, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122999, '136472', '2025-11-07 08:50:00.000036', -45.99525524481671, -8.933687759290173, 24.15974731679959, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123001, '136472', '2025-11-08 08:50:00.000036', -45.99507276850066, -8.935829616583762, 24.15942641656201, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123003, '136472', '2025-11-09 08:50:00.000036', -45.99489019713613, -8.937971466263177, 24.15910546745275, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123005, '136472', '2025-11-10 08:50:00.000036', -45.9947075307218, -8.940113308321479, 24.15878446947226, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123007, '136472', '2025-11-11 08:50:00.000036', -45.99452476925526, -8.942255142754862, 24.15846342262063, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123009, '136472', '2025-11-12 08:50:00.000036', -45.99434191273236, -8.944396969562705, 24.15814232689753, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123011, '136472', '2025-11-13 08:50:00.000036', -45.99415896114658, -8.946538788747446, 24.15782118230213, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123013, '136472', '2025-11-14 08:50:00.000036', -45.9939759144883, -8.948680600314358, 24.15749998883308, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123015, '136472', '2025-11-15 08:50:00.000036', -45.99379277274402, -8.950822404271186, 24.15717874648847, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123017, '136472', '2025-11-16 08:50:00.000036', -45.99360953589573, -8.952964200627504, 24.1568574552658, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123019, '136472', '2025-11-17 08:50:00.000036', -45.99342620392014, -8.955105989393923, 24.15653611516204, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123021, '136472', '2025-11-18 08:50:00.000036', -45.99324277678829, -8.957247770581114, 24.15621472617357, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123023, '136472', '2025-11-19 08:50:00.000036', -45.99305925446514, -8.959389544198567, 24.15589328829637, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123025, '136472', '2025-11-20 08:50:00.000036', -45.99287563690964, -8.961531310253319, 24.15557180152601, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123027, '136472', '2025-11-21 08:50:00.000036', -45.992691924075, -8.963673068748554, 24.1552502658579, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.620085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122904, '-61', '2025-11-22 08:50:00.000036', -1.400699071660776, 5.002740024641737, -0.008224637609088578, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122905, '-61', '2025-11-23 08:50:00.000036', -1.407051136065981, 5.000019805769235, -0.01127384223798635, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122906, '-61', '2025-11-24 08:50:00.000036', -1.413523555516429, 4.997343333092806, -0.01378832746475009, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122907, '-61', '2025-11-25 08:50:00.000036', -1.4200934388635, 4.994710565982297, -0.01588688222866692, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122908, '-61', '2025-11-26 08:50:00.000036', -1.426746135621992, 4.992119977645041, -0.0176425649513124, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122909, '-61', '2025-11-27 08:50:00.000036', -1.433471626869216, 4.989569910641404, -0.01910410950779998, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122911, '-61', '2025-11-28 08:50:00.000036', -1.440262766523044, 4.987058952686912, -0.02030580336945754, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122912, '-61', '2025-11-29 08:50:00.000036', -1.447114325353138, 4.98458603707663, -0.02127264452309168, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.51307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123461, '-168', '2025-11-21 08:50:00.000036', -0.2452638753273361, -1.455469003556289, -0.02447065369622031, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123462, '-168', '2025-11-22 08:50:00.000036', -0.2309232933439176, -1.456520963199992, -0.0248447420183756, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123463, '-168', '2025-11-23 08:50:00.000036', -0.2165609767039339, -1.457438818401306, -0.02521677004438726, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123618, '799', '2025-10-30 08:50:00.000036', 10.09413730562647, 16.68529020416105, -0.06891818221386256, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123620, '799', '2025-10-31 08:50:00.000036', 10.09073561030531, 16.68714281694825, -0.0688671179537954, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123622, '799', '2025-11-01 08:50:00.000036', 10.08733352909425, 16.68899474882019, -0.06881605037739973, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123624, '799', '2025-11-02 08:50:00.000036', 10.08393116152937, 16.69084597163535, -0.06876502420374617, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123626, '799', '2025-11-03 08:50:00.000036', 10.08052833658526, 16.69269650404826, -0.06871417528475916, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123628, '799', '2025-11-04 08:50:00.000036', 10.07712497349116, 16.69454639244775, -0.06866329663417764, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123630, '799', '2025-11-05 08:50:00.000036', 10.07372120427325, 16.6963956061321, -0.06861240078497453, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123632, '799', '2025-11-06 08:50:00.000036', 10.07031694973933, 16.69824416342384, -0.06856148148101783, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123634, '799', '2025-11-07 08:50:00.000036', 10.06691229779361, 16.70009205388962, -0.06851047600984617, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123636, '799', '2025-11-08 08:50:00.000036', 10.06350721798942, 16.70193927567712, -0.06845944392304402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123637, '799', '2025-11-09 08:50:00.000036', 10.06010177995582, 16.70378583151912, -0.06840825482733412, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123638, '799', '2025-11-10 08:50:00.000036', 10.05669612924878, 16.70563166520165, -0.06835708542029635, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123639, '799', '2025-11-11 08:50:00.000036', 10.05329007322728, 16.70747680585646, -0.06830602796045575, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123640, '799', '2025-11-12 08:50:00.000036', 10.04988362750052, 16.70932126323858, -0.06825498497644904, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123641, '799', '2025-11-13 08:50:00.000036', 10.04647675675728, 16.71116503695511, -0.06820401557124409, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123642, '799', '2025-11-14 08:50:00.000036', 10.04306944361931, 16.71300814520971, -0.06815301671444779, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123643, '799', '2025-11-15 08:50:00.000036', 10.03966175224725, 16.71485056194972, -0.06810207310354709, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123644, '799', '2025-11-16 08:50:00.000036', 10.03625352888754, 16.7166923278596, -0.06805113279616051, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123645, '799', '2025-11-17 08:50:00.000036', 10.03284492784523, 16.71853342971379, -0.06800004901132037, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123646, '799', '2025-11-18 08:50:00.000036', 10.02943600324753, 16.72037383176179, -0.06794899365956111, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123648, '799', '2025-11-19 08:50:00.000036', 10.02602667825748, 16.72221355388695, -0.06789794287819886, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123650, '799', '2025-11-20 08:50:00.000036', 10.02261697964682, 16.72405258373335, -0.06784694395241639, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123651, '799', '2025-11-21 08:50:00.000036', 10.01920678031391, 16.72589095502824, -0.06779595457914252, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123652, '799', '2025-11-22 08:50:00.000036', 10.01579621575393, 16.7277286516337, -0.0677448764457741, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123653, '799', '2025-11-23 08:50:00.000036', 10.01238526544153, 16.72956565627578, -0.06769386647692413, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123654, '799', '2025-11-24 08:50:00.000036', 10.00897382652529, 16.73140200992807, -0.06764279176080717, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123655, '799', '2025-11-25 08:50:00.000036', 10.00556205661441, 16.7332376805714, -0.06759163310557083, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123656, '799', '2025-11-26 08:50:00.000036', 10.00214993454436, 16.73507266368386, -0.0675404555010916, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123657, '799', '2025-11-27 08:50:00.000036', 9.998737537000276, 16.73690694128904, -0.06748926838272779, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123658, '799', '2025-11-28 08:50:00.000036', 9.995324769639485, 16.7387405099606, -0.06743824439812501, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123659, '799', '2025-11-29 08:50:00.000036', 9.991911506537726, 16.74057341745204, -0.06738723622245213, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.220367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123794, '-32', '2025-10-30 08:50:00.000036', 39.07547844161056, -103.6536436150871, -87.50912638965099, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125418, '606', '2025-11-30 00:00:00', 9.527795261843817, 0.07663448990119556, -0.3795388416239677, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 12:56:34.94091');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120274, '-31', '2025-11-27 00:00:00', -31.79451070453939, -134.4033478785862, 97.24600241601333, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.381457');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125431, '50326340', '2025-11-06 00:00:00', 45.14305949940297, 7.224449953663926, 19.04616061475457, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:26.761583');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125461, '90000030', '2025-11-06 00:00:00', -19.5285577579066, 27.41836409571058, -9.893612740378765, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:13.731333');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125491, '90004920', '2025-11-06 00:00:00', -1.381442021958738, -0.04056655444445224, 0.07520280974736904, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:05.170396');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125451, '50326340', '2025-11-26 00:00:00', 45.42673033710701, 7.26671901330297, 19.1702996947966, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:57.541159');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125481, '90000030', '2025-11-26 00:00:00', -19.51848122592799, 27.42201771144644, -9.89141377076388, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:49.292809');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125511, '90004920', '2025-11-26 00:00:00', -1.524504323432049, 0.7229542484925284, 0.03115651397226738, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:36.194283');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125441, '50326340', '2025-11-16 00:00:00', 45.28490028263507, 7.245585884493158, 19.10823246620344, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:41.917657');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125471, '90000030', '2025-11-16 00:00:00', -19.52352629999628, 27.42020083714972, -9.892516648883785, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:30.48759');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125501, '90004920', '2025-11-16 00:00:00', -1.459339610124723, 0.3426069683092258, 0.05341811792477733, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:20.534187');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125424, '606', '2025-11-29 00:00:00', 9.526333845754712, 0.06871799700863823, -0.3780633741631058, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 12:57:45.486736');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120297, '2000001', '2025-09-02 00:00:00', 2.899425029180251, 0.1726314239299511, -0.5286826298159829, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.609139');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120298, '2000001', '2025-08-31 00:00:00', 2.901163000137047, 0.1533986326673427, -0.5296115793825031, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.614217');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120299, '399', '2025-09-02 00:00:00', 0.9447572934654603, -0.3543095131958526, 1.891021074998625e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.63487');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120300, '399', '2025-08-31 00:00:00', 0.9327034963393752, -0.386190172220432, 2.08813249847639e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.635121');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120301, '136199', '2025-08-31 00:00:00', 85.27274194814105, 39.35786515889639, -17.61496366638952, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.648368');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120302, '136199', '2025-09-02 00:00:00', 85.27179189629832, 39.35958594041162, -17.61309026222056, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.648303');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120303, '136108', '2025-08-31 00:00:00', -37.19207939787018, -23.39185731609523, 23.56642792488716, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.659559');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120304, '136108', '2025-09-02 00:00:00', -37.18933831197973, -23.39537375121201, 23.56617256668023, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.659582');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120305, '-61', '2025-08-31 00:00:00', -0.7711142618593368, 5.094597456727537, -0.03846276995809054, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.671203');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120306, '-61', '2025-09-02 00:00:00', -0.7862685860697213, 5.092540415179919, -0.03698894644959529, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.673774');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120307, '599', '2025-08-31 00:00:00', -0.7824126485554581, 5.107519901628513, -0.00371109427040233, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.682184');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120308, '599', '2025-09-02 00:00:00', -0.7975173576645753, 5.105917808967328, -0.003366546293589304, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.68445');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120309, '136472', '2025-08-31 00:00:00', -46.00750632255448, -8.787236498401763, 24.18157068377619, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.691585');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120310, '136472', '2025-09-02 00:00:00', -46.00715417218954, -8.7915211257421, 24.18093552225811, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.693849');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120311, '499', '2025-08-31 00:00:00', -1.24988858564056, -0.9674514434061345, 0.0103761447978069, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.701646');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120312, '499', '2025-09-02 00:00:00', -1.231520312218509, -0.9870422087636371, 0.009515169259572331, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.7039');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120313, '199', '2025-08-31 00:00:00', -0.04991668189882763, 0.3058971226904206, 0.02957694093950516, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.711238');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120314, '199', '2025-09-02 00:00:00', -0.1153548207707887, 0.2930408204468929, 0.03452827668793014, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.713255');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120315, '301', '2025-08-31 00:00:00', 0.9315496814461515, -0.3886153889586628, -0.0002201831512739622, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.720179');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120316, '301', '2025-09-02 00:00:00', 0.9446989368102927, -0.3569554608852353, -0.0002211181108092752, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.722089');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120317, '899', '2025-08-31 00:00:00', 29.87968976052073, 0.1305055624140842, -0.6912401878063144, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.729086');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120318, '899', '2025-09-02 00:00:00', 29.87960593463264, 0.1368231313515241, -0.6913679037851467, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.731004');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120319, '-98', '2025-08-31 00:00:00', 19.63180016902971, -59.41479751516513, 2.1779126733457, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.737027');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120320, '-98', '2025-09-02 00:00:00', 19.6379464046149, -59.42927069499878, 2.17848243356552, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.739184');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120321, '-96', '2025-08-31 00:00:00', 0.4941798540598336, -0.1372820325865049, -0.03040705098893136, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.74535');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120322, '-96', '2025-09-02 00:00:00', 0.4642236260388361, -0.1085752304616756, -0.02828447070756721, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.747361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120323, '-168', '2025-08-31 00:00:00', -1.249876119089288, -0.9674327409964449, 0.01037912944050468, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.75332');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120324, '-168', '2025-09-02 00:00:00', -1.231503035512923, -0.9870275284545686, 0.00951549968957276, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.755651');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120325, '999', '2025-08-31 00:00:00', 18.89311473987391, -29.7750635288281, -2.27732367426119, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.761159');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120326, '999', '2025-09-02 00:00:00', 18.89857651413936, -29.77307710210534, -2.279098954378387, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.764077');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120327, '699', '2025-08-31 00:00:00', 9.539689456833441, -0.4268661295224494, -0.3722989333287332, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.769268');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120328, '699', '2025-09-02 00:00:00', 9.53955758205143, -0.415740817297011, -0.3724876777381121, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.772575');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120329, '10', '2025-08-31 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.777797');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120330, '10', '2025-09-02 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.780598');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120331, '799', '2025-08-31 00:00:00', 10.298744250925, 16.57219927601412, -0.07199138129655287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.785868');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120332, '799', '2025-09-02 00:00:00', 10.291989381669, 16.57598539127412, -0.07188961600460331, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.788738');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120333, '299', '2025-08-31 00:00:00', 0.1383014494844127, 0.7069192291062022, 0.001731815479026323, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.793932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120334, '299', '2025-09-02 00:00:00', 0.09826575885952613, 0.7133616959415123, 0.004130388458352508, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.796912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120335, '-31', '2025-08-31 00:00:00', -31.68913103049212, -133.711586702727, 96.74612090159243, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.802308');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120336, '-31', '2025-09-02 00:00:00', -31.69152629876382, -133.7273082926097, 96.7574823550892, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.805696');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120337, '-32', '2025-08-31 00:00:00', 38.92891253186268, -103.3279504647935, -87.1143638814357, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.81068');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120338, '-32', '2025-09-02 00:00:00', 38.93376847538668, -103.3387406833608, -87.12744293743621, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:08:32.813529');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120339, '2000001', '2025-11-29 06:00:00', 2.690350937010032, 1.000432299324247, -0.4639617208928429, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.285843');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120341, '399', '2025-11-29 06:00:00', 0.3868703633113312, 0.9074080464548188, -5.642291589915567e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.396426');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120343, '136199', '2025-11-29 06:00:00', 85.2297599711007, 39.43541708367287, -17.53040262366651, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.409169');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120345, '136108', '2025-11-29 06:00:00', -37.06802964392354, -23.55035819287315, 23.55468038580255, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.419516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120347, '-61', '2025-11-29 06:00:00', -1.446302452121971, 4.984876024320136, -0.02117007376872694, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.429081');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120349, '599', '2025-11-29 06:00:00', -1.455383783253972, 4.992139594490685, 0.01182481573715517, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.437987');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120351, '136472', '2025-11-29 06:00:00', -45.99124056814133, -8.980554023983625, 24.15271422752661, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.447606');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120353, '499', '2025-11-29 06:00:00', -0.1317162405159078, -1.460125723348635, -0.02736812479909729, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.456244');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120355, '199', '2025-11-29 06:00:00', -0.1242588867465034, 0.2903329146116532, 0.03512363719998867, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.464892');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120357, '301', '2025-11-29 06:00:00', 0.3893443603688082, 0.9069139772533995, -3.807021849696308e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.472575');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122966, '599', '2025-11-22 08:50:00.000036', -1.404806647616401, 5.004006811578243, 0.01064398112701128, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120277, '399', '2025-11-29 00:00:00', 0.3908932353881945, 0.9057303217102626, -5.618562911478604e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.160598');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120278, '136199', '2025-11-29 00:00:00', 85.22987933917035, 39.43520253022876, -17.53063693151232, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.174008');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120279, '136108', '2025-11-29 00:00:00', -37.06837429235041, -23.54991964364614, 23.55471356194365, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.191696');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120280, '-61', '2025-11-29 00:00:00', -1.444585814265547, 4.985491835588997, -0.02094281251043496, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.215026');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120281, '599', '2025-11-29 00:00:00', -1.453549218516478, 4.992579178721021, 0.01178192785358634, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.234118');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120282, '136472', '2025-11-29 00:00:00', -45.99128669356773, -8.980018600148176, 24.15279471241494, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.249094');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120283, '499', '2025-11-29 00:00:00', -0.1353324521505338, -1.460107948506443, -0.02727907649092571, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.262369');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120285, '301', '2025-11-29 00:00:00', 0.3933435232091688, 0.905089207079351, -5.085414525208205e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.287882');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120286, '899', '2025-11-29 00:00:00', 29.87463982765171, 0.4147465999395865, -0.6969785096833805, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.301341');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120287, '-98', '2025-11-29 00:00:00', 19.90829193925861, -60.06585338062212, 2.203541427291952, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.314126');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120288, '-96', '2025-11-29 00:00:00', 0.4716609395711898, -0.115337196842895, -0.0287962196304038, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.32584');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120289, '-168', '2025-11-29 00:00:00', -0.1353141821132807, -1.460121239312921, -0.02728099328550752, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.336727');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120290, '999', '2025-11-29 00:00:00', 19.13827138935079, -29.68558136296585, -2.3579789451971, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.347984');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120291, '699', '2025-11-29 00:00:00', 9.520849068476345, 0.07406421244412645, -0.3802745641424372, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.358306');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120292, '10', '2025-11-29 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.368084');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120293, '799', '2025-11-29 00:00:00', 9.993167824439624, 16.73989888324331, -0.06740601872829662, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.37961');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120294, '299', '2025-11-29 00:00:00', -0.5152656481194592, -0.5074691170168149, 0.02275890242065188, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.389799');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120295, '-31', '2025-11-29 00:00:00', -31.79690533856351, -134.4190699436334, 97.25736282713056, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.401048');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120296, '-32', '2025-11-29 00:00:00', 39.14741764555063, -103.8135115349566, -87.70288529370417, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.411439');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120359, '899', '2025-11-29 06:00:00', 29.87462205394789, 0.4155360809229253, -0.6969942656539335, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.48029');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120375, '299', '2025-11-29 06:00:00', -0.5117407003404342, -0.5110832077602734, 0.02250586164771977, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.550098');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120393, '499', '2025-10-30 00:00:00', -0.5578484180812756, -1.397827452694197, -0.0156130693670966, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.925374');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120398, '499', '2025-09-01 00:00:00', -1.240751040505504, -0.9772835217921132, 0.009946030531350715, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.969877');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120415, '299', '2025-10-30 00:00:00', -0.7170580571218492, 0.04712549332856857, 0.04202154623434014, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.059987');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122967, '599', '2025-11-23 08:50:00.000036', -1.412165323760338, 5.002313793467171, 0.0108156399687101, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122968, '599', '2025-11-24 08:50:00.000036', -1.419520663085336, 5.000610146311224, 0.01098728018901696, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122969, '599', '2025-11-25 08:50:00.000036', -1.426873241421247, 4.998895410667036, 0.01115887322515364, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122970, '599', '2025-11-26 08:50:00.000036', -1.434222672822047, 4.99717037619201, 0.01133045008388416, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122971, '599', '2025-11-27 08:50:00.000036', -1.441568536559753, 4.995434022776056, 0.01150198324580135, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122972, '599', '2025-11-28 08:50:00.000036', -1.448911012998539, 4.99368793683086, 0.01167352752433027, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122973, '599', '2025-11-29 08:50:00.000036', -1.456250078556546, 4.991931815415886, 0.01184506831322691, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.566274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125425, '606', '2025-11-28 00:00:00', 9.523965800305454, 0.06167976793818432, -0.3769508090098777, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 12:57:48.067554');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125448, '50326340', '2025-11-23 00:00:00', 45.38418244108609, 7.260379368638758, 19.15168001017395, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:53.077673');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125478, '90000030', '2025-11-23 00:00:00', -19.51999617985502, 27.42147473589365, -9.891745346556437, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:42.123966');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125508, '90004920', '2025-11-23 00:00:00', -1.5060935863303, 0.6092702295162147, 0.03786633903397355, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:31.293737');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125438, '50326340', '2025-11-13 00:00:00', 45.24234917836473, 7.239245399524945, 19.0896113973197, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:37.617345');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125468, '90000030', '2025-11-13 00:00:00', -19.52503716609765, 27.41965190013225, -9.892846189067402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:25.49112');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125498, '90004920', '2025-11-13 00:00:00', -1.437452343653298, 0.2278339217827604, 0.06001915940321781, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:15.92388');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125428, '50326340', '2025-11-03 00:00:00', 45.10050515978544, 7.218108627108736, 19.02753815389976, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:21.97163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125458, '90000030', '2025-11-03 00:00:00', -19.53006454209233, 27.41780920059049, -9.893940244147823, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:08.538252');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125488, '90004920', '2025-11-03 00:00:00', -1.355167931399841, -0.1556070778091879, 0.08159185357109826, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:00.696545');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120361, '-98', '2025-11-29 06:00:00', 19.90905972949205, -60.06766119311793, 2.203612588623621, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.489589');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120385, '136108', '2025-10-30 00:00:00', -37.10969078287341, -23.49727294404524, 23.55866909638336, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.855694');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120390, '136108', '2025-09-01 00:00:00', -37.19070889925796, -23.3936155556409, 23.56630027395454, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.908977');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120407, '999', '2025-10-30 00:00:00', 19.0566754807254, -29.71555965565564, -2.331095549406324, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.019474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120412, '999', '2025-09-01 00:00:00', 18.89584107425692, -29.77407350372244, -2.278208235667181, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.0492');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123046, '499', '2025-10-30 08:50:00.000036', -0.5528669307102327, -1.399286004382256, -0.0157657903062894, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123048, '499', '2025-10-31 08:50:00.000036', -0.5392996214660225, -1.403165621002695, -0.01617978768106832, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123050, '499', '2025-11-01 08:50:00.000036', -0.525685339175871, -1.406923029216032, -0.01659237584088534, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123052, '499', '2025-11-02 08:50:00.000036', -0.5120251500347751, -1.410557581683602, -0.01700351507418377, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123054, '499', '2025-11-03 08:50:00.000036', -0.4983201301120491, -1.414068639176902, -0.01741316559730311, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123056, '499', '2025-11-04 08:50:00.000036', -0.4845713653250691, -1.417455570735488, -0.01782128755815734, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123058, '499', '2025-11-05 08:50:00.000036', -0.4707799514095817, -1.42071775382685, -0.01822784104045767, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123060, '499', '2025-11-06 08:50:00.000036', -0.456946993887371, -1.423854574508719, -0.01863278606816206, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123062, '499', '2025-11-07 08:50:00.000036', -0.4430736080320679, -1.426865427592529, -0.01903608260968543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123064, '499', '2025-11-08 08:50:00.000036', -0.4291609188324496, -1.429749716806678, -0.01943769058204719, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123066, '499', '2025-11-09 08:50:00.000036', -0.415210060952077, -1.432506854959773, -0.01983756985544286, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123068, '499', '2025-11-10 08:50:00.000036', -0.4012221786855161, -1.435136264105211, -0.02023568025818794, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123070, '499', '2025-11-11 08:50:00.000036', -0.3871984259124777, -1.437637375707679, -0.02063198158145427, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123072, '499', '2025-11-12 08:50:00.000036', -0.3731399660502488, -1.440009630810668, -0.02102643358356253, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123074, '499', '2025-11-13 08:50:00.000036', -0.3590479720031285, -1.442252480203886, -0.02141899599434339, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123076, '499', '2025-11-14 08:50:00.000036', -0.3449236261076577, -1.444365384590912, -0.02180962852011681, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123078, '499', '2025-11-15 08:50:00.000036', -0.3307681200740494, -1.446347814758181, -0.022198290849173, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123080, '499', '2025-11-16 08:50:00.000036', -0.316582654925153, -1.448199251745122, -0.02258494265714276, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123082, '499', '2025-11-17 08:50:00.000036', -0.302368440933478, -1.44991918701399, -0.02296954361190542, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123084, '499', '2025-11-18 08:50:00.000036', -0.288126697555432, -1.451507122618854, -0.02335205337836655, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123086, '499', '2025-11-19 08:50:00.000036', -0.2738586533618716, -1.452962571375039, -0.02373243162360802, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123088, '499', '2025-11-20 08:50:00.000036', -0.2595655459652923, -1.454285057030344, -0.02411063802238896, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123089, '499', '2025-11-21 08:50:00.000036', -0.2452486219446693, -1.455474114437476, -0.02448663226253401, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123090, '499', '2025-11-22 08:50:00.000036', -0.2309091367679714, -1.456529289726165, -0.02486037405007755, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123091, '499', '2025-11-23 08:50:00.000036', -0.2165483547111603, -1.457450140474483, -0.02523182311463998, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123092, '499', '2025-11-24 08:50:00.000036', -0.2021675487731003, -1.458236235880469, -0.02560093921532411, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123093, '499', '2025-11-25 08:50:00.000036', -0.1877680005873831, -1.458887156935187, -0.02596768214670299, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123094, '499', '2025-11-26 08:50:00.000036', -0.1733510003321193, -1.459402496596904, -0.02633201174435713, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123095, '499', '2025-11-27 08:50:00.000036', -0.1589178466369675, -1.459781859965267, -0.02669388789017128, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123096, '499', '2025-11-28 08:50:00.000036', -0.1444698464856748, -1.460024864455177, -0.0270532705181041, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123097, '499', '2025-11-29 08:50:00.000036', -0.1300083151136172, -1.460131139971242, -0.02741011962067376, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.675163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123232, '899', '2025-10-30 08:50:00.000036', 29.87659745719112, 0.3211744469505708, -0.6950960329112065, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123234, '899', '2025-10-31 08:50:00.000036', 29.87653606381716, 0.3243328157574735, -0.6951593164318284, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123236, '899', '2025-11-01 08:50:00.000036', 29.87647474040311, 0.3274911801974023, -0.6952229159136927, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123238, '899', '2025-11-02 08:50:00.000036', 29.87641312277825, 0.3306491649790631, -0.6952868677730276, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123240, '899', '2025-11-03 08:50:00.000036', 29.87635081000497, 0.3338067743958414, -0.6953508345555889, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123242, '899', '2025-11-04 08:50:00.000036', 29.87628778060819, 0.3369643878771599, -0.6954144552872246, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123244, '899', '2025-11-05 08:50:00.000036', 29.87622441486873, 0.3401223659428919, -0.6954777202824098, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123246, '899', '2025-11-06 08:50:00.000036', 29.87616110012567, 0.3432806758613551, -0.6955409812507326, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125446, '50326340', '2025-11-21 00:00:00', 45.35581664460788, 7.256152798990681, 19.13926665683148, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:49.798192');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125476, '90000030', '2025-11-21 00:00:00', -19.52100546693753, 27.42111175849729, -9.89196605790812, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:38.901735');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125506, '90004920', '2025-11-21 00:00:00', -1.493306163551765, 0.533269695840552, 0.0423268817719061, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:28.416205');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125436, '50326340', '2025-11-11 00:00:00', 45.21398123772572, 7.235018269462964, 19.07719711993328, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:34.40965');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125466, '90000030', '2025-11-11 00:00:00', -19.52604372977257, 27.41928494898737, -9.89306554313571, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:22.055134');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125496, '90004920', '2025-11-11 00:00:00', -1.422178294114423, 0.1512051611148031, 0.06439171612462329, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:12.858986');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125426, '50326340', '2025-11-01 00:00:00', 45.07213505858291, 7.213880935223565, 19.01512294711126, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:18.944727');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125456, '90000030', '2025-11-01 00:00:00', -19.53106838460336, 27.41743827738885, -9.89415824059996, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:05.128509');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125486, '90004920', '2025-11-01 00:00:00', -1.33686812853381, -0.2322179485400831, 0.08580452290944654, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:57.689369');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120363, '-96', '2025-11-29 06:00:00', 0.4677234637049023, -0.1117002563894495, -0.02851906387840003, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.498312');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120365, '-168', '2025-11-29 06:00:00', -0.1317004687843831, -1.460109476479227, -0.02736694493525512, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.506862');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120379, '-32', '2025-11-29 06:00:00', 39.1480245781059, -103.8148603135619, -87.7045199729548, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.566279');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120391, '136472', '2025-10-30 00:00:00', -45.99677849139215, -8.915764282017024, 24.16243071207263, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.912123');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120396, '136472', '2025-09-01 00:00:00', -46.00733029378527, -8.789378814989846, 24.18125312747842, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.953261');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120399, '899', '2025-10-30 00:00:00', 29.87662007534234, 0.3200120729209069, -0.6950727497313715, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.972629');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120404, '899', '2025-09-01 00:00:00', 29.87964795283589, 0.1336641452367142, -0.6913041876597219, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.006915');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120410, '-168', '2025-09-01 00:00:00', -1.240736019890574, -0.9772666121651947, 0.00994762731657474, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.039156');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120413, '799', '2025-10-30 00:00:00', 10.09538923472217, 16.68460816451575, -0.06893698245881738, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.05037');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120418, '799', '2025-09-01 00:00:00', 10.29536703145616, 16.5740926700804, -0.07194048592122937, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.078465');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123108, '199', '2025-10-30 08:50:00.000036', 0.3002274965005027, -0.2805558647573678, -0.05046439095533043, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123110, '199', '2025-10-31 08:50:00.000036', 0.3132226962229649, -0.2580978322703048, -0.04982098255326182, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123112, '199', '2025-11-01 08:50:00.000036', 0.3248620611714915, -0.2345234915445481, -0.04896199014713459, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123115, '199', '2025-11-02 08:50:00.000036', 0.3350396065223402, -0.2098947897840261, -0.04788275533766183, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123117, '199', '2025-11-03 08:50:00.000036', 0.34364738582672, -0.1842836638555017, -0.04657925618643243, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123119, '199', '2025-11-04 08:50:00.000036', 0.3505761281332669, -0.1577731930668998, -0.04504825986028976, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123121, '199', '2025-11-05 08:50:00.000036', 0.3557161002393114, -0.1304588159295855, -0.04328750115333201, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123123, '199', '2025-11-06 08:50:00.000036', 0.3589582384151142, -0.1024495852330059, -0.04129588885581472, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123125, '199', '2025-11-07 08:50:00.000036', 0.3601955970962705, -0.07386942259586117, -0.03907374115243294, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123127, '199', '2025-11-08 08:50:00.000036', 0.3593251627480317, -0.04485831706871323, -0.03662304994173282, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123129, '199', '2025-11-09 08:50:00.000036', 0.3562500778352345, -0.01557339225995759, -0.03394777202561003, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123131, '199', '2025-11-10 08:50:00.000036', 0.3508823106212207, 0.01381025675840772, -0.03105414237586096, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123133, '199', '2025-11-11 08:50:00.000036', 0.3431457890522966, 0.04309908064730387, -0.0279510010283209, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123135, '199', '2025-11-12 08:50:00.000036', 0.3329799888147328, 0.07208109571381587, -0.02465012055023889, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123137, '199', '2025-11-13 08:50:00.000036', 0.3203439246566973, 0.1005265756696509, -0.02116651559007384, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123139, '199', '2025-11-14 08:50:00.000036', 0.3052204391951537, 0.1281895951549115, -0.01751871010411252, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123141, '199', '2025-11-15 08:50:00.000036', 0.2876206157384815, 0.1548105989451414, -0.01372893213639283, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123143, '199', '2025-11-16 08:50:00.000036', 0.2675880655502436, 0.18012014003994, -0.009823201558558281, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123145, '199', '2025-11-17 08:50:00.000036', 0.2452027642877497, 0.2038438671660403, -0.005831274355029619, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123147, '199', '2025-11-18 08:50:00.000036', 0.2205840507420599, 0.2257087435402822, -0.001786409453301244, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123149, '199', '2025-11-19 08:50:00.000036', 0.1938923710090584, 0.2454503461824214, 0.002275067819374577, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123150, '199', '2025-11-20 08:50:00.000036', 0.1653293712300452, 0.2628209398806206, 0.006314417054175816, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123151, '199', '2025-11-21 08:50:00.000036', 0.1351360262561466, 0.2775978636645642, 0.01029133976182996, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123152, '199', '2025-11-22 08:50:00.000036', 0.1035886438182496, 0.2895916403580669, 0.01416500860061651, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123153, '199', '2025-11-23 08:50:00.000036', 0.0709927922073193, 0.298653154071018, 0.01789521088860234, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123154, '199', '2025-11-24 08:50:00.000036', 0.03767543515874778, 0.3046792623926458, 0.02144352863011339, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123155, '199', '2025-11-25 08:50:00.000036', 0.003975778884616232, 0.3076163293845148, 0.02477446674597149, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123156, '199', '2025-11-26 08:50:00.000036', -0.02976450137724806, 0.3074613696814151, 0.02785644298801981, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123157, '199', '2025-11-27 08:50:00.000036', -0.06321091856061478, 0.3042607489546264, 0.0306625674909085, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123158, '199', '2025-11-28 08:50:00.000036', -0.09604501509600678, 0.2981066444284047, 0.03317116443862317, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123159, '199', '2025-11-29 08:50:00.000036', -0.1279718210398435, 0.2891316840088258, 0.0353660180167934, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.738697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123295, '-98', '2025-10-30 08:50:00.000036', 19.81727818161275, -59.85155089333789, 2.195105668280709, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123297, '-98', '2025-10-31 08:50:00.000036', 19.82034996032922, -59.85878389617356, 2.195390390294856, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123299, '-98', '2025-11-01 08:50:00.000036', 19.82342171766345, -59.86601683891756, 2.195675109695841, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125447, '50326340', '2025-11-22 00:00:00', 45.36999959617872, 7.258266097817725, 19.14547335654449, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:51.460667');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125477, '90000030', '2025-11-22 00:00:00', -19.52050089157789, 27.42129334657047, -9.891855736153012, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:40.507434');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125507, '90004920', '2025-11-22 00:00:00', -1.499753499381447, 0.5712903686479494, 0.04009804471087079, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:29.815477');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125427, '50326340', '2025-11-02 00:00:00', 45.08632016337896, 7.215994795270389, 19.02133057381391, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:20.486928');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125457, '90000030', '2025-11-02 00:00:00', -19.53056653137437, 27.41762383831084, -9.894049276312543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:06.90322');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125487, '90004920', '2025-11-02 00:00:00', -1.346096724118506, -0.1939238668023326, 0.08370308178729947, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:59.123554');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125437, '50326340', '2025-11-12 00:00:00', 45.22816526187784, 7.237131848503361, 19.08340428179053, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:35.970916');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125467, '90000030', '2025-11-12 00:00:00', -19.52554051596812, 27.41946852386389, -9.892955900041608, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:23.792671');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125497, '90004920', '2025-11-12 00:00:00', -1.429885600531726, 0.1895288359920471, 0.06220849596029792, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:14.313007');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120367, '999', '2025-11-29 06:00:00', 19.13895062275961, -29.68532912407216, -2.35819972315485, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.51653');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120383, '136199', '2025-10-30 00:00:00', 85.24419141456993, 39.40944527021196, -17.55875119052119, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:57.753071');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120388, '136199', '2025-09-01 00:00:00', 85.27226693681756, 39.35872556231389, -17.61402696729011, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.895466');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120405, '-168', '2025-10-30 00:00:00', -0.5578563218051706, -1.397845729835722, -0.01560222545471972, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.007045');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120421, '-31', '2025-09-01 00:00:00', -31.69032866556863, -133.7194474958882, 96.75180163130814, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.095966');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123170, '301', '2025-10-30 08:50:00.000036', 0.7966339477369013, 0.5934933994484929, -0.0001602726653575258, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123173, '301', '2025-10-31 08:50:00.000036', 0.7862511537037982, 0.6075842740685929, -0.0001126488189469647, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123175, '301', '2025-11-01 08:50:00.000036', 0.775515265008918, 0.6215640398249097, -6.109271600466916e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123177, '301', '2025-11-02 08:50:00.000036', 0.7644115759471549, 0.6354009021767733, -8.409456250745328e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123179, '301', '2025-11-03 08:50:00.000036', 0.752932195718037, 0.649057343105019, 4.223974979213617e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123181, '301', '2025-11-04 08:50:00.000036', 0.7410785047721405, 0.6624918902725749, 8.754629974080232e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123183, '301', '2025-11-05 08:50:00.000036', 0.7288630144998034, 0.6756622146527443, 0.0001243654274703759, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123185, '301', '2025-11-06 08:50:00.000036', 0.7163097869616204, 0.6885292338033732, 0.0001500834928420416, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123187, '301', '2025-11-07 08:50:00.000036', 0.7034528613934855, 0.7010613061132374, 0.000162949646363831, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123189, '301', '2025-11-08 08:50:00.000036', 0.6903328559325123, 0.7132373422904063, 0.0001622732556190762, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123191, '301', '2025-11-09 08:50:00.000036', 0.676992656988899, 0.7250480150488443, 0.0001484354754186258, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123193, '301', '2025-11-10 08:50:00.000036', 0.6634733708985788, 0.7364950213938751, 0.0001227363936906081, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123195, '301', '2025-11-11 08:50:00.000036', 0.6498113760408527, 0.7475890220439891, 8.71503088011222e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123197, '301', '2025-11-12 08:50:00.000036', 0.636036710508173, 0.7583470950711345, 4.406720899410067e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123199, '301', '2025-11-13 08:50:00.000036', 0.6221725608198039, 0.7687903464557979, -3.928522821106599e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123201, '301', '2025-11-14 08:50:00.000036', 0.6082354388240754, 0.7789419833524036, -5.422433644905265e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123203, '301', '2025-11-15 08:50:00.000036', 0.5942356774697448, 0.7888258848939989, -0.000104295487195656, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123205, '301', '2025-11-16 08:50:00.000036', 0.5801780082637519, 0.7984655654100262, -0.0001517849029688429, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123207, '301', '2025-11-17 08:50:00.000036', 0.5660621118429482, 0.8078833904897489, -0.0001945613179821897, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123209, '301', '2025-11-18 08:50:00.000036', 0.551883121975116, 0.8170999298365059, -0.0002307660829244264, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123211, '301', '2025-11-19 08:50:00.000036', 0.5376321094558737, 0.8261333753261405, -0.0002588542061122745, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123212, '301', '2025-11-20 08:50:00.000036', 0.5232965849898261, 0.834998996282085, -0.0002776311374289111, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123213, '301', '2025-11-21 08:50:00.000036', 0.5088610509606585, 0.8437086353603538, -0.0002862843095372208, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123214, '301', '2025-11-22 08:50:00.000036', 0.4943076127278113, 0.8522702627370125, -0.0002844076592491311, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123215, '301', '2025-11-23 08:50:00.000036', 0.4796166418290945, 0.8606876037723695, -0.0002720179883740152, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123216, '301', '2025-11-24 08:50:00.000036', 0.4647674753766309, 0.8689598410783669, -0.0002495634331130194, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123217, '301', '2025-11-25 08:50:00.000036', 0.449739143315208, 0.8770813748649872, -0.0002179255968619923, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123218, '301', '2025-11-26 08:50:00.000036', 0.4345111381652606, 0.8850416163375167, -0.0001784171341383297, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123219, '301', '2025-11-27 08:50:00.000036', 0.4190642750121047, 0.8928247982006577, -0.0001327749877211025, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123220, '301', '2025-11-28 08:50:00.000036', 0.4033817218813463, 0.9004098226297426, -8.314561108780897e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123221, '301', '2025-11-29 08:50:00.000036', 0.3874502944074003, 0.9077702352967751, -3.205238758759175e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.797902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123356, '-96', '2025-10-30 08:50:00.000036', 0.5997193089711974, -0.4162250655443592, -0.04032045680178729, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123358, '-96', '2025-10-31 08:50:00.000036', 0.6033060650278395, -0.4103028167729695, -0.0404459664206806, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123360, '-96', '2025-11-01 08:50:00.000036', 0.6064352258456944, -0.4040693660278272, -0.04054079861215276, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123362, '-96', '2025-11-02 08:50:00.000036', 0.6091027538454303, -0.397528334471302, -0.04060477022321957, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123364, '-96', '2025-11-03 08:50:00.000036', 0.6113039988002545, -0.3906829936795579, -0.0406376579499954, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123366, '-96', '2025-11-04 08:50:00.000036', 0.6130336703930571, -0.3835362820808241, -0.04063919698067355, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123368, '-96', '2025-11-05 08:50:00.000036', 0.6142858058648661, -0.3760908193609222, -0.04060907932745163, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123370, '-96', '2025-11-06 08:50:00.000036', 0.6150537317306374, -0.3683489190559833, -0.04054695179129405, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125449, '50326340', '2025-11-24 00:00:00', 45.39836517945719, 7.262492611473646, 19.15788661774318, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:54.617867');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125479, '90000030', '2025-11-24 00:00:00', -19.51949133171181, 27.42165592647132, -9.891634889123242, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:45.914814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125509, '90004920', '2025-11-24 00:00:00', -1.512329843747602, 0.6472081288086099, 0.03563202171220246, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:32.91444');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125429, '50326340', '2025-11-04 00:00:00', 45.11469004787646, 7.220222430768674, 19.03374568739866, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:23.488528');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125459, '90000030', '2025-11-04 00:00:00', -19.5295624167546, 27.41799436424227, -9.893831144104649, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:10.270816');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125489, '90004920', '2025-11-04 00:00:00', -1.364082056009073, -0.1172722171033455, 0.07947116727364972, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:02.147613');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125439, '50326340', '2025-11-14 00:00:00', 45.25653298726468, 7.241358922530608, 19.09581846654755, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:39.138343');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125469, '90000030', '2025-11-14 00:00:00', -19.52453368015363, 27.41983507777983, -9.892736410214777, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:27.176728');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125499, '90004920', '2025-11-14 00:00:00', -1.444881498462249, 0.266117242657873, 0.05782407691487768, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:17.458051');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120369, '699', '2025-11-29 06:00:00', 9.520759945400314, 0.07545580131913891, -0.3802951867929573, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.525746');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120386, '399', '2025-09-01 00:00:00', 0.9388656927246593, -0.370302400380203, 1.996833192624092e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.878719');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120403, '-96', '2025-10-30 00:00:00', 0.5982846828641838, -0.4183256533001896, -0.04026656879859918, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.996525');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120408, '-96', '2025-09-01 00:00:00', 0.479783437401424, -0.1230776184684909, -0.02938138026633446, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.029249');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123248, '899', '2025-11-07 08:50:00.000036', 29.87609782856456, 0.3464389256008545, -0.695604586120295, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123250, '899', '2025-11-08 08:50:00.000036', 29.87603420525003, 0.3495967706912, -0.6956685177976135, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123252, '899', '2025-11-09 08:50:00.000036', 29.87596985818015, 0.3527542719431783, -0.6957324118773017, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123254, '899', '2025-11-10 08:50:00.000036', 29.87590482445377, 0.3559118322648255, -0.695795934986251, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123256, '899', '2025-11-11 08:50:00.000036', 29.87583951175156, 0.3590697783898485, -0.6958591308724118, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123258, '899', '2025-11-12 08:50:00.000036', 29.87577427511116, 0.3622280216335495, -0.6959223749919491, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123260, '899', '2025-11-13 08:50:00.000036', 29.87570904835206, 0.3653861499638449, -0.6959859847030543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123262, '899', '2025-11-14 08:50:00.000036', 29.8756434128126, 0.3685438556625395, -0.6960498897847294, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123264, '899', '2025-11-15 08:50:00.000036', 29.87557703215726, 0.3717012548520579, -0.6961137053683791, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123266, '899', '2025-11-16 08:50:00.000036', 29.87551000144244, 0.3748587667592661, -0.6961771315333726, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123268, '899', '2025-11-17 08:50:00.000036', 29.87544274848586, 0.3780166783187504, -0.6962402647403122, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123270, '899', '2025-11-18 08:50:00.000036', 29.87537558971096, 0.3811748463249711, -0.6963034976495062, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123272, '899', '2025-11-19 08:50:00.000036', 29.87530840147552, 0.3843328460490268, -0.6963671113776075, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123274, '899', '2025-11-20 08:50:00.000036', 29.87524074853117, 0.3874904120830056, -0.6964309836612913, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123275, '899', '2025-11-21 08:50:00.000036', 29.87517233613604, 0.3906477141227973, -0.6964947157820333, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123276, '899', '2025-11-22 08:50:00.000036', 29.8751033159093, 0.393805180643415, -0.6965580465066673, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123277, '899', '2025-11-23 08:50:00.000036', 29.87503412865288, 0.3969630538955114, -0.6966211234218055, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123278, '899', '2025-11-24 08:50:00.000036', 29.87496504683175, 0.4001211385017525, -0.6966843496957527, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123279, '899', '2025-11-25 08:50:00.000036', 29.87489589160492, 0.4032790041871308, -0.6967479654684496, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123280, '899', '2025-11-26 08:50:00.000036', 29.87482621854545, 0.4064364323207914, -0.6968117985617571, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123281, '899', '2025-11-27 08:50:00.000036', 29.87475577927417, 0.4095936430210076, -0.6968754432724089, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123282, '899', '2025-11-28 08:50:00.000036', 29.87468477913711, 0.4127510666684496, -0.6969386814883087, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123283, '899', '2025-11-29 08:50:00.000036', 29.87461366406082, 0.4159088969647053, -0.6970017091671161, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.858853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123420, '-168', '2025-10-30 08:50:00.000036', -0.552844523588557, -1.399284347799235, -0.01576883767350028, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123422, '-168', '2025-10-31 08:50:00.000036', -0.5392772491751062, -1.403167373792619, -0.01618303105540145, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123424, '-168', '2025-11-01 08:50:00.000036', -0.5256634850753042, -1.406928157309583, -0.01659557167278383, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123426, '-168', '2025-11-02 08:50:00.000036', -0.5120042844171491, -1.410565965897507, -0.01700642101303331, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123428, '-168', '2025-11-03 08:50:00.000036', -0.4983006983437334, -1.414080078219347, -0.01741554660270538, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123430, '-168', '2025-11-04 08:50:00.000036', -0.4845537766155483, -1.417469786282026, -0.01782292182686161, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123432, '-168', '2025-11-05 08:50:00.000036', -0.4707645684925458, -1.420734397538824, -0.01822852559949702, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123434, '-168', '2025-11-06 08:50:00.000036', -0.456934123873774, -1.423873236817209, -0.01863234189315259, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123436, '-168', '2025-11-07 08:50:00.000036', -0.4430634946658051, -1.42688564802632, -0.01903435913922306, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123438, '-168', '2025-11-08 08:50:00.000036', -0.4291537363439447, -1.429770995603818, -0.01943456951436226, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123440, '-168', '2025-11-09 08:50:00.000036', -0.4152059096647668, -1.432528665669915, -0.01983296813157557, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123442, '-168', '2025-11-10 08:50:00.000036', -0.4012210824860263, -1.435158066864942, -0.02022955215645692, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123444, '-168', '2025-11-11 08:50:00.000036', -0.3872003316482805, -1.437658630854088, -0.02062431987040435, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123446, '-168', '2025-11-12 08:50:00.000036', -0.373144744869996, -1.440029812489852, -0.0210172697043194, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123448, '-168', '2025-11-13 08:50:00.000036', -0.3590554226058527, -1.442271089631242, -0.02140839926777135, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123450, '-168', '2025-11-14 08:50:00.000036', -0.3449334798189188, -1.444381962628835, -0.02179770439877838, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123452, '-168', '2025-11-15 08:50:00.000036', -0.3307800476210126, -1.446361953493986, -0.02218517825817012, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123454, '-168', '2025-11-16 08:50:00.000036', -0.3165962747397611, -1.448210604777253, -0.02257081049088747, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123456, '-168', '2025-11-17 08:50:00.000036', -0.3023833287743343, -1.449927478187119, -0.02295458647516934, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123458, '-168', '2025-11-18 08:50:00.000036', -0.2881423972057627, -1.451512152987599, -0.02333648667899726, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123459, '-168', '2025-11-19 08:50:00.000036', -0.2738746881338037, -1.452964224220712, -0.02371648614066479, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123460, '-168', '2025-11-20 08:50:00.000036', -0.259581430720344, -1.454283300804205, -0.02409455408666651, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125450, '50326340', '2025-11-25 00:00:00', 45.41254781142108, 7.264605826349896, 19.16409317927594, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:56.152501');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125480, '90000030', '2025-11-25 00:00:00', -19.51898634708924, 27.42183691831556, -9.891524363857807, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:47.644134');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125510, '90004920', '2025-11-25 00:00:00', -1.51846564812124, 0.6851030797404132, 0.03339533647504735, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:34.662025');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125430, '50326340', '2025-11-05 00:00:00', 45.12887482772495, 7.222336206278388, 19.03995317434039, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:25.034309');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125460, '90000030', '2025-11-05 00:00:00', -19.52906015535961, 27.41817932927881, -9.893721976181947, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:11.910846');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125490, '90004920', '2025-11-05 00:00:00', -1.372839754435643, -0.07892387219394875, 0.0773413670661216, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:03.558533');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125440, '50326340', '2025-11-15 00:00:00', 45.27071668865945, 7.243472417520624, 19.10202548950027, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:40.420187');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125470, '90000030', '2025-11-15 00:00:00', -19.52403005812498, 27.42001805679143, -9.892626563485972, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:28.817547');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125500, '90004920', '2025-11-15 00:00:00', -1.452176178199202, 0.304375838803135, 0.05562361162341203, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:18.996232');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120371, '10', '2025-11-29 06:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.533876');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120389, '599', '2025-10-30 00:00:00', -1.23204854981748, 5.040554445206258, 0.006626967413611227, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.898585');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120394, '599', '2025-09-01 00:00:00', -0.7899661848172759, 5.106724476913768, -0.003538822447225519, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.938904');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120417, '-31', '2025-10-30 00:00:00', -31.76098399014949, -134.1832398913909, 97.08695417621091, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.069516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123301, '-98', '2025-11-02 08:50:00.000036', 19.82649345362662, -59.87324972156658, 2.1959598264853, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123303, '-98', '2025-11-03 08:50:00.000036', 19.82956516822871, -59.88048254411881, 2.196244540664796, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123305, '-98', '2025-11-04 08:50:00.000036', 19.83263686147857, -59.88771530657419, 2.196529252235844, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123307, '-98', '2025-11-05 08:50:00.000036', 19.83570853338408, -59.89494800893461, 2.196813961199853, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123309, '-98', '2025-11-06 08:50:00.000036', 19.8387801839523, -59.90218065120416, 2.197098667558101, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123311, '-98', '2025-11-07 08:50:00.000036', 19.84185181318978, -59.90941323338935, 2.197383371311695, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123313, '-98', '2025-11-08 08:50:00.000036', 19.84492342110283, -59.91664575549939, 2.197668072461525, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123315, '-98', '2025-11-09 08:50:00.000036', 19.8479950076979, -59.92387821754628, 2.197952771008203, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123317, '-98', '2025-11-10 08:50:00.000036', 19.85106657298199, -59.93111061954514, 2.198237466952036, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123319, '-98', '2025-11-11 08:50:00.000036', 19.85413811696326, -59.93834296151417, 2.198522160292964, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123321, '-98', '2025-11-12 08:50:00.000036', 19.85720963965153, -59.94557524347471, 2.198806851030458, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123323, '-98', '2025-11-13 08:50:00.000036', 19.86028114105904, -59.95280746545119, 2.199091539163545, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123325, '-98', '2025-11-14 08:50:00.000036', 19.86335262120113, -59.96003962747093, 2.199376224690716, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123327, '-98', '2025-11-15 08:50:00.000036', 19.86642408009697, -59.96727172956361, 2.199660907609888, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123329, '-98', '2025-11-16 08:50:00.000036', 19.86949551777029, -59.97450377176077, 2.19994558791842, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123331, '-98', '2025-11-17 08:50:00.000036', 19.87256693425007, -59.98173575409503, 2.200230265613081, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123333, '-98', '2025-11-18 08:50:00.000036', 19.87563832957098, -59.98896767659897, 2.200514940690127, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123335, '-98', '2025-11-19 08:50:00.000036', 19.87870970377372, -59.99619953930407, 2.200799613145348, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123336, '-98', '2025-11-20 08:50:00.000036', 19.88178105690506, -60.00343134223932, 2.201084282974172, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123337, '-98', '2025-11-21 08:50:00.000036', 19.8848523890175, -60.0106630854298, 2.201368950171819, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123338, '-98', '2025-11-22 08:50:00.000036', 19.88792370016866, -60.0178947688955, 2.201653614733461, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123339, '-98', '2025-11-23 08:50:00.000036', 19.89099499042025, -60.02512639265001, 2.201938276654434, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123340, '-98', '2025-11-24 08:50:00.000036', 19.89406625983684, -60.03235795669969, 2.202222935930393, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123341, '-98', '2025-11-25 08:50:00.000036', 19.89713750848428, -60.0395894610431, 2.202507592557534, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123342, '-98', '2025-11-26 08:50:00.000036', 19.90020873642815, -60.04682090567079, 2.202792246532721, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123343, '-98', '2025-11-27 08:50:00.000036', 19.90327994373212, -60.05405229056553, 2.203076897853667, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123344, '-98', '2025-11-28 08:50:00.000036', 19.90635113045658, -60.06128361570296, 2.203361546518946, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123345, '-98', '2025-11-29 08:50:00.000036', 19.90942229665734, -60.0685148810525, 2.203646192528101, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.91949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123480, '999', '2025-10-30 08:50:00.000036', 19.05768100788804, -29.71519050197704, -2.331428214470922, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123482, '999', '2025-10-31 08:50:00.000036', 19.06040893445112, -29.71419434623938, -2.33233625460741, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123484, '999', '2025-11-01 08:50:00.000036', 19.0631275008359, -29.71320624099577, -2.33324139038825, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123486, '999', '2025-11-02 08:50:00.000036', 19.06583965636255, -29.71221789168434, -2.33413546295706, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123488, '999', '2025-11-03 08:50:00.000036', 19.06855396028721, -29.71122104899512, -2.335020166520848, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123490, '999', '2025-11-04 08:50:00.000036', 19.07127694556054, -29.71021487379642, -2.335905545198216, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123492, '999', '2025-11-05 08:50:00.000036', 19.07400728394958, -29.70920668872382, -2.336801025562694, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123494, '999', '2025-11-06 08:50:00.000036', 19.0767369763996, -29.70820543766379, -2.337707003875301, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123496, '999', '2025-11-07 08:50:00.000036', 19.07945849165683, -29.70721370971719, -2.33861450172624, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123498, '999', '2025-11-08 08:50:00.000036', 19.08217147778496, -29.70622543482794, -2.339513171872405, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123500, '999', '2025-11-09 08:50:00.000036', 19.08488307933303, -29.70523129180519, -2.340400523251927, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123502, '999', '2025-11-10 08:50:00.000036', 19.08760156830933, -29.70422702419818, -2.341284152023301, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123504, '999', '2025-11-11 08:50:00.000036', 19.0903289575611, -29.70321724470437, -2.342174964123401, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123506, '999', '2025-11-12 08:50:00.000036', 19.09305920557763, -29.70221131441368, -2.343077437620518, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123508, '999', '2025-11-13 08:50:00.000036', 19.09578361280012, -29.70121498880668, -2.34398563467735, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125452, '50326340', '2025-11-27 00:00:00', 45.44091275664289, 7.268832172376196, 19.17650616433026, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:59.015572');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125482, '90000030', '2025-11-27 00:00:00', -19.51797596817005, 27.4221983058919, -9.891303109844431, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:51.031426');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125512, '90004920', '2025-11-27 00:00:00', -1.530449132919058, 0.7607609442518215, 0.02891577201454551, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:37.824653');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125442, '50326340', '2025-11-17 00:00:00', 45.29908376928251, 7.247699323445008, 19.11443939668202, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:43.460128');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125472, '90000030', '2025-11-17 00:00:00', -19.52302240574715, 27.42038341883602, -9.892406666411594, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:32.058602');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125502, '90004920', '2025-11-17 00:00:00', -1.466375112253412, 0.3808081068016945, 0.0512079402875493, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:22.118557');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125432, '50326340', '2025-11-07 00:00:00', 45.15724406298186, 7.226563672948979, 19.05236800867062, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:28.369737');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125462, '90000030', '2025-11-07 00:00:00', -19.52805522439548, 27.41854866354568, -9.8935034366943, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:15.352102');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125492, '90004920', '2025-11-07 00:00:00', -1.389890177329537, -0.00220467286316172, 0.0730558621712515, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:06.61843');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120373, '799', '2025-11-29 06:00:00', 9.992314481301163, 16.7403570675702, -0.06739326153533555, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.542065');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120377, '-31', '2025-11-29 06:00:00', -31.79720466646097, -134.4210352023488, 97.25878287684897, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:18.558416');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120381, '2000001', '2025-10-30 00:00:00', 2.791038401185732, 0.7232677444753066, -0.4912850640648935, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:57.688958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120382, '399', '2025-10-30 00:00:00', 0.7986944868186452, 0.590268655522892, -3.777824441315787e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:24:57.724117');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120384, '2000001', '2025-09-01 00:00:00', 2.900310685688841, 0.1630159683541775, -0.5291501462543409, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.844725');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120387, '-61', '2025-10-30 00:00:00', -1.221891049031305, 5.031186683764978, -0.0281531645995004, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.882667');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120392, '-61', '2025-09-01 00:00:00', -0.7786640911114996, 5.09354158062908, -0.03781134164230096, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.922542');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120395, '199', '2025-10-30 00:00:00', 0.2951238611442145, -0.2885298291248416, -0.05064793855500426, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.941227');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120397, '301', '2025-10-30 00:00:00', 0.8003702090233066, 0.588284458315908, -0.0001763299731465839, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.956258');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120400, '199', '2025-09-01 00:00:00', -0.08303214499228734, 0.3009081046520322, 0.03220657538694302, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.985318');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120401, '-98', '2025-10-30 00:00:00', 19.81614759100508, -59.84888873133306, 2.195000874103405, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.987451');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120402, '301', '2025-09-01 00:00:00', 0.938244966618006, -0.3728987345064721, -0.0002263462829540439, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:29.995689');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120406, '-98', '2025-09-01 00:00:00', 19.6348732987897, -59.42203413498502, 2.178197554777419, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.019527');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120409, '699', '2025-10-30 00:00:00', 9.53005116688387, -0.09294928169424421, -0.3777314463087457, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.029864');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120411, '10', '2025-10-30 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.039669');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120414, '699', '2025-09-01 00:00:00', 9.539625184388791, -0.4213036524831343, -0.3723933149361465, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.059912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120416, '10', '2025-09-01 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.069413');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120419, '-32', '2025-10-30 00:00:00', 39.07458487984649, -103.6516579085222, -87.506719678648, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.078587');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120420, '299', '2025-09-01 00:00:00', 0.1183304657769062, 0.710421803319912, 0.002932263267224765, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.086809');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120422, '-32', '2025-09-01 00:00:00', 38.93134050586588, -103.3333455736254, -87.12090341401806, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:25:30.106188');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120423, '2000001', '2025-09-03 00:00:00', 2.898506027079243, 0.1822448880517064, -0.5282090329311093, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.34147');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120424, '399', '2025-09-03 00:00:00', 0.9503767237680754, -0.3382161076553375, 1.770725601869719e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.378989');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120425, '136199', '2025-09-03 00:00:00', 85.27131682667739, 39.36044629319825, -17.61215355118595, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.412426');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120426, '136108', '2025-09-03 00:00:00', -37.18796763594328, -23.39713190279442, 23.56604480305887, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.442958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120427, '-61', '2025-09-03 00:00:00', -0.7939298417311976, 5.091597767201406, -0.03599173121208062, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.467321');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120428, '599', '2025-09-03 00:00:00', -0.8050669105682502, 5.105099933574205, -0.003194272333526876, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.492191');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120429, '136472', '2025-09-03 00:00:00', -46.00697795767384, -8.793663430645193, 24.18061786811123, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.508349');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120430, '499', '2025-09-03 00:00:00', -1.222196890039842, -0.9967266079988837, 0.009083591761661696, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.524794');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120431, '199', '2025-09-03 00:00:00', -0.1466067117528723, 0.2824490753463095, 0.03652911626880765, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.54166');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120432, '301', '2025-09-03 00:00:00', 0.9508841089098676, -0.3407847506863571, -0.0002045000487370622, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.558228');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120433, '899', '2025-09-03 00:00:00', 29.8795640118362, 0.1399823641314827, -0.6914317319992315, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.573575');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120434, '-98', '2025-09-03 00:00:00', 19.64101948660462, -59.43650719521557, 2.178767309705862, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.588373');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120435, '-96', '2025-09-03 00:00:00', 0.4474012266147911, -0.0937781372338133, -0.02711064137846865, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.601344');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120436, '-168', '2025-09-03 00:00:00', -1.222177712107748, -0.9967145373267364, 0.009082809271844116, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.612376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120437, '999', '2025-09-03 00:00:00', 18.90131573850043, -29.77208355882824, -2.280001362025712, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.621397');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120438, '699', '2025-09-03 00:00:00', 9.539486561445509, -0.4101776535564841, -0.3725819983168577, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.631422');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120439, '10', '2025-09-03 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.640776');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120440, '799', '2025-09-03 00:00:00', 10.28861136837936, 16.57787742955537, -0.0718387369343736, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.649594');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120441, '299', '2025-09-03 00:00:00', 0.07812318673587147, 0.7157363306434457, 0.005325240646266099, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.658826');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120442, '-31', '2025-09-03 00:00:00', -31.69272392998387, -133.7351690928833, 96.76316307293153, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.667822');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120443, '-32', '2025-09-03 00:00:00', 38.93619644051968, -103.3441357939923, -87.13398245169603, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:26:44.677015');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120444, '2000001', '2025-09-04 00:00:00', 2.897553676153696, 0.1918562493081191, -0.5277293585210484, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.309358');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120445, '399', '2025-09-04 00:00:00', 0.9557225039635915, -0.3220267537434819, 1.636580656843991e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.334719');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120446, '136199', '2025-09-04 00:00:00', 85.27084172804393, 39.36130662068834, -17.61121683419045, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.350571');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120447, '136108', '2025-09-04 00:00:00', -37.18659687106125, -23.39889001036808, 23.56591698308595, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.368083');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120448, '-61', '2025-09-04 00:00:00', -0.8016506928779524, 5.090718457984374, -0.03481388927337217, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.382275');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120449, '599', '2025-09-04 00:00:00', -0.8126137641673215, 5.104271735595909, -0.003021952413350857, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.403739');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120450, '136472', '2025-09-04 00:00:00', -46.00680165014957, -8.795805729679868, 24.18030016503465, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.420182');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120451, '499', '2025-09-04 00:00:00', -1.212781271790767, -1.006335824326119, 0.008651329003072925, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.43301');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120452, '199', '2025-09-04 00:00:00', -0.1765415227351779, 0.2693161614112331, 0.03820148301859709, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.449261');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120453, '301', '2025-09-04 00:00:00', 0.9567713292261154, -0.3243908673502552, -0.0001769846756231631, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.458656');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120454, '899', '2025-09-04 00:00:00', 29.87952204673808, 0.1431414169936348, -0.6914959437542892, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.467724');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120455, '-98', '2025-09-04 00:00:00', 19.64409254485328, -59.4437436356386, 2.17905218319515, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.47725');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120456, '-96', '2025-09-04 00:00:00', 0.4291981114543199, -0.07869241062678542, -0.02585315680748446, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.485392');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120457, '-168', '2025-09-04 00:00:00', -1.212760595438966, -1.006326677803573, 0.008649615092872761, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.494597');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120458, '999', '2025-09-04 00:00:00', 18.90404994096043, -29.77109938675752, -2.280910548950427, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.502188');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120459, '699', '2025-09-04 00:00:00', 9.539412081131095, -0.4046142456164429, -0.3726762302904518, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.51131');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120460, '10', '2025-09-04 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.518989');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120461, '799', '2025-09-04 00:00:00', 10.28523292662678, 16.57976879161427, -0.07178790213300902, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.528548');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120462, '299', '2025-09-04 00:00:00', 0.0579186837153266, 0.7175435829876694, 0.006515871230835112, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.537092');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120463, '-31', '2025-09-04 00:00:00', -31.6939215591398, -133.7430298966951, 96.76884378483192, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.546477');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120464, '-32', '2025-09-04 00:00:00', 38.93862440135464, -103.3495309055064, -87.14052195680243, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:27:23.554623');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120465, '2000001', '2025-09-05 00:00:00', 2.896567973471544, 0.201465396219082, -0.5272436095649022, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.682282');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120466, '399', '2025-09-05 00:00:00', 0.9607932404574078, -0.3057459826715404, 1.48990242091332e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.714003');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120467, '136199', '2025-09-05 00:00:00', 85.2703666004818, 39.36216692290118, -17.61028011123744, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.739978');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120468, '136108', '2025-09-05 00:00:00', -37.18522601725164, -23.40064807390824, 23.5657891067578, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.760641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120469, '-61', '2025-09-05 00:00:00', -0.8094348867440749, 5.089908611089661, -0.03344729341917717, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.779107');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120470, '599', '2025-09-05 00:00:00', -0.820159265595527, 5.103432874380547, -0.002849622030927424, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.796418');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120471, '136472', '2025-09-05 00:00:00', -46.00662524953349, -8.79794802282218, 24.17998241302609, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.810047');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120472, '499', '2025-09-05 00:00:00', -1.203273963900708, -1.015868963796625, 0.008218412135308066, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.825728');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120473, '199', '2025-09-05 00:00:00', -0.2049473203998287, 0.2538474467331446, 0.03954272160242821, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.843252');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120474, '301', '2025-09-05 00:00:00', 0.9623305669412415, -0.3077840201917076, -0.0001396190400667492, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.859831');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120475, '899', '2025-09-05 00:00:00', 29.87947960105436, 0.1463000361360246, -0.6915604043298716, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.874655');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120494, '199', '2025-09-06 00:00:00', -0.2316474375736066, 0.2362631635941949, 0.04055462603101469, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.564463');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120505, '-31', '2025-09-06 00:00:00', -31.69631681093029, -133.7587515148549, 96.78020519079804, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.669425');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120476, '-98', '2025-09-05 00:00:00', 19.64716557944997, -59.45098001626639, 2.179337054030941, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.890105');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120495, '301', '2025-09-06 00:00:00', 0.9675322089196116, -0.2909812073200299, -9.405616774950348e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.575382');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120506, '-32', '2025-09-06 00:00:00', 38.94348031046258, -103.3603211311059, -87.15360093957065, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.678103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123372, '-96', '2025-11-07 08:50:00.000036', 0.615330019170788, -0.3603125997261586, -0.04045241354228716, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123374, '-96', '2025-11-08 08:50:00.000036', 0.6151064328673175, -0.3519835949209029, -0.04032501330514, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123376, '-96', '2025-11-09 08:50:00.000036', 0.6143738718397661, -0.3433633619935446, -0.04016424606725827, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123379, '-96', '2025-11-10 08:50:00.000036', 0.6131223013243404, -0.3344530899844759, -0.0399695492572228, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123381, '-96', '2025-11-11 08:50:00.000036', 0.6113406741786387, -0.3252537067576971, -0.0397402983086776, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123383, '-96', '2025-11-12 08:50:00.000036', 0.6090168404019618, -0.3157658856135593, -0.03947580153135955, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123385, '-96', '2025-11-13 08:50:00.000036', 0.6061374426234433, -0.3059900516116771, -0.03917529416858996, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123387, '-96', '2025-11-14 08:50:00.000036', 0.6026877951738597, -0.2959263879027967, -0.03883793150780157, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123389, '-96', '2025-11-15 08:50:00.000036', 0.5986517437252181, -0.2855748424388009, -0.03846278087518626, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123391, '-96', '2025-11-16 08:50:00.000036', 0.5940115018197708, -0.2749351355330537, -0.03804881230874987, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123393, '-96', '2025-11-17 08:50:00.000036', 0.588747459708102, -0.2640067688878655, -0.03759488765400483, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123395, '-96', '2025-11-18 08:50:00.000036', 0.582837959763002, -0.2527890369079402, -0.03709974776279854, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123397, '-96', '2025-11-19 08:50:00.000036', 0.5762590312588158, -0.241281041401883, -0.0365619973944543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123398, '-96', '2025-11-20 08:50:00.000036', 0.5689840751670593, -0.2294817111988832, -0.03598008730085601, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123399, '-96', '2025-11-21 08:50:00.000036', 0.5609834880897889, -0.2173898286333946, -0.03535229289472892, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123400, '-96', '2025-11-22 08:50:00.000036', 0.5522242084346246, -0.2050040659992885, -0.03467668856900839, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123401, '-96', '2025-11-23 08:50:00.000036', 0.542669166429075, -0.1923230358617278, -0.03395111665910142, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123402, '-96', '2025-11-24 08:50:00.000036', 0.5322766105322664, -0.1793453611990061, -0.03317314954700242, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123403, '-96', '2025-11-25 08:50:00.000036', 0.5209992765293492, -0.1660697734599259, -0.03234004307338578, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123404, '-96', '2025-11-26 08:50:00.000036', 0.5087833483281491, -0.1524952514408861, -0.03144867849396499, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123405, '-96', '2025-11-27 08:50:00.000036', 0.4955671454220766, -0.1386212191839923, -0.03049548947834813, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123406, '-96', '2025-11-28 08:50:00.000036', 0.4812794448566035, -0.1244478305167018, -0.02947636921413389, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123408, '-96', '2025-11-29 08:50:00.000036', 0.4658372987884147, -0.1099763849203815, -0.02838655021666307, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:47.978361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125453, '50326340', '2025-11-28 00:00:00', 45.45509507015378, 7.27094530362031, 19.18271258790287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:00.47829');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123542, '699', '2025-10-30 08:50:00.000036', 9.529956001699523, -0.09090055797012521, -0.3777632124628855, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123544, '699', '2025-10-31 08:50:00.000036', 9.529695442432336, -0.08533418312863837, -0.3778494630298805, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123546, '699', '2025-11-01 08:50:00.000036', 9.529431927329197, -0.07976765330353464, -0.3779356838885168, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123548, '699', '2025-11-02 08:50:00.000036', 9.529165322776791, -0.07420086266610378, -0.3780219174697965, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123550, '699', '2025-11-03 08:50:00.000036', 9.528895519239326, -0.06863381582787444, -0.3781081514054659, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123552, '699', '2025-11-04 08:50:00.000036', 9.528622407776638, -0.06306649687511193, -0.3781943836884613, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123554, '699', '2025-11-05 08:50:00.000036', 9.528345903551267, -0.0574989696611357, -0.3782805737780573, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123556, '699', '2025-11-06 08:50:00.000036', 9.528065949192118, -0.0519312579763452, -0.3783667049419553, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123558, '699', '2025-11-07 08:50:00.000036', 9.527782460298505, -0.04636343698882072, -0.3784527313687543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123560, '699', '2025-11-08 08:50:00.000036', 9.527495405157609, -0.04079564215281036, -0.3785385806321231, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123562, '699', '2025-11-09 08:50:00.000036', 9.5272048763014, -0.03522797046654584, -0.3786242124486853, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123564, '699', '2025-11-10 08:50:00.000036', 9.526910910361854, -0.02966047243066332, -0.3787096058826593, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123566, '699', '2025-11-11 08:50:00.000036', 9.526613612742546, -0.02409321408919481, -0.3787947382619229, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123568, '699', '2025-11-12 08:50:00.000036', 9.526313064546677, -0.01852620966271673, -0.378879611727845, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123570, '699', '2025-11-13 08:50:00.000036', 9.526009386811097, -0.01295947166660078, -0.3789642321327669, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123572, '699', '2025-11-14 08:50:00.000036', 9.525702720910806, -0.007392950001375181, -0.3790486403831804, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123574, '699', '2025-11-15 08:50:00.000036', 9.525393128296683, -0.001826488129448203, -0.3791329245606663, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123576, '699', '2025-11-16 08:50:00.000036', 9.525080557656546, 0.003739998865159087, -0.3792171247667944, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123578, '699', '2025-11-17 08:50:00.000036', 9.52476499100102, 0.009306607314168089, -0.3793012892582296, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123580, '699', '2025-11-18 08:50:00.000036', 9.524446335852378, 0.01487340339456503, -0.3793854440207458, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123582, '699', '2025-11-19 08:50:00.000036', 9.524124503607736, 0.02044043405493259, -0.3794696051527736, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123584, '699', '2025-11-20 08:50:00.000036', 9.523799380420389, 0.0260077210407902, -0.3795537741667329, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125483, '90000030', '2025-11-28 00:00:00', -19.51747057376019, 27.4223787016873, -9.891192381101561, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:52.771802');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125513, '90004920', '2025-11-28 00:00:00', -1.536303272162182, 0.798522609302786, 0.02667331587971667, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:39.405312');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125443, '50326340', '2025-11-18 00:00:00', 45.3132671486982, 7.249812734372524, 19.12064628096043, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:45.108162');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125473, '90000030', '2025-11-18 00:00:00', -19.52251837535163, 27.42056580183122, -9.892296616073333, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:33.662564');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125503, '90004920', '2025-11-18 00:00:00', -1.473286071290313, 0.4189769450533619, 0.04899341225705157, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:23.794291');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125433, '50326340', '2025-11-08 00:00:00', 45.17142851853252, 7.228677364154636, 19.05857535611775, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:29.794866');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125463, '90000030', '2025-11-08 00:00:00', -19.52755255482651, 27.41873303278969, -9.89339406512796, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:17.109591');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125493, '90004920', '2025-11-08 00:00:00', -1.398185844613474, 0.03615748983304937, 0.07090089867837261, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:08.152266');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120477, '-96', '2025-09-05 00:00:00', 0.4094717133847875, -0.06332842203271322, -0.02450392971582291, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.905367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120486, '2000001', '2025-09-06 00:00:00', 2.89554891640115, 0.2110722172348709, -0.5267517890997293, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.424415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120497, '-98', '2025-09-06 00:00:00', 19.65023859047827, -59.45821633709398, 2.17962192221155, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.594605');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123464, '-168', '2025-11-24 08:50:00.000036', -0.2021782371034051, -1.458222213896055, -0.02558668293396385, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123465, '-168', '2025-11-25 08:50:00.000036', -0.187776404936537, -1.458870798758133, -0.02595442038940325, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123466, '-168', '2025-11-26 08:50:00.000036', -0.1733568279759337, -1.459384224856859, -0.02631991716779161, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123467, '-168', '2025-11-27 08:50:00.000036', -0.1589208698272812, -1.459762145545616, -0.02668310371869372, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123469, '-168', '2025-11-28 08:50:00.000036', -0.1444699081934092, -1.460004214618929, -0.02704390693210822, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123470, '-168', '2025-11-29 08:50:00.000036', -0.1300053329885316, -1.460110085569536, -0.0274022509782128, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.039151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123604, '10', '2025-10-30 08:50:11.594', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.205621');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123606, '10', '2025-11-29 08:50:11.594', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.205621');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125454, '50326340', '2025-11-29 00:00:00', 45.46927727776048, 7.273058407092623, 19.1889189655413, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:02.018235');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125484, '90000030', '2025-11-29 00:00:00', -19.51696504264736, 27.42255889887457, -9.891081584536435, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:54.415695');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125514, '90004920', '2025-11-29 00:00:00', -1.542069863382577, 0.8362388092749912, 0.02442933867228468, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:41.000585');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125444, '50326340', '2025-11-19 00:00:00', 45.32745042098446, 7.251926117272752, 19.12685311906256, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:46.687155');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125474, '90000030', '2025-11-19 00:00:00', -19.52201420877783, 27.4207479861169, -9.892186497873412, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:35.391028');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125504, '90004920', '2025-11-19 00:00:00', -1.480075921947704, 0.4571113848333946, 0.0467748556509875, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:25.353382');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125434, '50326340', '2025-11-09 00:00:00', 45.18561286612579, 7.230791027299179, 19.0647826571249, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:31.340735');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125464, '90000030', '2025-11-09 00:00:00', -19.52704974919996, 27.41891720344532, -9.893284625679392, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:18.75013');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125494, '90004920', '2025-11-09 00:00:00', -1.406330932648269, 0.07451579859112169, 0.06873829857575912, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:09.768445');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120478, '-168', '2025-09-05 00:00:00', -1.203252229721197, -1.015862982198999, 0.008215971791380453, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.921473');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120496, '899', '2025-09-06 00:00:00', 29.87943639109563, 0.1494584043022461, -0.6916247126339824, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.584903');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123510, '999', '2025-11-14 08:50:00.000036', 19.0984985771994, -29.70022529089835, -2.344888501623487, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123512, '999', '2025-11-15 08:50:00.000036', 19.1012088055096, -29.69923316386897, -2.345779721136437, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123514, '999', '2025-11-16 08:50:00.000036', 19.10392312150006, -29.69823154567301, -2.346663352352946, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123516, '999', '2025-11-17 08:50:00.000036', 19.10664659068054, -29.69722167662561, -2.347550215443185, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123518, '999', '2025-11-18 08:50:00.000036', 19.10937599655173, -29.69621199252203, -2.348448229851262, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123520, '999', '2025-11-19 08:50:00.000036', 19.11210271716526, -29.69521059183644, -2.349355350106764, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123522, '999', '2025-11-20 08:50:00.000036', 19.11482041626821, -29.69421801671832, -2.350261398694051, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123523, '999', '2025-11-21 08:50:00.000036', 19.11753068965593, -29.69322677184638, -2.351157138502583, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123524, '999', '2025-11-22 08:50:00.000036', 19.12024164727085, -29.69222800347837, -2.352042511045062, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123525, '999', '2025-11-23 08:50:00.000036', 19.1229606801222, -29.69121940164255, -2.352926697722508, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123526, '999', '2025-11-24 08:50:00.000036', 19.12568785935159, -29.69020726598433, -2.353819924292047, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123527, '999', '2025-11-25 08:50:00.000036', 19.1284158764035, -29.6892008782998, -2.354724332613674, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123528, '999', '2025-11-26 08:50:00.000036', 19.13113656770009, -29.68820422263809, -2.355632078667759, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123529, '999', '2025-11-27 08:50:00.000036', 19.13384819059394, -29.68721243789986, -2.356532329183385, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123530, '999', '2025-11-28 08:50:00.000036', 19.13655697902332, -29.68621614858402, -2.357420918395663, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123531, '999', '2025-11-29 08:50:00.000036', 19.13927158840621, -29.68520982660929, -2.358304071771556, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.095034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123647, '10', '2025-10-30 08:50:16.375', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.247262');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123649, '10', '2025-11-29 08:50:16.375', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.247262');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123747, '-31', '2025-11-07 08:50:00.000036', -31.77100409834759, -134.2490209933521, 97.1344876787425, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123749, '-31', '2025-11-08 08:50:00.000036', -31.77220150274958, -134.2568819816911, 97.14016800330434, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123751, '-31', '2025-11-09 08:50:00.000036', -31.77339890302217, -134.2647429721702, 97.14584832197582, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123754, '-31', '2025-11-10 08:50:00.000036', -31.77459629916364, -134.272603964788, 97.15152863475723, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123756, '-31', '2025-11-11 08:50:00.000036', -31.77579369117119, -134.2804649595457, 97.15720894164862, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123758, '-31', '2025-11-12 08:50:00.000036', -31.77699107904027, -134.288325956448, 97.16288924264951, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123760, '-31', '2025-11-13 08:50:00.000036', -31.77818846276399, -134.2961869555025, 97.16856953775896, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123762, '-31', '2025-11-14 08:50:00.000036', -31.77938584233231, -134.3040479567198, 97.17424982697551, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123764, '-31', '2025-11-15 08:50:00.000036', -31.78058321773138, -134.3119089601128, 97.17993011029715, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123766, '-31', '2025-11-16 08:50:00.000036', -31.78178058894274, -134.3197699656963, 97.18561038772131, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123768, '-31', '2025-11-17 08:50:00.000036', -31.78297795594278, -134.3276309734862, 97.19129065924476, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123770, '-31', '2025-11-18 08:50:00.000036', -31.78417531870209, -134.3354919834984, 97.19697092486383, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123772, '-31', '2025-11-19 08:50:00.000036', -31.78537267718528, -134.3433529957475, 97.20265118457438, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123774, '-31', '2025-11-20 08:50:00.000036', -31.78657003135088, -134.3512140102459, 97.20833143837189, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123775, '-31', '2025-11-21 08:50:00.000036', -31.78776738115171, -134.3590750270018, 97.21401168625162, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123776, '-31', '2025-11-22 08:50:00.000036', -31.78896472653542, -134.3669360460188, 97.21969192820882, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123777, '-31', '2025-11-23 08:50:00.000036', -31.79016206744559, -134.3747970672934, 97.22537216423883, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123778, '-31', '2025-11-24 08:50:00.000036', -31.79135940382297, -134.3826580908156, 97.23105239433742, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123779, '-31', '2025-11-25 08:50:00.000036', -31.79255673560698, -134.390519116567, 97.2367326185008, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123780, '-31', '2025-11-26 08:50:00.000036', -31.79375406273736, -134.3983801445216, 97.24241283672588, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123781, '-31', '2025-11-27 08:50:00.000036', -31.79495138515568, -134.4062411746455, 97.24809304901046, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123782, '-31', '2025-11-28 08:50:00.000036', -31.79614870280686, -134.4141022068978, 97.25377325535317, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123783, '-31', '2025-11-29 08:50:00.000036', -31.79734601564037, -134.4219632412309, 97.25945345575356, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.325299');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125455, '50326340', '2025-11-30 00:00:00', 45.4834593795786, 7.275171482855984, 19.19512529727334, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:03.561417');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125485, '90000030', '2025-11-30 00:00:00', -19.51645937478563, 27.42273889750121, -9.890970720149278, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:55.94817');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125515, '90004920', '2025-11-30 00:00:00', -1.547751950857737, 0.8739092236319439, 0.02218402172506083, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:42.540897');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125435, '50326340', '2025-11-10 00:00:00', 45.19979710583284, 7.232904662397899, 19.07098991172067, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:32.90251');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125465, '90000030', '2025-11-10 00:00:00', -19.52654680751566, 27.41910117551233, -9.893175118348541, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:20.345657');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125495, '90004920', '2025-11-10 00:00:00', -1.414327612600759, 0.1128662846233766, 0.06656844370380074, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:11.350228');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125445, '50326340', '2025-11-20 00:00:00', 45.34163358624963, 7.254039472144692, 19.13305991101185, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:02:48.281202');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125475, '90000030', '2025-11-20 00:00:00', -19.52150990598776, 27.42092997167663, -9.892076311816648, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:03:37.108179');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125505, '90004920', '2025-11-20 00:00:00', -1.486748127770403, 0.4952095332501642, 0.04455257993592956, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:04:26.870663');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120479, '999', '2025-09-05 00:00:00', 18.90677468182555, -29.77012257412927, -2.281815548786681, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.937042');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120491, '599', '2025-09-06 00:00:00', -0.8277035189196126, 5.102583694349472, -0.002677272198442678, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.530653');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120502, '10', '2025-09-06 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.640324');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123589, '699', '2025-11-25 08:50:00.000036', 9.522121518033519, 0.05384560014184891, -0.3799732417091561, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123590, '699', '2025-11-26 08:50:00.000036', 9.521775473749768, 0.05941287680828247, -0.3800565610835448, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123591, '699', '2025-11-27 08:50:00.000036', 9.521426071632977, 0.06497984774915536, -0.3801395979917249, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123592, '699', '2025-11-28 08:50:00.000036', 9.521073492366133, 0.07054651560575365, -0.3802223725486826, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123593, '699', '2025-11-29 08:50:00.000036', 9.520717793428084, 0.07611293524829689, -0.3803049205850257, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.149316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123671, '299', '2025-10-30 08:50:00.000036', -0.7175498187519866, 0.03966183506684147, 0.04194738191298856, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123673, '299', '2025-10-31 08:50:00.000036', -0.7184964967032954, 0.01936401715896252, 0.04172314507103417, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123675, '299', '2025-11-01 08:50:00.000036', -0.7188735070096602, -0.0009491542432243006, 0.04146582754525946, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123677, '299', '2025-11-02 08:50:00.000036', -0.7186807921247272, -0.02126157408434168, 0.04117564727705138, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123679, '299', '2025-11-03 08:50:00.000036', -0.7179187520083338, -0.04155715172128588, 0.04085284840772574, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123681, '299', '2025-11-04 08:50:00.000036', -0.7165882430083692, -0.06181982415372379, 0.04049770103222263, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123683, '299', '2025-11-05 08:50:00.000036', -0.7146905763510919, -0.08203356918557127, 0.04011050093115663, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123685, '299', '2025-11-06 08:50:00.000036', -0.712227516243885, -0.1021824185053311, 0.03969156928161763, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123687, '299', '2025-11-07 08:50:00.000036', -0.7092012775948263, -0.1222504706734002, 0.03924125234713857, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123689, '299', '2025-11-08 08:50:00.000036', -0.7056145233538318, -0.1422219040046962, 0.03875992114726496, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123691, '299', '2025-11-09 08:50:00.000036', -0.7014703614805006, -0.1620809893352105, 0.03824797110717948, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123693, '299', '2025-11-10 08:50:00.000036', -0.6967723415441448, -0.1818121026613591, 0.03770582168785127, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123695, '299', '2025-11-11 08:50:00.000036', -0.6915244509618317, -0.2013997376412876, 0.03713391599719737, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123697, '299', '2025-11-12 08:50:00.000036', -0.6857311108805944, -0.2208285179475728, 0.03653272038275718, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123699, '299', '2025-11-13 08:50:00.000036', -0.6793971717102837, -0.2400832094610753, 0.0359027240063975, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123701, '299', '2025-11-14 08:50:00.000036', -0.6725279083138238, -0.2591487322959667, 0.03524443840157723, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123703, '299', '2025-11-15 08:50:00.000036', -0.6651290148619374, -0.2780101726463219, 0.03455839701371499, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123705, '299', '2025-11-16 08:50:00.000036', -0.6572065993596673, -0.296652794445013, 0.03384515472421133, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123707, '299', '2025-11-17 08:50:00.000036', -0.6487671778522844, -0.3150620508258767, 0.03310528735869315, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123709, '299', '2025-11-18 08:50:00.000036', -0.6398176683184048, -0.3332235953806255, 0.03233939118004723, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123711, '299', '2025-11-19 08:50:00.000036', -0.6303653842583483, -0.3511232932022456, 0.03154808236682295, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123712, '299', '2025-11-20 08:50:00.000036', -0.6204180279859742, -0.3687472317070098, 0.03073199647758493, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123713, '299', '2025-11-21 08:50:00.000036', -0.6099836836323855, -0.3860817312276206, 0.02989178790180051, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123714, '299', '2025-11-22 08:50:00.000036', -0.5990708098700321, -0.4031133553703721, 0.02902812929784408, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123715, '299', '2025-11-23 08:50:00.000036', -0.5876882323658518, -0.4198289211295769, 0.02814171101870339, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123716, '299', '2025-11-24 08:50:00.000036', -0.575845135972178, -0.4362155087528431, 0.02723324052596995, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123717, '299', '2025-11-25 08:50:00.000036', -0.563551056664229, -0.4522604713511237, 0.02630344179269712, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123718, '299', '2025-11-26 08:50:00.000036', -0.5508158732330564, -0.4679514442477778, 0.0253530546957108, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123719, '299', '2025-11-27 08:50:00.000036', -0.5376497987429103, -0.4832763540611927, 0.02438283439795782, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123720, '299', '2025-11-28 08:50:00.000036', -0.5240633717620458, -0.4982234275158178, 0.02339355072148252, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123721, '299', '2025-11-29 08:50:00.000036', -0.5100674473760799, -0.5127811999767482, 0.02238598751162642, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.280103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125626, '606', '2025-11-27 00:00:00', 9.521148692379327, 0.05573540791663044, -0.3763578725798229, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:37:51.058785');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125660, '606', '2025-11-21 00:00:00', 9.517531333929869, 0.03487487938436246, -0.3817621590374783, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:37:51.13758');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120480, '699', '2025-09-05 00:00:00', 9.539334081065494, -0.3990506354256176, -0.3727703473202032, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.950998');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120493, '499', '2025-09-06 00:00:00', -1.193675481453361, -1.025325133757909, 0.007784872495509057, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.554514');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120504, '299', '2025-09-06 00:00:00', 0.01738792544700795, 0.7194497170492415, 0.008880686940233688, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.659879');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123796, '-32', '2025-10-31 08:50:00.000036', 39.07790623054861, -103.659038742109, -87.51566537181559, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123798, '-32', '2025-11-01 08:50:00.000036', 39.08033401727753, -103.6644338687508, -87.52220434488568, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123800, '-32', '2025-11-02 08:50:00.000036', 39.08276180180396, -103.6698289949928, -87.52874330886131, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123802, '-32', '2025-11-03 08:50:00.000036', 39.08518958413331, -103.6752241208169, -87.53528226374259, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123804, '-32', '2025-11-04 08:50:00.000036', 39.08761736426985, -103.6806192462066, -87.54182120952957, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123806, '-32', '2025-11-05 08:50:00.000036', 39.09004514221689, -103.6860143711477, -87.54836014622258, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123808, '-32', '2025-11-06 08:50:00.000036', 39.09247291797696, -103.6914094956278, -87.55489907382196, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123810, '-32', '2025-11-07 08:50:00.000036', 39.09490069155191, -103.6968046196371, -87.56143799232818, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123812, '-32', '2025-11-08 08:50:00.000036', 39.09732846294375, -103.7021997431687, -87.56797690174211, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123814, '-32', '2025-11-09 08:50:00.000036', 39.09975623215423, -103.7075948662182, -87.57451580206474, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123816, '-32', '2025-11-10 08:50:00.000036', 39.1021839991858, -103.7129899887844, -87.58105469329738, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123818, '-32', '2025-11-11 08:50:00.000036', 39.10461176404208, -103.7183851108693, -87.5875935754418, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123820, '-32', '2025-11-12 08:50:00.000036', 39.10703952672834, -103.723780232478, -87.5941324485001, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123822, '-32', '2025-11-13 08:50:00.000036', 39.10946728725227, -103.7291753536186, -87.60067131247494, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123824, '-32', '2025-11-14 08:50:00.000036', 39.11189504562464, -103.7345704743022, -87.60721016736949, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123826, '-32', '2025-11-15 08:50:00.000036', 39.11432280186011, -103.7399655945423, -87.61374901318743, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123828, '-32', '2025-11-16 08:50:00.000036', 39.11675055597786, -103.7453607143541, -87.62028784993309, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123830, '-32', '2025-11-17 08:50:00.000036', 39.11917830800231, -103.750755833754, -87.6268266776113, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123832, '-32', '2025-11-18 08:50:00.000036', 39.12160605796361, -103.7561509527584, -87.6333654962275, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123834, '-32', '2025-11-19 08:50:00.000036', 39.12403380589792, -103.7615460713825, -87.6399043057875, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123836, '-32', '2025-11-20 08:50:00.000036', 39.12646155184746, -103.7669411896391, -87.64644310629753, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123837, '-32', '2025-11-21 08:50:00.000036', 39.1288892958602, -103.7723363075372, -87.65298189776402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123838, '-32', '2025-11-22 08:50:00.000036', 39.13131703798928, -103.7777314250805, -87.65952068019342, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123839, '-32', '2025-11-23 08:50:00.000036', 39.13374477829177, -103.7831265422662, -87.66605945359208, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123840, '-32', '2025-11-24 08:50:00.000036', 39.13617251682776, -103.7885216590848, -87.6725982179659, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123841, '-32', '2025-11-25 08:50:00.000036', 39.1386002536586, -103.7939167755185, -87.67913697332038, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123842, '-32', '2025-11-26 08:50:00.000036', 39.14102798884532, -103.7993118915417, -87.68567571966031, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123843, '-32', '2025-11-27 08:50:00.000036', 39.14345572244709, -103.804707007121, -87.69221445698959, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123844, '-32', '2025-11-28 08:50:00.000036', 39.14588345451976, -103.8101021222159, -87.69875318531129, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123845, '-32', '2025-11-29 08:50:00.000036', 39.14831118511463, -103.8154972367797, -87.7052919046275, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:50:48.370578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125637, '606', '2025-11-25 00:00:00', 9.516152532301714, 0.04705948466899863, -0.3768929784429918, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:37:51.084482');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120275, '-32', '2025-11-27 00:00:00', 39.14256218178825, -103.8027213049132, -87.68980783943692, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:04.390783');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120481, '10', '2025-09-05 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.96248');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120488, '136199', '2025-09-06 00:00:00', 85.26989144406932, 39.36302719985952, -17.60934338232953, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.477089');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120499, '-168', '2025-09-06 00:00:00', -1.193653156713063, -1.025322478051611, 0.007781929022651518, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.612985');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125649, '606', '2025-11-24 00:00:00', 9.51480273124439, 0.04390182158348852, -0.3778838100972986, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:37:51.111215');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123877, '2000001', '2025-11-29 09:00:00', 2.689872940911583, 1.001556937760596, -0.4638380583774875, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.329993');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123887, '599', '2025-11-29 09:00:00', -1.456301036746414, 4.991919588866325, 0.01184625962726827, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.510295');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120482, '799', '2025-09-05 00:00:00', 10.2818540948361, 16.58165948133219, -0.07173702446593008, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.971989');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120487, '399', '2025-09-06 00:00:00', 0.9655876104985865, -0.2893782753640705, 1.332752721127411e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.457895');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120498, '-96', '2025-09-06 00:00:00', 0.3880472471892763, -0.04770321872661297, -0.02305310458083751, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.603972');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125656, '606', '2025-11-22 00:00:00', 9.515500611829138, 0.03819564771343584, -0.3805183728318601, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:37:51.128309');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123879, '399', '2025-11-29 09:00:00', 0.3848561664558011, 0.9082403463363298, -5.654089585144763e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.463865');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123895, '301', '2025-11-29 09:00:00', 0.3873387671307457, 0.907820492945588, -3.16989370823021e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.546123');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123901, '-96', '2025-11-29 09:00:00', 0.4657258068612113, -0.1098748525195465, -0.02837872231925975, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.571893');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120483, '299', '2025-09-05 00:00:00', 0.03766824737885625, 0.7187817829488731, 0.007701334204687538, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.981458');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120489, '136108', '2025-09-06 00:00:00', -37.18385507443794, -23.40240609338663, 23.5656611740715, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.495576');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120500, '999', '2025-09-06 00:00:00', 18.90949384529225, -29.76914437758723, -2.282709112776727, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.622224');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125671, '606', '2025-11-19 00:00:00', 9.5238213692041, 0.0257055433927676, -0.3831685529015291, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:37:51.174798');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123881, '136199', '2025-11-29 09:00:00', 85.22970028645179, 39.43552435983835, -17.53028546960587, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.477449');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123909, '10', '2025-11-29 09:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.605776');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120484, '-31', '2025-09-05 00:00:00', -31.69511918614798, -133.7508907040264, 96.77452449078797, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:09.991454');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120492, '136472', '2025-09-06 00:00:00', -46.00644875574783, -8.800090310044673, 24.17966461208397, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.543914');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120503, '799', '2025-09-06 00:00:00', 10.27847487399276, 16.58354947968585, -0.07168623911492494, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.64968');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125727, '606', '2025-11-18 00:00:00', 9.527276647786964, 0.01952215481328167, -0.3830784676781361, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:37:55.784398');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123883, '136108', '2025-11-29 09:00:00', -37.06785731756568, -23.55057746640768, 23.55466379640866, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.490152');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123911, '799', '2025-11-29 09:00:00', 9.991887802006454, 16.74058614361291, -0.06738688178484327, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.613704');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120485, '-32', '2025-09-05 00:00:00', 38.94105235797599, -103.3549260178848, -87.14706145275953, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:10.00052');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120490, '-61', '2025-09-06 00:00:00', -0.8172873441705286, 5.089176076851116, -0.03188093208010909, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.512904');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120501, '699', '2025-09-06 00:00:00', 9.539252537549954, -0.3934869676192941, -0.3728642732356401, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:28:58.631254');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120507, '2000001', '2025-09-07 00:00:00', 2.894496502611976, 0.2206766007354811, -0.5262539002207394, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.089617');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120508, '399', '2025-09-07 00:00:00', 0.9701043397405216, -0.2729280547612153, 1.167953702669208e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.125725');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120509, '136199', '2025-09-07 00:00:00', 85.26941625887942, 39.3638874515886, -17.60840664746867, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.144802');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120510, '136108', '2025-09-07 00:00:00', -37.1824840425491, -23.40416406877258, 23.56553318502478, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.164442');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120511, '-61', '2025-09-07 00:00:00', -0.8252145596648802, 5.08853107729493, -0.03010003979062689, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.179407');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120512, '599', '2025-09-07 00:00:00', -0.8352460898575598, 5.101722711690663, -0.002504947855405989, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.192501');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120513, '136472', '2025-09-07 00:00:00', -46.0062721687203, -8.802232591317479, 24.17934676220741, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.202071');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120514, '499', '2025-09-07 00:00:00', -1.183986348231805, -1.034703442928929, 0.007350741605750244, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.212061');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120515, '199', '2025-09-07 00:00:00', -0.2564998900611588, 0.2167917887941727, 0.04124284519703268, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.221705');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120516, '301', '2025-09-07 00:00:00', 0.9723489394234733, -0.2740067471796597, -4.25670042909544e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.2308');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120517, '899', '2025-09-07 00:00:00', 29.87939258244997, 0.1526169507803222, -0.691688617773014, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.240432');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120518, '-98', '2025-09-07 00:00:00', 19.65331157801631, -59.46545259811394, 2.179906787735927, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.249452');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120519, '-96', '2025-09-07 00:00:00', 0.3647063905550031, -0.03184442266990937, -0.02148845769457946, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.257733');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120520, '-168', '2025-09-07 00:00:00', -1.183963915089645, -1.034704190212413, 0.007347530995902277, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.265924');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120521, '999', '2025-09-07 00:00:00', 18.91221618154638, -29.7681571160514, -2.283594179073199, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.273872');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120522, '699', '2025-09-07 00:00:00', 9.539167537313885, -0.3879233442908668, -0.3729579643875546, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.282766');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120523, '10', '2025-09-07 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.291229');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120524, '799', '2025-09-07 00:00:00', 10.2750951178676, 16.5854388340633, -0.07163543277740021, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.299764');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120525, '299', '2025-09-07 00:00:00', -0.002906197437707557, 0.7195466301003252, 0.01005299097621172, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.310103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120526, '-31', '2025-09-07 00:00:00', -31.69751443341407, -133.7666123291561, 96.78588588486116, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.32245');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120527, '-32', '2025-09-07 00:00:00', 38.9459082588879, -103.3657162451454, -87.16014041723854, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:29:51.335');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120528, '2000001', '2025-09-08 00:00:00', 2.893410730075448, 0.2302784350301396, -0.5257499460814931, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.532327');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120529, '399', '2025-09-08 00:00:00', 0.9743421737538758, -0.2563996864953597, 9.990148329899423e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.563825');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120530, '136199', '2025-09-08 00:00:00', 85.26894104497971, 39.36474767811503, -17.6074699066563, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.585486');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120531, '136108', '2025-09-08 00:00:00', -37.18111292151929, -23.40592200003397, 23.56540513961591, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.600169');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120532, '-61', '2025-09-08 00:00:00', -0.8332252315888882, 5.08798722991328, -0.02808472856879433, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.609447');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120533, '599', '2025-09-08 00:00:00', -0.8427870298380429, 5.100851058995432, -0.002332611395437937, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.618963');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120534, '136472', '2025-09-08 00:00:00', -46.00609548838381, -8.804374866609262, 24.17902886339605, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.628756');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120535, '499', '2025-09-08 00:00:00', -1.174207096763541, -1.044003001477954, 0.006916051172376749, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.636784');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120536, '199', '2025-09-08 00:00:00', -0.2793956365938404, 0.1956642742945823, 0.04161625179222321, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.645588');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120537, '301', '2025-09-08 00:00:00', 0.9767581102670426, -0.2568921280566388, 1.201890635907737e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.654201');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120538, '899', '2025-09-08 00:00:00', 29.87934861818562, 0.1557759059370502, -0.6917522794621036, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.664737');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120539, '-98', '2025-09-08 00:00:00', 19.656384542137, -59.47268879931739, 2.18019165060358, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.674493');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120540, '-96', '2025-09-08 00:00:00', 0.3391702297111491, -0.01579688687660819, -0.01979450395244338, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.684714');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120541, '-168', '2025-09-08 00:00:00', -1.174185040111994, -1.044007143037556, 0.006912816153692107, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.693682');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120542, '999', '2025-09-08 00:00:00', 18.91494749858419, -29.76716102980302, -2.284481258688303, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.703943');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120543, '699', '2025-09-08 00:00:00', 9.539079178492024, -0.3823598089236209, -0.37305140934326, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.713206');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120544, '10', '2025-09-08 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.721041');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120545, '799', '2025-09-08 00:00:00', 10.27171501174199, 16.58732751670823, -0.07158451384296012, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.730223');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120546, '299', '2025-09-08 00:00:00', -0.02319801300169901, 0.7190722265479652, 0.01121731280299471, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.741345');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120547, '-31', '2025-09-08 00:00:00', -31.69871205353184, -133.7744731469038, 96.79156657297686, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.751447');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120548, '-32', '2025-09-08 00:00:00', 38.9483362033202, -103.371111359978, -87.1666798857654, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:30:40.761061');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120549, '2000001', '2025-09-09 00:00:00', 2.89229159706596, 0.2398776083569915, -0.5252399298940998, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.209506');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120550, '399', '2025-09-09 00:00:00', 0.9782998476982487, -0.2397974919832345, 8.299438024532462e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.230804');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120551, '136199', '2025-09-09 00:00:00', 85.26846580243316, 39.36560787946616, -17.60653315989337, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.247139');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120552, '136108', '2025-09-09 00:00:00', -37.17974171128743, -23.40767988713796, 23.56527703784362, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.264516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120553, '-61', '2025-09-09 00:00:00', -0.8413313057150723, 5.087563260025628, -0.02580775197126643, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.279083');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120554, '599', '2025-09-09 00:00:00', -0.8503257109469325, 5.099968181000674, -0.002160277146718534, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.29307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120555, '136472', '2025-09-09 00:00:00', -46.00591871467606, -8.806517135888019, 24.17871091564997, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.306517');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120556, '499', '2025-09-09 00:00:00', -1.164338268365945, -1.053222921101797, 0.006480833085658175, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.316601');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120557, '199', '2025-09-09 00:00:00', -0.3002560238850419, 0.1731092587908668, 0.04168631664637198, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.3268');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120558, '301', '2025-09-09 00:00:00', 0.9807442593375264, -0.239674846991427, 6.646712799946338e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.336585');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120559, '899', '2025-09-09 00:00:00', 29.87930475887485, 0.1589350617623648, -0.691816102293502, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.345708');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120560, '-98', '2025-09-09 00:00:00', 19.65945748290849, -59.47992494069477, 2.18047651081444, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.355652');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120561, '-96', '2025-09-09 00:00:00', 0.3110724691383802, 0.0003653671097881165, -0.01795111402707859, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.36418');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120562, '-168', '2025-09-09 00:00:00', -1.164317063603658, -1.053230362631463, 0.006477817001712399, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.374055');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120563, '999', '2025-09-09 00:00:00', 18.91768547505692, -29.76616406736095, -2.285379050327736, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.383432');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120564, '699', '2025-09-09 00:00:00', 9.538987521595917, -0.3767964004061021, -0.3731445953352185, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.39242');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120565, '10', '2025-09-09 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.402021');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120566, '799', '2025-09-09 00:00:00', 10.26833454852364, 16.58921550862088, -0.07153363162564245, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.411297');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120567, '299', '2025-09-09 00:00:00', -0.04347140269190074, 0.7180266714166531, 0.01237272464589564, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.42058');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120568, '-31', '2025-09-09 00:00:00', -31.69990967122091, -133.7823339680714, 96.79724725514517, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.42917');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120569, '-32', '2025-09-09 00:00:00', 38.95076414382293, -103.3765064755771, -87.17321934515287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:32:22.439105');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120570, '2000001', '2025-09-10 00:00:00', 2.891139102161951, 0.2494740088829498, -0.5247238549294105, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.85192');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120571, '399', '2025-09-10 00:00:00', 0.9819760609804423, -0.2231257752270376, 6.649427998420176e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.879632');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120572, '136199', '2025-09-10 00:00:00', 85.26799053129831, 39.36646805566939, -17.6055964071805, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.892374');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120573, '136108', '2025-09-10 00:00:00', -37.17837041179678, -23.4094377300517, 23.56514887970697, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.901205');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120574, '-61', '2025-09-10 00:00:00', -0.849549824997003, 5.087286062431547, -0.0232306271069725, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.909496');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120575, '599', '2025-09-10 00:00:00', -0.857862886984839, 5.099074278653281, -0.001987946022993616, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.918977');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120576, '136472', '2025-09-10 00:00:00', -46.00574184753906, -8.808659399121682, 24.17839291896963, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.927485');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120577, '499', '2025-09-10 00:00:00', -1.154380413191283, -1.062362315105149, 0.006045119419456965, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.935838');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120578, '199', '2025-09-10 00:00:00', -0.3190297326702818, 0.1493492853496034, 0.04146651951469184, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.944878');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120579, '301', '2025-09-10 00:00:00', 0.9843012223034774, -0.2223961329025803, 0.0001173852245369209, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.953228');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120590, '-32', '2025-09-10 00:00:00', 38.95319208045523, -103.3819015919167, -87.1797587954024, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:15.044915');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120593, '136199', '2025-09-11 00:00:00', 85.26751523162993, 39.36732820675166, -17.60465964851807, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.854312');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120604, '-168', '2025-09-11 00:00:00', -1.144315918108822, -1.071433728651388, 0.005607066166001354, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.057199');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125730, '606', '2025-11-17 00:00:00', 9.530304581888961, 0.01229906228639648, -0.3824098727944052, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:37:55.796583');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123885, '-61', '2025-11-29 09:00:00', -1.447162107162813, 4.984568995205216, -0.02127858415967075, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.500705');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123917, '-32', '2025-11-29 09:00:00', 39.14832804434981, -103.8155347028511, -87.70533731236905, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.640072');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120580, '899', '2025-09-10 00:00:00', 29.87926081216571, 0.1620939879378938, -0.6918803156433733, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.962207');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120594, '136108', '2025-09-11 00:00:00', -37.17699902299444, -23.41119552874273, 23.5650206652053, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.877808');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120605, '999', '2025-09-11 00:00:00', 18.92314933190146, -29.76419472558542, -2.28719448553553, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.067551');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120847, '-61', '2025-11-06 00:00:00', -1.272832528336685, 5.01800267371496, -0.02649316507674309, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.867681');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123889, '136472', '2025-11-29 09:00:00', -45.99121750318357, -8.980821735717935, 24.15267398393585, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.518821');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120581, '-98', '2025-09-10 00:00:00', 19.66253040039457, -59.48716102223644, 2.180761368368814, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.970987');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120597, '136472', '2025-09-11 00:00:00', -46.00556488691866, -8.810801656278615, 24.17807487335572, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.938602');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120608, '799', '2025-09-11 00:00:00', 10.26157247485227, 16.59298943709701, -0.07143196918077677, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.096773');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125842, '606', '2025-11-10 00:00:00', 9.523346880508575, -0.03809172493641089, -0.3750213781795687, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:38:16.747184');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125958, '606', '2025-11-26 00:00:00', 9.518388792009464, 0.05091105159652047, -0.3763484282764603, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:38:57.865021');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123891, '499', '2025-11-29 09:00:00', -0.1299078435933228, -1.46013139910183, -0.02741258878796321, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.527425');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123897, '899', '2025-11-29 09:00:00', 29.87461317060475, 0.4159308274080563, -0.6970021471075516, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.555341');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123903, '-168', '2025-11-29 09:00:00', -0.1299056795565278, -1.460110400103138, -0.02740431501341119, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.579748');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120582, '-96', '2025-09-10 00:00:00', 0.2799151426058487, 0.01651636373502639, -0.01593127012797437, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.979746');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120601, '899', '2025-09-11 00:00:00', 29.8792163324512, 0.1652524783981329, -0.691944735535593, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.012856');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125858, '606', '2025-11-08 00:00:00', 9.519753324917241, -0.04502730160408008, -0.3766004164307239, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:38:18.577388');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126129, '606', '2025-11-13 00:00:00', 9.531477516840672, -0.02046009850043962, -0.3766546646901228, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:20.727633');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123893, '199', '2025-11-29 09:00:00', -0.1281897226270365, 0.2890598674338037, 0.03538013480605905, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.536415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123899, '-98', '2025-11-29 09:00:00', 19.90944362412876, -60.06856509796387, 2.203648169227213, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.564154');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123905, '999', '2025-11-29 09:00:00', 19.1392904730723, -29.68520280580496, -2.3583102123978, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.588058');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120583, '-168', '2025-09-10 00:00:00', -1.154360514235089, -1.062372879084523, 0.006042560092936763, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.988244');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120596, '599', '2025-09-11 00:00:00', -0.8653973511026238, 5.098169861624489, -0.001815580546679038, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.921701');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120607, '10', '2025-09-11 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.087358');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125870, '606', '2025-11-07 00:00:00', 9.519525140917414, -0.04784429373155839, -0.3778819624791519, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:38:18.615798');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125902, '606', '2025-11-05 00:00:00', 9.522507670133757, -0.05409604605926063, -0.380469308372714, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:38:19.132168');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123907, '699', '2025-11-29 09:00:00', 9.520715312588607, 0.07615159008357243, -0.3803054930700019, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.596263');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126143, '606', '2025-11-12 00:00:00', 9.529020411765025, -0.02744286956300729, -0.3755650879180835, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:20.767639');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120584, '999', '2025-09-10 00:00:00', 18.92042173762177, -29.76517478683956, -2.286286679034808, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:14.996674');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120600, '301', '2025-09-11 00:00:00', 0.9874332515620143, -0.2050978084645038, 0.0001615284923215837, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.999275');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120611, '-32', '2025-09-11 00:00:00', 38.95562001327244, -103.3872967089707, -87.18629823651503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.131084');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125885, '606', '2025-11-06 00:00:00', 9.520474609766378, -0.05074117810923679, -0.3792397086313072, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:38:18.748712');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126194, '50326340', '2025-10-31 00:00:00', 1.441564630239064, -2.171056997855466, 1.14415467241933, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:44.836789');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123913, '299', '2025-11-29 09:00:00', -0.50996884765016, -0.5128809082309854, 0.02237892849067392, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.621871');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126250, '606', '2025-11-03 00:00:00', 9.528746980757093, -0.06337369055838875, -0.3818210830246433, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:45.565084');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120585, '699', '2025-09-10 00:00:00', 9.53889270235905, -0.3712331344794126, -0.3732375286025828, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:15.004234');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120599, '199', '2025-09-11 00:00:00', -0.3356894919553887, 0.1245979730634989, 0.04097181656986624, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.981976');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120610, '-31', '2025-09-11 00:00:00', -31.70230489908337, -133.7980556205591, 96.8086086016412, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.121558');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125904, '606', '2025-11-04 00:00:00', 9.525385922278291, -0.05823126816758792, -0.3813807847419829, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:38:19.149627');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126130, '606', '2025-11-14 00:00:00', 9.533050024705688, -0.01258260815856501, -0.3781178069908417, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:20.728285');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123915, '-31', '2025-11-29 09:00:00', -31.79735433029587, -134.4220178317543, 97.2594929015689, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:01:30.63178');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120586, '10', '2025-09-10 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:15.01284');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120591, '2000001', '2025-09-11 00:00:00', 2.889953244247028, 0.2590675247036976, -0.5242017245172007, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.794141');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120602, '-98', '2025-09-11 00:00:00', 19.66560329465524, -59.4943970439332, 2.18104622326726, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.026459');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123919, '2000001', '2025-11-29 10:00:00', 2.689713496426954, 1.001931775366626, -0.4637968181462881, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.766827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123928, '301', '2025-11-29 10:00:00', 0.386669342718383, 0.9081217791662314, -2.95796596440789e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.933539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123937, '299', '2025-11-29 10:00:00', -0.5093768460753537, -0.5134787519759657, 0.0223365566740769, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:23.015272');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125930, '606', '2025-11-02 00:00:00', 9.532139576757901, -0.06961688859567003, -0.3816970303813886, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:38:19.981983');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125986, '606', '2025-11-23 00:00:00', 9.51456247910096, 0.04107797030701694, -0.3791574253179922, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:00.056239');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126142, '606', '2025-11-11 00:00:00', 9.526141457492898, -0.03332539830005476, -0.3750011212808145, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:20.765691');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120587, '799', '2025-09-10 00:00:00', 10.26495370599171, 16.59110281923677, -0.07148275134440525, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:15.020466');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120595, '-61', '2025-09-11 00:00:00', -0.8579064973634648, 5.087196713304266, -0.0202963249738127, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.899096');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120606, '699', '2025-09-11 00:00:00', 9.538794800777268, -0.3656699829945592, -0.373330232503322, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.07614');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123920, '399', '2025-11-29 10:00:00', 0.3841843609212387, 0.90851680653224, -5.658010670824833e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.790319');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123929, '899', '2025-11-29 10:00:00', 29.8746102100218, 0.4160624102478437, -0.6970047749745725, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.944269');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123938, '-31', '2025-11-29 10:00:00', -31.79740421822396, -134.4223453748965, 97.25972957645492, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:23.022229');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121244, '136199', '2025-11-13 00:00:00', 85.23751545150544, 39.42146800217857, -17.54563186739369, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.189079');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126200, '90004920', '2025-10-31 00:00:00', -1.327482198347096, -0.2704846690194565, 0.08789586552393833, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:44.947847');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120588, '299', '2025-09-10 00:00:00', -0.06371025107538457, 0.7164105908501561, 0.01351830524570457, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:15.028407');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120592, '399', '2025-09-11 00:00:00', 0.9853694641059897, -0.206388860193297, 5.080324155857033e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.826712');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120603, '-96', '2025-09-11 00:00:00', 0.2449906110530355, 0.03243103472464736, -0.01369720947586854, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.04334');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123921, '136199', '2025-11-29 10:00:00', 85.22968039147784, 39.43556011847775, -17.53024641823191, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.810778');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123930, '-98', '2025-11-29 10:00:00', 19.90957158893657, -60.06886639937147, 2.203660029419189, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.954722');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123939, '-32', '2025-11-29 10:00:00', 39.14842919975948, -103.8157594992788, -87.70560975880923, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:23.029685');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126103, '606', '2025-11-16 00:00:00', 9.532457980168848, 0.004269358012292659, -0.3812384660446629, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:20.661442');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120589, '-31', '2025-09-10 00:00:00', -31.70110728642294, -133.790194792632, 96.80292793136638, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:33:15.036786');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120598, '499', '2025-09-11 00:00:00', -1.144334090270179, -1.071420298480491, 0.005608942430392434, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:07.960363');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120609, '299', '2025-09-11 00:00:00', -0.08389845927395538, 0.7142250722456993, 0.01465314063566285, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:08.106499');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120612, '2000001', '2025-09-12 00:00:00', 2.888734022511086, 0.2686580438438269, -0.5236735420463442, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.526416');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120613, '399', '2025-09-12 00:00:00', 0.988478662100814, -0.1895911316212206, 3.626763324780932e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.564483');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120614, '136199', '2025-09-12 00:00:00', 85.26703990347946, 39.36818833273922, -17.60372288390622, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.592658');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120615, '136108', '2025-09-12 00:00:00', -37.17562754483076, -23.41295328317935, 23.56489239433814, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.615405');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120616, '-61', '2025-09-12 00:00:00', -0.8664435074041655, 5.087363934867451, -0.01691380725733202, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.639656');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120617, '599', '2025-09-12 00:00:00', -0.8729305248217962, 5.097254830112631, -0.001643208031851794, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.658958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120618, '136472', '2025-09-12 00:00:00', -46.00538783276395, -8.812943907327902, 24.17775677880913, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.67316');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120619, '499', '2025-09-12 00:00:00', -1.134199867553943, -1.080395987989773, 0.005172334556582282, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.689548');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120620, '199', '2025-09-12 00:00:00', -0.3502287706431357, 0.09905804161048144, 0.04021817552057643, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.703581');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120621, '301', '2025-09-12 00:00:00', 0.9901547865698126, -0.1878188718720897, 0.0001961050590703047, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.715326');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120622, '899', '2025-09-12 00:00:00', 29.87917108359635, 0.168410765509357, -0.6920089555865351, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.725651');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120623, '-98', '2025-09-12 00:00:00', 19.6686761657472, -59.50163300577656, 2.18133107551052, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.736624');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120624, '-96', '2025-09-12 00:00:00', 0.2052327210675544, 0.04767655965958208, -0.01119332180471845, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.745482');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120625, '-168', '2025-09-12 00:00:00', -1.134183799632133, -1.080411955818164, 0.005171350434394103, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.753778');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120626, '999', '2025-09-12 00:00:00', 18.92586891969256, -29.76321703269186, -2.288092637759452, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.763245');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120627, '699', '2025-09-12 00:00:00', 9.538693954353592, -0.3601068935146928, -0.3734227480704662, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.771473');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120628, '10', '2025-09-12 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.77974');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120629, '799', '2025-09-12 00:00:00', 10.25819073085821, 16.59487540271316, -0.07138119063369484, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.787607');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120630, '299', '2025-09-12 00:00:00', -0.1040199584205041, 0.7114716639793662, 0.01577632491406496, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.795739');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120631, '-31', '2025-09-12 00:00:00', -31.70350250915095, -133.8059164518272, 96.81428926597039, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.804007');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120632, '-32', '2025-09-12 00:00:00', 38.95804794232658, -103.392691826714, -87.1928376684917, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:34:56.812093');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120633, '2000001', '2025-09-13 00:00:00', 2.887481436451416, 0.2782454542570946, -0.5231393109649752, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.734252');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120634, '399', '2025-09-13 00:00:00', 0.9913022339421941, -0.1727370708544685, 2.314818435048089e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.754085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120635, '136199', '2025-09-13 00:00:00', 85.26656454689564, 39.36904843365736, -17.60278611334502, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.774402');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120636, '136108', '2025-09-13 00:00:00', -37.17425597725889, -23.41471099333079, 23.56476406710513, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.789589');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120637, '-61', '2025-09-13 00:00:00', -0.8752403204880249, 5.087920991177842, -0.01291887031852158, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.806929');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120638, '599', '2025-09-13 00:00:00', -0.8804623250943932, 5.096329419324634, -0.001470821071435262, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.822006');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120639, '136472', '2025-09-13 00:00:00', -46.00521068502684, -8.815086152239587, 24.17743863533088, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.835049');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120640, '499', '2025-09-13 00:00:00', -1.123978321957238, -1.089288502248016, 0.004735328416655364, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.85506');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120641, '199', '2025-09-13 00:00:00', -0.3626585979505383, 0.07292006256817837, 0.03922218193485337, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.870338');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120642, '301', '2025-09-13 00:00:00', 0.9924889211806756, -0.1705924819039374, 0.0002190193459910988, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.888352');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120643, '899', '2025-09-13 00:00:00', 29.87912528402003, 0.1715692785875592, -0.6920727689685413, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.905059');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120644, '-98', '2025-09-13 00:00:00', 19.67174901372438, -59.50886890775898, 2.181615925099458, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.921383');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120645, '-96', '2025-09-13 00:00:00', 0.1589024248506377, 0.06132066636218379, -0.008331999910861265, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.937436');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120646, '-168', '2025-09-13 00:00:00', -1.123964682657749, -1.08930661520856, 0.00473542301981116, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.952907');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120647, '999', '2025-09-13 00:00:00', 18.92858819319333, -29.76223257317377, -2.288979897964448, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.969169');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120648, '699', '2025-09-13 00:00:00', 9.538590204670154, -0.3545437148740839, -0.3735151590120135, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.983461');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120649, '10', '2025-09-13 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:48.997776');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120650, '799', '2025-09-13 00:00:00', 10.25480861844505, 16.59676068939286, -0.07133038094139207, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:49.012182');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120651, '299', '2025-09-13 00:00:00', -0.1240587231241359, 0.7081523747210245, 0.01688696101176105, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:49.027366');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120652, '-31', '2025-09-13 00:00:00', -31.70470011657721, -133.8137772864115, 96.81996992435482, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:49.040769');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120653, '-32', '2025-09-13 00:00:00', 38.96047586766691, -103.3980869451224, -87.19937709133328, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:35:49.054952');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120654, '2000001', '2025-09-14 00:00:00', 2.886195485873777, 0.2878296438267823, -0.5225990347806401, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.577325');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120655, '399', '2025-09-14 00:00:00', 0.993838763029778, -0.1558312804690941, 1.160230340167483e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.606311');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120656, '136199', '2025-09-14 00:00:00', 85.26608916192477, 39.3699085095303, -17.60184933683443, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.633475');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120657, '136108', '2025-09-14 00:00:00', -37.17288432023434, -23.41646865916733, 23.564635683506, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.652982');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120658, '-61', '2025-09-14 00:00:00', -0.8844927334767122, 5.089212234496086, -0.007937518004770886, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.670877');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120659, '599', '2025-09-14 00:00:00', -0.8879926050941992, 5.095392071292631, -0.0012984712089872, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.696002');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120660, '136472', '2025-09-14 00:00:00', -46.0050334436616, -8.817228390984752, 24.17712044292205, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.709908');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120661, '499', '2025-09-14 00:00:00', -1.113670039401724, -1.098096961807877, 0.004297956809390573, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.726402');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120662, '199', '2025-09-14 00:00:00', -0.3730046125776627, 0.04636180456309563, 0.03800071507406263, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.741285');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120663, '301', '2025-09-14 00:00:00', 0.9944649720297786, -0.1534438525784974, 0.0002290158161279, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.75834');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120664, '899', '2025-09-14 00:00:00', 29.87907938011122, 0.1747281984390247, -0.6921363830901383, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.775075');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120665, '-98', '2025-09-14 00:00:00', 19.67482183863834, -59.51610474987397, 2.181900772035037, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.79195');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120666, '-96', '2025-09-14 00:00:00', 0.1028421734688025, 0.07094519588030757, -0.004964119377571821, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.806085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120667, '-168', '2025-09-14 00:00:00', -1.113659091865532, -1.098116773282114, 0.004299289519098662, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.824832');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120668, '999', '2025-09-14 00:00:00', 18.93131501608816, -29.76123807946229, -2.2898647361031, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.839985');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120669, '699', '2025-09-14 00:00:00', 9.538483492525907, -0.3489803216397274, -0.3736075251642236, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.858957');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120670, '10', '2025-09-14 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.873509');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120671, '799', '2025-09-14 00:00:00', 10.25142603429695, 16.59864530201366, -0.07127966684168661, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.890526');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120672, '299', '2025-09-14 00:00:00', -0.143998784930393, 0.7042696723373916, 0.01798416145371049, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.905111');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120673, '-31', '2025-09-14 00:00:00', -31.705897721316, -133.8216381242884, 96.8256505767956, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.92497');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120674, '-32', '2025-09-14 00:00:00', 38.96290378934034, -103.4034820641727, -87.20591650504038, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:37:03.943993');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120675, '2000001', '2025-09-15 00:00:00', 2.884876170893424, 0.2974105003661336, -0.5220527170604374, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.886743');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120676, '399', '2025-09-15 00:00:00', 0.9960868719688607, -0.1388784955302507, 1.679333358171769e-07, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.910706');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120677, '136199', '2025-09-15 00:00:00', 85.2656137486113, 39.37076856038122, -17.60091255437439, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.923632');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120678, '136108', '2025-09-15 00:00:00', -37.17151257371448, -23.41822628066033, 23.56450724354048, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.934612');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120679, '-61', '2025-09-15 00:00:00', -0.895697313334127, 5.0947296024513, -0.0007509259861238326, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.944853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120680, '599', '2025-09-15 00:00:00', -0.8955210429456473, 5.094443925274508, -0.001126114821285548, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.956848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120681, '136472', '2025-09-15 00:00:00', -46.00485610862437, -8.819370623535569, 24.17680220158378, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.970101');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120682, '499', '2025-09-15 00:00:00', -1.103275614859422, -1.106820489244781, 0.003860252713456058, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.980694');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120683, '199', '2025-09-15 00:00:00', -0.3813043983404519, 0.01954804496424344, 0.03657068812845071, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.988105');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120684, '301', '2025-09-15 00:00:00', 0.9961156949732016, -0.1363892336513048, 0.000225717555833669, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:20.997179');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120690, '699', '2025-09-15 00:00:00', 9.5383737445023, -0.3434166690072894, -0.3736998631173949, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.05981');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123922, '136108', '2025-11-29 10:00:00', -37.06779987512868, -23.55065055742598, 23.55465826641466, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.830176');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123931, '-96', '2025-11-29 10:00:00', 0.4650555868154942, -0.1092653592537162, -0.02833167764613886, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.964204');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126112, '606', '2025-11-15 00:00:00', 9.533414115170904, -0.004182499435606822, -0.3797303928434295, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:20.687039');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126258, '606', '2025-10-31 00:00:00', 9.53712177168984, -0.08495515627587777, -0.3797993026907895, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:45.643504');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120685, '899', '2025-09-15 00:00:00', 29.87903358271613, 0.177887269469815, -0.6922002042785563, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.008354');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120691, '10', '2025-09-15 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.069871');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123923, '-61', '2025-11-29 10:00:00', -1.447448855142979, 4.984466781751049, -0.02131400369738141, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.849768');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123932, '-168', '2025-11-29 10:00:00', -0.1293076557356094, -1.460112952834215, -0.02741679236136503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.974354');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126182, '606', '2025-11-09 00:00:00', 9.521098866790114, -0.04189747552434245, -0.3755916012425939, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:23.330626');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120686, '-98', '2025-09-15 00:00:00', 19.67789464053872, -59.52334053211607, 2.182185616318216, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.018716');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120692, '799', '2025-09-15 00:00:00', 10.24804292630111, 16.60052927786918, -0.07122886221616949, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.081019');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123924, '599', '2025-11-29 10:00:00', -1.456606785126546, 4.991846219279893, 0.01185340746481023, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.865113');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123933, '999', '2025-11-29 10:00:00', 19.13940379113227, -29.68516067370448, -2.358347062545148, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.983124');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126197, '90000030', '2025-10-31 00:00:00', -19.53157010178307, 27.41725251780838, -9.894267137011294, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:44.93231');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120687, '-96', '2025-09-15 00:00:00', 0.03085727216842987, 0.06776899873298717, -0.0008524433164493515, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.029369');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120693, '299', '2025-09-15 00:00:00', -0.163824245763165, 0.6998264823824597, 0.01906704911381847, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.091278');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123925, '136472', '2025-11-29 10:00:00', -45.99120981453179, -8.980910972935506, 24.15266056923574, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.883737');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123934, '699', '2025-11-29 10:00:00', 9.520700424499585, 0.07638351886303993, -0.3803089277709502, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.990698');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126257, '606', '2025-11-01 00:00:00', 9.535078722596262, -0.07689145793025459, -0.3809961474833681, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 14:39:45.63396');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120688, '-168', '2025-09-15 00:00:00', -1.103267554350163, -1.106841509783366, 0.003862951689928127, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.039891');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120694, '-31', '2025-09-15 00:00:00', -31.70709532332314, -133.8294989654353, 96.83133122329367, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.101874');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123926, '499', '2025-11-29 10:00:00', -0.129305002132836, -1.460132815045806, -0.02742740118453293, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.900533');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123935, '10', '2025-11-29 10:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.999301');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126272, '-98', '2025-10-29 00:00:00', 19.813075783016, -59.84165564629636, 2.194716148511672, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 15:57:20.826885');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126273, '-98', '2025-10-28 00:00:00', 19.81000395361289, -59.8344225011807, 2.194431420302914, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 15:57:24.277629');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126274, '-98', '2025-10-27 00:00:00', 19.80693210278001, -59.82718929599305, 2.194146689475517, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 15:57:28.379107');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126275, '-98', '2025-10-26 00:00:00', 19.80386023050025, -59.8199560307411, 2.193861956027886, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 15:57:31.650618');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120689, '999', '2025-09-15 00:00:00', 18.93405040086678, -29.76023907270737, -2.290757770780983, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.049778');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120695, '-32', '2025-09-15 00:00:00', 38.96533170739186, -103.4088771838428, -87.21245590961374, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:40:21.11414');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120696, '2000001', '2025-09-16 00:00:00', 2.883523491936086, 0.3069879116188604, -0.5215003614311507, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.665329');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120697, '399', '2025-09-16 00:00:00', 0.9980452559600576, -0.1218835828983889, -6.67363768114181e-07, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.692576');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120698, '136199', '2025-09-16 00:00:00', 85.2651383069981, 39.3716285862322, -17.59997576596485, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.710351');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120699, '136108', '2025-09-16 00:00:00', -37.17014073765833, -23.41998385778222, 23.56437874720832, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.727616');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120700, '-61', '2025-09-16 00:00:00', -0.9014161689653458, 5.094052643738495, -0.01057970184590417, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.744027');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120701, '599', '2025-09-16 00:00:00', -0.9030471259467567, 5.093484298403228, -0.0009537728994183333, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.759769');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120702, '136472', '2025-09-16 00:00:00', -46.0046786798729, -8.821512849865266, 24.17648391131717, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.770406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120703, '499', '2025-09-16 00:00:00', -1.092795652394507, -1.115458209243473, 0.003422249286598767, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.779301');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120704, '199', '2025-09-16 00:00:00', -0.3876051315902385, -0.007369266182918686, 0.03494884583564621, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.788359');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120705, '301', '2025-09-16 00:00:00', 0.9974746134866282, -0.1194358614971651, 0.000209579046608678, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.798162');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120706, '899', '2025-09-16 00:00:00', 29.87898764842011, 0.1810460652213247, -0.692264415899089, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.808535');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120707, '-98', '2025-09-16 00:00:00', 19.68096741947361, -59.53057625448091, 2.182470457949974, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.817373');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120708, '-96', '2025-09-16 00:00:00', -0.0466097283449537, 0.00962540971920703, 0.002822377457071301, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.825603');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120709, '-168', '2025-09-16 00:00:00', -1.092790601374574, -1.115479918908465, 0.00342640823727967, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.833993');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120710, '999', '2025-09-16 00:00:00', 18.93678760776638, -29.75924493045383, -2.291662289081993, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.842252');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120711, '699', '2025-09-16 00:00:00', 9.538260895814483, -0.3378526764329682, -0.3737922084052724, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.84998');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120712, '10', '2025-09-16 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.858208');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120713, '799', '2025-09-16 00:00:00', 10.24465942536803, 16.6024125880995, -0.07117796947783764, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.866864');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120714, '299', '2025-09-16 00:00:00', -0.1835192913346566, 0.6948261861749803, 0.02013475796226327, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.875387');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120715, '-31', '2025-09-16 00:00:00', -31.70829292255596, -133.8373598098307, 96.83701186385011, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.882915');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120716, '-32', '2025-09-16 00:00:00', 38.96775962186489, -103.4142723041118, -87.21899530505402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:44:22.890418');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120740, '136199', '2025-11-01 00:00:00', 85.24323802886337, 39.41116309026974, -17.55687707287094, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.922307');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120762, '136108', '2025-11-02 00:00:00', -37.10556281345329, -23.50253946783381, 23.55827582693042, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.635068');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120739, '399', '2025-11-01 00:00:00', 0.7771998055092569, 0.617437535922594, -4.048381185103434e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.902329');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120717, '2000001', '2025-10-31 00:00:00', 2.788189960328385, 0.7325729211491026, -0.4904657443180717, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.015548');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120741, '136108', '2025-11-01 00:00:00', -37.10693889405539, -23.50078400556595, 23.55840697313269, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.939179');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120763, '-61', '2025-11-02 00:00:00', -1.243420110344812, 5.025278770959465, -0.02848058582964481, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.645277');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120719, '136199', '2025-10-31 00:00:00', 85.24371473519616, 39.41030419223056, -17.55781413466873, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.050913');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120764, '599', '2025-11-02 00:00:00', -1.254310719407385, 5.036188927289951, 0.00714325644111811, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.65634');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120742, '-61', '2025-11-01 00:00:00', -1.236193304979117, 5.027207454569532, -0.02854865756253996, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.949381');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120765, '136472', '2025-11-02 00:00:00', -45.9962331632816, -8.922190020748165, 24.16146909174237, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.665607');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120720, '136108', '2025-10-31 00:00:00', -37.10831488386052, -23.49902849762753, 23.55853806295048, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.071885');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120743, '599', '2025-11-01 00:00:00', -1.24689190357496, 5.037654573731395, 0.006971178227952344, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.960502');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120766, '499', '2025-11-02 00:00:00', -0.5170581294281691, -1.409234192622345, -0.0168523640143943, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.673065');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120723, '136472', '2025-10-31 00:00:00', -45.99659681038491, -8.917906202392716, 24.16211022084558, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.138751');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120721, '-61', '2025-10-31 00:00:00', -1.229016712468862, 5.029177003377225, -0.02844120230526732, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.092654');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120767, '199', '2025-11-02 00:00:00', 0.3314705000645559, -0.219077815595308, -0.0483058567042859, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.68145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120745, '499', '2025-11-01 00:00:00', -0.5307015469175713, -1.405554347642044, -0.01644068687218836, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.978861');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120722, '599', '2025-10-31 00:00:00', -1.239471577744891, 5.039109717463927, 0.006799075162531602, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.112713');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120768, '301', '2025-11-02 00:00:00', 0.7685417993589089, 0.6303270509668006, -2.773674525191572e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.690769');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120746, '199', '2025-11-01 00:00:00', 0.3207424625338012, -0.2433262658826991, -0.0493035255369477, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.988226');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120747, '301', '2025-11-01 00:00:00', 0.7795087837890629, 0.6164335076338584, -8.035728578402428e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.996398');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120724, '499', '2025-10-31 00:00:00', -0.5442986639871635, -1.401751884238201, -0.01602757542823676, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.156625');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120725, '199', '2025-10-31 00:00:00', 0.3085918694283169, -0.2664964521202706, -0.05008259983037263, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.176614');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120738, '2000001', '2025-11-01 00:00:00', 2.785308523002956, 0.7418694238427759, -0.4896406198045508, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:40.865528');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120748, '899', '2025-11-01 00:00:00', 29.8764973192852, 0.3263287564552661, -0.6951994586065299, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.005479');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120726, '301', '2025-10-31 00:00:00', 0.7901127202798944, 0.6024094827758325, -0.0001307691590605688, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.196355');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120749, '-98', '2025-11-01 00:00:00', 19.82229114279719, -59.86335472114624, 2.195570317442329, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.013657');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120727, '899', '2025-10-31 00:00:00', 29.87655864327941, 0.3231703362893384, -0.6951360032355365, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.214141');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120750, '-96', '2025-11-01 00:00:00', 0.605336979354412, -0.4063995766758459, -0.04050947346363617, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.022436');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120728, '-98', '2025-10-31 00:00:00', 19.81921937759448, -59.85612175628471, 2.195285597079744, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.234115');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120751, '-168', '2025-11-01 00:00:00', -0.5307138077775754, -1.405568009748751, -0.01642737790268903, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.030526');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120729, '-96', '2025-10-31 00:00:00', 0.6020389602260114, -0.4125189280000401, -0.04040333106637915, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.253231');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120752, '999', '2025-11-01 00:00:00', 19.06212800187807, -29.71356941474582, -2.332909274165154, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.039942');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120730, '-168', '2025-10-31 00:00:00', -0.5443089159369932, -1.401768052654098, -0.01601542669333535, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.271313');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120753, '699', '2025-11-01 00:00:00', 9.529529264538112, -0.08181647263634423, -0.3779039490599292, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.04811');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120731, '999', '2025-10-31 00:00:00', 19.05940587376748, -29.71455979421305, -2.332001761495742, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.287963');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120754, '10', '2025-11-01 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.056584');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120732, '699', '2025-10-31 00:00:00', 9.52979168351811, -0.08738292940734564, -0.3778177248359096, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.305277');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120755, '799', '2025-11-01 00:00:00', 10.08858572278063, 16.68831321456043, -0.06883485311428968, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.064768');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120733, '10', '2025-10-31 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.321728');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120756, '299', '2025-11-01 00:00:00', -0.718801009508303, 0.006527987859938148, 0.04156436860102183, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.073711');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120734, '799', '2025-10-31 00:00:00', 10.09198766664577, 16.68646103290874, -0.06888590685335698, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.338786');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120757, '-31', '2025-11-01 00:00:00', -31.76337886380367, -134.1989618336455, 97.09831491810603, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.082209');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120735, '299', '2025-10-31 00:00:00', -0.7182142988784098, 0.02683738161367257, 0.04180953454617518, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.355423');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120758, '-32', '2025-11-01 00:00:00', 39.07944045714071, -103.6624481624629, -87.51979764057727, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:49:41.090739');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120737, '-32', '2025-10-31 00:00:00', 39.07701266959954, -103.6570530356788, -87.51325866415986, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.388035');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120761, '136199', '2025-11-02 00:00:00', 85.242761295578, 39.41202196435071, -17.55594000512709, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.623329');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120736, '-31', '2025-10-31 00:00:00', -31.76218142902924, -134.1911008613912, 97.0926345501092, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:48:45.372932');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123927, '199', '2025-11-29 10:00:00', -0.1294959366599915, 0.2886262809568472, 0.0354645063016039, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:22.916997');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (123936, '799', '2025-11-29 10:00:00', 9.991745574513462, 16.74066249986763, -0.06738475515964829, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 09:08:23.007753');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120769, '899', '2025-11-02 00:00:00', 29.87643586590871, 0.3294869059060558, -0.6952633048001667, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.700157');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120775, '10', '2025-11-02 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.748831');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126276, '-98', '2025-10-02 00:00:00', 19.73012879546143, -59.64633966795925, 2.187027564079369, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:00:06.465802');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126277, '-98', '2025-10-08 00:00:00', 19.74856283483888, -59.68974699536582, 2.188736304433092, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:00:10.560181');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120276, '2000001', '2025-11-29 00:00:00', 2.691305410937906, 0.9981824579226323, -0.4642087840663924, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.144645');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120948, '2000001', '2025-11-25 00:00:00', 2.706301363090271, 0.9620840615660703, -0.4681142074792976, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.666373');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120770, '-98', '2025-11-02 00:00:00', 19.82536288662487, -59.87058762591384, 2.19585503519279, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.708765');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120776, '799', '2025-11-02 00:00:00', 10.08518345871069, 16.69016470276091, -0.06878378292900937, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.756887');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126278, '50326340', '2025-10-01 00:00:00', 1.214735527049232, -2.358024281560887, 1.095686432674467, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:06:52.950391');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126279, '50326340', '2025-10-02 00:00:00', 1.22253343976977, -2.352212173730897, 1.097505896348306, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:06:54.557064');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126280, '50326340', '2025-10-03 00:00:00', 1.230316036840066, -2.346370602385401, 1.09931160882853, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:06:56.066505');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126286, '50326340', '2025-10-09 00:00:00', 1.276683840132311, -2.310705247925665, 1.109855230900496, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:05.098447');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126287, '50326340', '2025-10-10 00:00:00', 1.28435615226822, -2.304658844110781, 1.111563748196501, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:06.469915');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126292, '50326340', '2025-10-15 00:00:00', 1.322472599630138, -2.273992059801704, 1.119895413631493, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:13.983421');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126293, '50326340', '2025-10-16 00:00:00', 1.330046097392784, -2.267772125558321, 1.121519333876841, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:15.541771');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126298, '50326340', '2025-10-21 00:00:00', 1.36765858552542, -2.236242586673788, 1.129425091567396, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:22.750603');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126299, '50326340', '2025-10-22 00:00:00', 1.375129314122303, -2.229851098284714, 1.1309632501489, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:24.211597');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126304, '50326340', '2025-10-27 00:00:00', 1.412218072085201, -2.197468909068692, 1.138437334076803, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:32.323712');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126305, '50326340', '2025-10-28 00:00:00', 1.419582078205623, -2.190907932196838, 1.139888589377402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:33.560995');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126313, '90000030', '2025-10-06 00:00:00', -19.54406885300671, 27.4125439022383, -9.896967490628523, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:46.518901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126314, '90000030', '2025-10-07 00:00:00', -19.54357053208728, 27.41273463526811, -9.896860290814104, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:48.082855');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126319, '90000030', '2025-10-12 00:00:00', -19.54107689353965, 27.41368531288541, -9.896323273866917, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:56.387643');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126320, '90000030', '2025-10-13 00:00:00', -19.54057775883079, 27.4138748510402, -9.896215666901458, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:58.122428');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126321, '90000030', '2025-10-14 00:00:00', -19.54007848838915, 27.41406419012022, -9.896107992076768, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:59.761526');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126326, '90000030', '2025-10-19 00:00:00', -19.53758009928386, 27.41500790016375, -9.895568600050474, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:07.910817');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126327, '90000030', '2025-10-20 00:00:00', -19.53708001391582, 27.41519604525871, -9.895460518060899, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:09.538563');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126331, '90000030', '2025-10-24 00:00:00', -19.53507831325424, 27.41594663669563, -9.895027511464349, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:16.250315');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126332, '90000030', '2025-10-25 00:00:00', -19.53457754820272, 27.4161337874354, -9.89491909015116, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:18.09803');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126340, '90004920', '2025-10-03 00:00:00', -1.010239011703174, -1.316377477359963, 0.1418717956513347, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:31.618791');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126341, '90004920', '2025-10-04 00:00:00', -1.022933165129989, -1.28012222757292, 0.1400897619123395, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:33.23915');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126345, '90004920', '2025-10-08 00:00:00', -1.072994413116809, -1.134243342117815, 0.1328661759976484, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:39.706655');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126348, '90004920', '2025-10-11 00:00:00', -1.109686523307317, -1.023921003742048, 0.127342048497482, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:44.295938');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126351, '90004920', '2025-10-14 00:00:00', -1.145529121187068, -0.9128163623586828, 0.1217205496677707, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:49.467432');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126354, '90004920', '2025-10-17 00:00:00', -1.180411229365674, -0.8009478016598468, 0.1159971015209875, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:54.500975');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126361, '90004920', '2025-10-24 00:00:00', -1.257455553951902, -0.5372048990858639, 0.1022310095287952, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:05.574456');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126364, '90004920', '2025-10-27 00:00:00', -1.288378927466043, -0.4231859293595011, 0.09615476215008315, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:10.471426');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126367, '90004920', '2025-10-30 00:00:00', -1.317939351208525, -0.308719386311941, 0.08997681811986578, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:15.464853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120284, '199', '2025-11-29 00:00:00', -0.1163439937078501, 0.2927531406511263, 0.03459547429767884, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:03:48.275575');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120771, '-96', '2025-11-02 00:00:00', 0.6081749218252639, -0.3999713533961787, -0.04058482730810959, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.718428');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120777, '299', '2025-11-02 00:00:00', -0.7188179628743918, -0.01378658091530868, 0.04128625663959287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.764858');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120784, '-61', '2025-11-03 00:00:00', -1.250696915284209, 5.023392097260213, -0.02824022137641725, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.883904');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120790, '899', '2025-11-03 00:00:00', 29.87637383772787, 0.3326446235020907, -0.695327316995738, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.952996');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120796, '10', '2025-11-03 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:09.012761');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126281, '50326340', '2025-10-04 00:00:00', 1.238083208440315, -2.340499617157437, 1.101103536463394, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:06:57.586526');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126282, '50326340', '2025-10-05 00:00:00', 1.245834844741875, -2.334599268079155, 1.102881645697118, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:06:59.04269');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126283, '50326340', '2025-10-06 00:00:00', 1.253570835908212, -2.32866960558272, 1.104645903070543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:00.52');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126288, '50326340', '2025-10-11 00:00:00', 1.292012270001608, -2.29858338507108, 1.11325824780873, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:08.057954');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126289, '50326340', '2025-10-12 00:00:00', 1.299652083468949, -2.292478923658252, 1.114938696871604, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:09.52305');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126294, '50326340', '2025-10-17 00:00:00', 1.337602741576793, -2.261523459317399, 1.123129040777676, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:17.164799');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126295, '50326340', '2025-10-18 00:00:00', 1.345142422327888, -2.25524611638419, 1.124724502086315, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:18.694346');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126300, '50326340', '2025-10-23 00:00:00', 1.382582530114531, -2.223431215933797, 1.132487003494809, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:25.658124');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126301, '50326340', '2025-10-24 00:00:00', 1.39001812369533, -2.216982997414882, 1.13399632000039, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:27.082769');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126306, '50326340', '2025-10-29 00:00:00', 1.42692791308067, -2.184318914420664, 1.14132525147306, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:35.130218');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126307, '50326340', '2025-10-30 00:00:00', 1.43425546699173, -2.177701916059064, 1.142747289427725, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:36.668576');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126308, '90000030', '2025-10-01 00:00:00', -19.54655842539905, 27.41158724855822, -9.897502471827153, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:38.246855');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126309, '90000030', '2025-10-02 00:00:00', -19.5460607817711, 27.41177897782142, -9.89739561130402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:39.897103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126315, '90000030', '2025-10-08 00:00:00', -19.54307207561214, 27.41292516910373, -9.896753023141464, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:49.703758');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126316, '90000030', '2025-10-09 00:00:00', -19.54257348355007, 27.41311550376384, -9.896645687610544, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:51.366362');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126322, '90000030', '2025-10-15 00:00:00', -19.53957908218795, 27.41425333014696, -9.896000249392495, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:01.388077');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126323, '90000030', '2025-10-16 00:00:00', -19.53907954020128, 27.41444227114229, -9.89589243884823, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:03.130158');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126328, '90000030', '2025-10-21 00:00:00', -19.53657979264782, 27.41538399143609, -9.89535236820833, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:11.124465');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126329, '90000030', '2025-10-22 00:00:00', -19.53607943546028, 27.41557173871917, -9.895244150491974, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:12.857854');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126330, '90000030', '2025-10-23 00:00:00', -19.53557894233479, 27.41575928713126, -9.895135864910957, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:14.567777');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126335, '90000030', '2025-10-28 00:00:00', -19.53307443708357, 27.41669404693415, -9.894593419001279, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:23.306527');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126336, '90000030', '2025-10-29 00:00:00', -19.53257312801614, 27.41688040260039, -9.8944847262107, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:25.060197');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126337, '90000030', '2025-10-30 00:00:00', -19.53207168291855, 27.41706655955184, -9.894375965547788, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:26.730943');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126338, '90004920', '2025-10-01 00:00:00', -0.9846598088091906, -1.388635974062143, 0.1454088324771814, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:28.437059');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126339, '90004920', '2025-10-02 00:00:00', -0.9974801569018069, -1.352548418055331, 0.1436447422196701, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:30.058631');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126344, '90004920', '2025-10-07 00:00:00', -1.06059353034483, -1.17084292355491, 0.1346868425512991, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:38.162151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126347, '90004920', '2025-10-10 00:00:00', -1.097544823945578, -1.060782429891797, 0.1291939873570835, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:42.860741');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126350, '90004920', '2025-10-13 00:00:00', -1.133682779698058, -0.9499374125594662, 0.1236055074105177, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:47.454182');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126353, '90004920', '2025-10-16 00:00:00', -1.168897491281269, -0.8383202800033092, 0.1179164778923644, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:52.822562');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126356, '90004920', '2025-10-19 00:00:00', -1.203077376566301, -0.7259623167154895, 0.1121231596526942, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:57.549051');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126357, '90004920', '2025-10-20 00:00:00', -1.214221835711875, -0.6883534564106839, 0.1101684571813147, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:58.971071');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126360, '90004920', '2025-10-23 00:00:00', -1.246855663604987, -0.5750929812521663, 0.1042331233308789, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:04.064939');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126363, '90004920', '2025-10-26 00:00:00', -1.278219802770739, -0.461247532494141, 0.09819170686723398, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:08.881423');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126366, '90004920', '2025-10-29 00:00:00', -1.308240369303591, -0.3469175015181393, 0.09204711120960903, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:13.927223');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126370, '503', '2025-10-03 00:00:00', -1.035535388884362, 5.080787355067413, 0.002107646964816621, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:25.748541');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126373, '503', '2025-10-06 00:00:00', -1.051488885086555, 5.065070960754491, 0.002251943977921285, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:30.654042');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126376, '503', '2025-10-09 00:00:00', -1.073692403172939, 5.075323982938321, 0.003301070699754437, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:35.062218');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126380, '503', '2025-10-13 00:00:00', -1.104774566849523, 5.056374225920257, 0.003438133133217574, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:41.164235');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126383, '503', '2025-10-16 00:00:00', -1.125054326107513, 5.066242534821486, 0.004508147363656472, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:45.392282');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126386, '503', '2025-10-19 00:00:00', -1.155910587989208, 5.051402057684223, 0.004485161310087645, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:50.010969');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126389, '503', '2025-10-22 00:00:00', -1.165512238429354, 5.052818335851895, 0.005393271015115977, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:55.297702');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126392, '503', '2025-10-25 00:00:00', -1.201609106464078, 5.050135489333108, 0.005765366646254815, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:59.787273');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126395, '503', '2025-10-28 00:00:00', -1.212563523167814, 5.037982866118035, 0.00614230418440288, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:04.186586');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126399, '601', '2025-10-02 00:00:00', 9.53654534946957, -0.2497934206936257, -0.3747708303095722, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:10.133403');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126402, '601', '2025-10-05 00:00:00', 9.536702272190285, -0.2320576035371397, -0.3756344580206677, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:16.530547');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126405, '601', '2025-10-08 00:00:00', 9.5353302192677, -0.2143831133634682, -0.3763681835752785, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:20.8833');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126408, '601', '2025-10-11 00:00:00', 9.533453902539943, -0.1979228324547188, -0.3764235103707653, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:25.463018');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126411, '601', '2025-10-14 00:00:00', 9.532583195053098, -0.1823676170796317, -0.3760608006232803, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:29.862665');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126414, '601', '2025-10-17 00:00:00', 9.533031472545932, -0.1664020637698887, -0.3760048365116631, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:34.4938');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126417, '601', '2025-10-20 00:00:00', 9.533553356279317, -0.1491384212273615, -0.376652843987472, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:39.536177');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126420, '601', '2025-10-23 00:00:00', 9.53270080496323, -0.1312351577248715, -0.3775549666663788, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:44.224582');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126423, '601', '2025-10-26 00:00:00', 9.53068321460873, -0.1141573932047753, -0.3779317650394902, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:48.968173');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126426, '601', '2025-10-29 00:00:00', 9.529059204046899, -0.09831770327496088, -0.3776633396601295, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:53.59724');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126430, '301', '2025-10-03 00:00:00', 0.9882009436865894, 0.1666299053672708, -0.0001410608734219332, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:00.535887');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126433, '301', '2025-10-06 00:00:00', 0.9779995049644241, 0.218711364924812, 1.560017565037236e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:04.886022');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126436, '301', '2025-10-09 00:00:00', 0.9639395965486499, 0.2702714801842482, 0.0001529880502878934, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:10.103149');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126439, '301', '2025-10-12 00:00:00', 0.9463436434953688, 0.3202563893856292, 0.0001946616198121753, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:14.630689');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120966, '299', '2025-11-25 00:00:00', -0.5681277904256524, -0.4463955515550024, 0.02664809328748715, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.958594');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120772, '-168', '2025-11-02 00:00:00', -0.5170720092245664, -1.409245014037114, -0.01683806865554553, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.725728');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120778, '-31', '2025-11-02 00:00:00', -31.76457629446645, -134.2068228081331, 97.10399528020311, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.77184');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126284, '50326340', '2025-10-07 00:00:00', 1.261291072095857, -2.322710680501226, 1.106396275221785, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:02.009107');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126285, '50326340', '2025-10-08 00:00:00', 1.268995443455369, -2.31672254406963, 1.108132728886889, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:03.60974');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126290, '50326340', '2025-10-13 00:00:00', 1.307275482805691, -2.286345513130528, 1.116605062620817, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:11.112337');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126291, '50326340', '2025-10-14 00:00:00', 1.314882358147272, -2.280183207153625, 1.11825731239402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:12.60803');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126296, '50326340', '2025-10-19 00:00:00', 1.352665029796996, -2.248940152476251, 1.126305685660472, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:19.971209');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126297, '50326340', '2025-10-20 00:00:00', 1.360170454141321, -2.242605623724418, 1.127872559463961, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:21.46829');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126302, '50326340', '2025-10-25 00:00:00', 1.397435985069724, -2.210506500940084, 1.135491168170554, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:28.529951');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126303, '50326340', '2025-10-26 00:00:00', 1.404836004455668, -2.204001785140788, 1.136971516620574, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:30.075152');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126310, '90000030', '2025-10-03 00:00:00', -19.54556300275137, 27.41197050780461, -9.897288682922536, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:41.386946');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126311, '90000030', '2025-10-04 00:00:00', -19.54506508830617, 27.41216183852396, -9.897181686682758, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:43.12516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126312, '90000030', '2025-10-05 00:00:00', -19.54456703840223, 27.41235296999613, -9.897074622584743, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:44.802479');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126317, '90000030', '2025-10-10 00:00:00', -19.54207475587046, 27.41330563926762, -9.896538284221245, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:53.103286');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126318, '90000030', '2025-10-11 00:00:00', -19.54157589254339, 27.41349557563475, -9.896430812973433, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:07:54.738162');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126324, '90000030', '2025-10-17 00:00:00', -19.53857986240419, 27.41463101312846, -9.895784560443504, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:04.609041');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126325, '90000030', '2025-10-18 00:00:00', -19.53808004877269, 27.41481955612801, -9.895676614177786, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:06.322551');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126333, '90000030', '2025-10-26 00:00:00', -19.53407664716569, 27.41632073937345, -9.894810600970327, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:19.977715');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126334, '90000030', '2025-10-27 00:00:00', -19.53357561012993, 27.41650749253234, -9.894702043920754, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:21.787032');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126342, '90004920', '2025-10-05 00:00:00', -1.035559287582821, -1.243781842208917, 0.1382984106793147, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:34.884818');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126343, '90004920', '2025-10-06 00:00:00', -1.048113930558506, -1.207355605105557, 0.1364975130726103, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:36.507192');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126346, '90004920', '2025-10-09 00:00:00', -1.085312801675926, -1.097556556873958, 0.131035295012543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:41.217885');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126349, '90004920', '2025-10-12 00:00:00', -1.121733870863255, -0.9869725158639063, 0.125479283235134, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:45.843559');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126352, '90004920', '2025-10-15 00:00:00', -1.15726874335964, -0.875610268469187, 0.1198242532626731, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:51.169031');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126355, '90004920', '2025-10-18 00:00:00', -1.191805865470243, -0.7634945015318426, 0.1140660221717412, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:08:55.972097');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126358, '90004920', '2025-10-21 00:00:00', -1.225235439991216, -0.6506704022318094, 0.1082018828711902, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:00.685772');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126359, '90004920', '2025-10-22 00:00:00', -1.236114539025411, -0.6129159054886848, 0.1062234310440264, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:02.534422');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126362, '90004920', '2025-10-25 00:00:00', -1.267911187087797, -0.4992551704031006, 0.1002171681826811, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:07.060106');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126365, '90004920', '2025-10-28 00:00:00', -1.298386395839492, -0.3850744895769339, 0.09410649922467228, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:09:11.974747');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126369, '503', '2025-10-02 00:00:00', -1.022252139289455, 5.083752987337718, 0.002088466391473048, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:24.170079');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126372, '503', '2025-10-05 00:00:00', -1.049964212676069, 5.067488713922691, 0.002040990019249516, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:29.083607');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126375, '503', '2025-10-08 00:00:00', -1.061591547782393, 5.072576240328433, 0.003044416077254873, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:33.786465');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126379, '503', '2025-10-12 00:00:00', -1.103041373651409, 5.059662624817804, 0.003260800517440209, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:39.640954');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126382, '503', '2025-10-15 00:00:00', -1.11354644755264, 5.062979724252076, 0.004220690433402789, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:44.082178');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126385, '503', '2025-10-18 00:00:00', -1.149761593261824, 5.058646528111541, 0.004520457024615427, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:48.551598');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126388, '503', '2025-10-21 00:00:00', -1.159798531801605, 5.04832685826115, 0.004973011166372261, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:53.479103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126391, '503', '2025-10-24 00:00:00', -1.189835834802238, 5.055759213632296, 0.005817846061524295, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:58.220625');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126394, '503', '2025-10-27 00:00:00', -1.211011107848448, 5.037794580578357, 0.005824083314265355, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:02.56208');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126397, '503', '2025-10-30 00:00:00', -1.227588418473613, 5.046142724383647, 0.006904822481517092, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:07.177213');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126398, '601', '2025-10-01 00:00:00', 9.536249968809704, -0.2554624502192632, -0.3745960759100165, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:08.64904');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126401, '601', '2025-10-04 00:00:00', 9.536818884706602, -0.2380441735397498, -0.3753177493526335, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:14.900757');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126404, '601', '2025-10-07 00:00:00', 9.535924324266496, -0.2201715313901404, -0.37618709075107, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:19.281889');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126407, '601', '2025-10-10 00:00:00', 9.534029526020374, -0.2032621030623626, -0.3764805091209737, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:23.865891');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126410, '601', '2025-10-13 00:00:00', 9.53270670495922, -0.187526700633321, -0.3761847616312069, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:28.36387');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126413, '601', '2025-10-16 00:00:00', 9.532787904191888, -0.171850413831617, -0.3759492840093506, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:32.974173');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126416, '601', '2025-10-19 00:00:00', 9.533481400114216, -0.1550305324242433, -0.3763693505617604, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:37.186907');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126419, '601', '2025-10-22 00:00:00', 9.5331682317642, -0.1371774944476331, -0.3772802254022291, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:42.911344');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126422, '601', '2025-10-25 00:00:00', 9.531395665524277, -0.1196976002739824, -0.3778915216067029, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:47.416293');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126425, '601', '2025-10-28 00:00:00', 9.529465588988277, -0.1035027806422151, -0.3777950900169503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:52.007083');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126429, '301', '2025-10-02 00:00:00', 0.9908000662212149, 0.1493238259203012, -0.0001832051230080345, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:58.935482');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126432, '301', '2025-10-05 00:00:00', 0.9818205619436661, 0.2013549446738024, -3.889280802141457e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:03.490034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126435, '301', '2025-10-08 00:00:00', 0.9690521446319774, 0.2532127219704841, 0.0001148353712287354, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:08.475038');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126438, '301', '2025-10-11 00:00:00', 0.9525511337093785, 0.3038182520255277, 0.0001940298237668209, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:13.26464');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126441, '301', '2025-10-14 00:00:00', 0.9330891773334623, 0.3524137889970315, 0.0001576415881976854, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:17.630586');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126444, '301', '2025-10-17 00:00:00', 0.9115880121897096, 0.3989594224836327, 3.170774066980737e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:21.931768');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126447, '301', '2025-10-20 00:00:00', 0.8886204977734119, 0.4439014112340778, -0.0001215637881580076, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:26.451699');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126450, '301', '2025-10-23 00:00:00', 0.8643015354495074, 0.487814007215695, -0.0002383252539514391, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:31.02361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126453, '301', '2025-10-26 00:00:00', 0.8383645752527851, 0.5311480124148813, -0.0002742231517407101, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:35.445645');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126456, '301', '2025-10-29 00:00:00', 0.8103015449431131, 0.5740815433683999, -0.0002148798007905304, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:39.567104');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126458, '606', '2025-10-02 00:00:00', 9.53610259258644, -0.2415233547615579, -0.3790220620110355, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:42.90321');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126461, '606', '2025-10-05 00:00:00', 9.527936037272518, -0.228604659870867, -0.3765821119897466, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:47.646987');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126464, '606', '2025-10-08 00:00:00', 9.528502936111584, -0.219795389887554, -0.3728936010240709, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:52.112835');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126467, '606', '2025-10-11 00:00:00', 9.536628663083368, -0.2056726048891029, -0.3726991427950287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:56.84097');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126470, '606', '2025-10-14 00:00:00', 9.54166024647564, -0.1826450867692815, -0.3767904582889836, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:01.52586');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126473, '606', '2025-10-17 00:00:00', 9.536168952966563, -0.1587548972982234, -0.3802808049363802, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:06.458384');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126476, '606', '2025-10-20 00:00:00', 9.52665420518883, -0.1430666424521348, -0.3791424176773721, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:10.576885');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126479, '606', '2025-10-23 00:00:00', 9.523874782728274, -0.1339542861061779, -0.3752847246208213, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:15.180965');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120773, '999', '2025-11-02 00:00:00', 19.06484167929358, -29.7125823134367, -2.33380781539881, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.733997');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120779, '-32', '2025-11-02 00:00:00', 39.08186824247709, -103.6678432888542, -87.52633660790015, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.779042');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120993, '136108', '2025-11-23 00:00:00', -37.07664414102048, -23.5393936010608, 23.55550873073735, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.842443');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120783, '136108', '2025-11-03 00:00:00', -37.10418664205082, -23.50429488440583, 23.55814462434406, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.871072');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120789, '301', '2025-11-03 00:00:00', 0.7572010756451402, 0.6440545638480639, 2.404383940832648e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.942396');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120795, '699', '2025-11-03 00:00:00', 9.528995198303027, -0.07068283055517267, -0.3780764116733941, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:09.003278');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126368, '503', '2025-10-01 00:00:00', -1.009644267953746, 5.081591654197615, 0.001864135698033032, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:22.571178');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126371, '503', '2025-10-04 00:00:00', -1.045325776863006, 5.074020166406002, 0.002032446815728987, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:27.334138');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126374, '503', '2025-10-07 00:00:00', -1.054210905384106, 5.067684981084227, 0.002638137359599722, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:32.168771');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126377, '503', '2025-10-10 00:00:00', -1.087154218415763, 5.07308153790231, 0.003347883413039517, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:36.544228');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126378, '503', '2025-10-11 00:00:00', -1.097665750188756, 5.066602559060092, 0.003275877644508311, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:38.198664');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126381, '503', '2025-10-14 00:00:00', -1.107007749387173, 5.058232009604549, 0.003805135353734659, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:42.59794');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126384, '503', '2025-10-17 00:00:00', -1.138584920860315, 5.064742465408924, 0.004584875935470196, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:47.001977');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126387, '503', '2025-10-20 00:00:00', -1.157956580686991, 5.04728219629806, 0.004628817661569152, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:51.543778');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126390, '503', '2025-10-23 00:00:00', -1.176350117896137, 5.056511682637144, 0.005709393170941096, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:12:56.713788');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126393, '503', '2025-10-26 00:00:00', -1.208554903502306, 5.042694827333061, 0.005713605048207588, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:01.230159');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126396, '503', '2025-10-29 00:00:00', -1.217483295403581, 5.042110871524461, 0.006562682885449286, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:05.595546');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126400, '601', '2025-10-03 00:00:00', 9.536754493017291, -0.2439747512938504, -0.3750192503262526, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:13.287848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126403, '601', '2025-10-06 00:00:00', 9.536396935109861, -0.2260794363475968, -0.3759347428708907, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:17.924709');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126406, '601', '2025-10-09 00:00:00', 9.534676175082788, -0.2087441084774248, -0.3764659337889701, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:22.351512');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126409, '601', '2025-10-12 00:00:00', 9.53300139785188, -0.1926933609384417, -0.3763158150957382, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:26.891949');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126412, '601', '2025-10-15 00:00:00', 9.532621090189528, -0.1771593219880183, -0.3759737903929362, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:31.42653');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126415, '601', '2025-10-18 00:00:00', 9.533286105053469, -0.1607943350344441, -0.3761469675367439, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:35.713373');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126418, '601', '2025-10-21 00:00:00', 9.533455682745615, -0.143166735533625, -0.3769680939843368, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:41.266672');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126421, '601', '2025-10-24 00:00:00', 9.532090767082288, -0.1253956480035165, -0.3777644548245929, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:45.859809');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126424, '601', '2025-10-27 00:00:00', 9.530020658961355, -0.1087682481327976, -0.3778933612960941, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:50.389878');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126427, '601', '2025-10-30 00:00:00', 9.528821860742797, -0.0931598529609405, -0.3775285226321851, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:55.398987');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126428, '301', '2025-10-01 00:00:00', 0.9930382127669473, 0.1320853439407282, -0.0002166253614692985, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:13:57.476848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126431, '301', '2025-10-04 00:00:00', 0.9852153050255608, 0.1839828806829048, -9.212077031249618e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:02.038845');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126434, '301', '2025-10-07 00:00:00', 0.9737429760912364, 0.2360117635605294, 6.798868920571634e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:06.939925');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126437, '301', '2025-10-10 00:00:00', 0.9584286797792225, 0.2871499797048387, 0.0001799287466648944, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:11.881464');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126440, '301', '2025-10-13 00:00:00', 0.9398442256785863, 0.3364549012351418, 0.0001821519219949969, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:16.087986');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126443, '301', '2025-10-16 00:00:00', 0.9189367090394776, 0.3836500898145722, 8.00992461651873e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:20.466477');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126446, '301', '2025-10-19 00:00:00', 0.8964231749640141, 0.4290628903971653, -7.162617646293385e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:24.966275');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126449, '301', '2025-10-22 00:00:00', 0.8725680449089179, 0.4732584452541193, -0.0002067547286383155, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:29.275424');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126452, '301', '2025-10-25 00:00:00', 0.8472180406071015, 0.5167499816804046, -0.0002728044560632167, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:33.942851');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126455, '301', '2025-10-28 00:00:00', 0.8199290129718396, 0.5598177461568701, -0.0002447560876851365, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:38.304052');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126457, '606', '2025-10-01 00:00:00', 9.539365608031964, -0.2478840685952459, -0.3788300058513399, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:41.079933');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126460, '606', '2025-10-04 00:00:00', 9.529971766320353, -0.2320291584203821, -0.3777816635645517, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:46.088692');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126463, '606', '2025-10-07 00:00:00', 9.527167980927436, -0.2228713639472237, -0.3739369110060752, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:50.564483');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126466, '606', '2025-10-10 00:00:00', 9.533630735772663, -0.2114299029105769, -0.3721936559893068, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:55.213449');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126469, '606', '2025-10-13 00:00:00', 9.541051133408814, -0.1910093473244126, -0.3751778037393396, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:59.921151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126472, '606', '2025-10-16 00:00:00', 9.539018025014743, -0.1660797292413128, -0.3795478874404186, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:04.938013');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126475, '606', '2025-10-19 00:00:00', 9.529517295092077, -0.1472516052943911, -0.380029637323089, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:09.219142');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126478, '606', '2025-10-22 00:00:00', 9.52365889985959, -0.1367651083773586, -0.3765736216322121, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:13.621918');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126481, '606', '2025-10-25 00:00:00', 9.527474014397924, -0.1270913903318571, -0.3736628455384804, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:18.140905');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126484, '606', '2025-10-28 00:00:00', 9.535785783510347, -0.1096367351845757, -0.3752139201716975, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:22.440372');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121095, '2000001', '2025-11-18 00:00:00', 2.731292279819555, 0.8984713923231362, -0.4747319726188406, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.213242');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120774, '699', '2025-11-02 00:00:00', 9.529263818053678, -0.0762497805230477, -0.3779901785697563, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:50:26.740647');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126442, '301', '2025-10-15 00:00:00', 0.9261109195065178, 0.368140903677339, 0.0001228934649268382, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:19.061595');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126445, '301', '2025-10-18 00:00:00', 0.9040803112611021, 0.4140896562974635, -1.971922749736854e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:23.473875');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126448, '301', '2025-10-21 00:00:00', 0.8806708676032189, 0.4586266790075714, -0.0001672729914287366, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:27.856113');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126451, '301', '2025-10-24 00:00:00', 0.8558572259818035, 0.5023076082838304, -0.0002606567611676202, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:32.487051');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126454, '301', '2025-10-27 00:00:00', 0.8292756830303992, 0.5455044695877959, -0.0002647781775183367, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:36.852587');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126459, '606', '2025-10-03 00:00:00', 9.53281864970696, -0.2362640455538037, -0.3786441854629402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:44.451835');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126462, '606', '2025-10-06 00:00:00', 9.526964610901182, -0.2256767157510786, -0.3752325761656743, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:49.097373');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126465, '606', '2025-10-09 00:00:00', 9.53077111415128, -0.2160801451558627, -0.3722730188773168, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:53.781097');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126468, '606', '2025-10-12 00:00:00', 9.539259541058524, -0.1988040301167427, -0.3737413572303334, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:14:58.320071');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126471, '606', '2025-10-15 00:00:00', 9.540949831076986, -0.1741757534305472, -0.3783261317723288, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:03.095721');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126474, '606', '2025-10-18 00:00:00', 9.532840448674827, -0.1524525832176321, -0.3804388531600604, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:07.796039');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126477, '606', '2025-10-21 00:00:00', 9.524619471089762, -0.1396771978067568, -0.377927563889577, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:12.188888');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126480, '606', '2025-10-24 00:00:00', 9.525215368665654, -0.1308516935898049, -0.3742584153468934, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:16.548367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126483, '606', '2025-10-27 00:00:00', 9.533241057804778, -0.1165629454262309, -0.3741477960433834, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:20.963412');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126486, '606', '2025-10-30 00:00:00', 9.537955187012125, -0.09341671691014145, -0.3782770673227939, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:25.297542');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121164, '136472', '2025-11-17 00:00:00', -45.99349369133683, -8.954317693021595, 24.15665439185731, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.360683');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120780, '2000001', '2025-11-03 00:00:00', 2.779446722487429, 0.760435947800324, -0.487972982737863, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.818462');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120786, '136472', '2025-11-03 00:00:00', -45.99605119717489, -8.924331918677595, 24.16114845386974, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.908902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120792, '-96', '2025-11-03 00:00:00', 0.6105483654249939, -0.3932376562100181, -0.04062918418916456, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.973491');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120798, '299', '2025-11-03 00:00:00', -0.7182653906579718, -0.03409022722252671, 0.04097543318765887, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:09.031564');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126482, '606', '2025-10-26 00:00:00', 9.530301827453203, -0.1223831098887011, -0.373612982938992, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:19.535811');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126485, '606', '2025-10-29 00:00:00', 9.537468367716903, -0.1017998533901747, -0.3766640562354557, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:15:23.856559');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124255, '2000001', '2025-11-29 14:00:00', 2.689075156279716, 1.003430916203794, -0.4636317602740871, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.380279');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124265, '599', '2025-11-29 14:00:00', -1.457829764998401, 4.991552556215755, 0.01188199772896078, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.602221');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124275, '899', '2025-11-29 14:00:00', 29.8745983702116, 0.4165887440965976, -0.697015290750276, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.648432');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124285, '699', '2025-11-29 14:00:00', 9.520640819987399, 0.07731123014536835, -0.380322663085329, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.690648');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124295, '-32', '2025-11-29 14:00:00', 39.14883382137336, -103.8166586849795, -87.70669954441354, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.735066');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124303, '136108', '2025-11-29 15:00:00', -37.06751266056072, -23.55101601131818, 23.55463061497423, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.832228');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124313, '199', '2025-11-29 15:00:00', -0.1359957138845599, 0.2863896631639285, 0.03587788047001192, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.876044');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124323, '-168', '2025-11-29 15:00:00', -0.1263065222080396, -1.460137632169339, -0.0274854255736161, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.916782');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124333, '299', '2025-11-29 15:00:00', -0.5064064949916135, -0.5164575118970915, 0.02212424447761812, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.957858');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120781, '399', '2025-11-03 00:00:00', 0.7547708067485719, 0.6438565553926032, -4.324305265293866e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.839797');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120787, '499', '2025-11-03 00:00:00', -0.5033694839581472, -1.412790776946929, -0.01726256709669952, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.919493');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120793, '-168', '2025-11-03 00:00:00', -0.5033845518929834, -1.41279849491985, -0.01724748406727714, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.983581');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120799, '-31', '2025-11-03 00:00:00', -31.76577372101253, -134.2146837848349, 97.10967563640207, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:09.039893');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126509, '606', '2025-11-20 00:00:00', 9.520423710711803, 0.03078920632248144, -0.382697443103709, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 16:40:15.723874');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124257, '399', '2025-11-29 14:00:00', 0.3814951155661225, 0.9096177783581177, -5.673630043378273e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.547115');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124267, '136472', '2025-11-29 14:00:00', -45.99117905826179, -8.981267921669652, 24.15260690958596, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.611908');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124277, '-98', '2025-11-29 14:00:00', 19.91008344781246, -60.07007160396318, 2.203707470140983, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.65712');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124287, '10', '2025-11-29 14:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.699889');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120782, '136199', '2025-11-03 00:00:00', 85.24228453534545, 39.41288081449324, -17.55500293143651, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.856971');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120788, '199', '2025-11-03 00:00:00', 0.3406686941014272, -0.1938192312809406, -0.04708532068922267, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.931062');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120794, '999', '2025-11-03 00:00:00', 19.06755414697987, -29.71158919121384, -2.334695097714185, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.993842');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120800, '-32', '2025-11-03 00:00:00', 39.08429602561453, -103.6732384148341, -87.53287556612864, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:09.049048');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126559, '199', '2025-12-01 00:00:00', -0.1774485621188836, 0.2688708922426482, 0.03824823650893198, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.962157');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126602, '799', '2025-12-01 00:00:00', 9.986340417510853, 16.74356314461811, -0.06730407182768969, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.102778');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126515, '50326340', '2025-12-01 00:00:00', 1.658429755410229, -1.951567732082771, 1.180352043722802, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.397792');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126563, '601', '2025-12-01 00:00:00', 9.518874232166654, 0.08527149866069206, -0.3803732238838164, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.974791');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126517, '90000030', '2025-12-01 00:00:00', -19.51595357013499, 27.42291869761905, -9.89085978793939, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.58266');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126519, '90004920', '2025-12-01 00:00:00', -1.553352497347928, 0.9115336364697616, 0.01993753503289585, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.815274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126606, '299', '2025-12-01 00:00:00', -0.4863765870461373, -0.5356737648640852, 0.0207045213369821, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.114767');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126567, '301', '2025-12-01 00:00:00', 0.3608989125132257, 0.9192159064415312, 4.702596765745047e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.988472');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126523, '2000001', '2025-12-01 00:00:00', 2.683612962293612, 1.016160003711448, -0.4622225107203475, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.843573');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126527, '399', '2025-12-01 00:00:00', 0.3585088696587465, 0.9186604481372688, -5.799926651020448e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.856888');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126571, '899', '2025-12-01 00:00:00', 29.87449775214775, 0.4210624501412188, -0.6971050940918629, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.999403');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126531, '136199', '2025-12-01 00:00:00', 85.22892434879817, 39.43691891627778, -17.52876245846099, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.870982');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126535, '503', '2025-12-01 00:00:00', -1.473618862875464, 4.984346778314593, 0.01186748390405161, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.884015');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126611, '-31', '2025-12-01 00:00:00', -31.79929995320624, -134.4347920168699, 97.26872321448046, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.127876');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126575, '-98', '2025-12-01 00:00:00', 19.91443422532843, -60.08031577587137, 2.204110713298701, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.010838');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126539, '136108', '2025-12-01 00:00:00', -37.06561694478192, -23.55342795683967, 23.55444805400598, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.896541');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126542, '-61', '2025-12-01 00:00:00', -1.458415803772318, 4.980630392669037, -0.02239266919199966, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.909006');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126613, '-32', '2025-12-01 00:00:00', 39.15227310351443, -103.8243017627421, -87.71596271195199, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.139906');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126579, '-96', '2025-12-01 00:00:00', 0.4378962169690455, -0.08572870855253455, -0.02644125622424129, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.025199');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126546, '599', '2025-12-01 00:00:00', -1.468221941804259, 4.989043695951146, 0.0121249501596322, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.922572');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126550, '136472', '2025-12-01 00:00:00', -45.99091752252586, -8.984301977079054, 24.1521507476978, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.934896');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126617, '-170', '2025-12-01 00:00:00', 0.359846734859225, 0.9297060410427296, -0.002127383933175062, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.153246');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126555, '499', '2025-12-01 00:00:00', -0.1063822838370923, -1.460010013404077, -0.02798693272907963, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:36.949608');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126583, '-168', '2025-12-01 00:00:00', -0.1063685133693806, -1.460028026963913, -0.02798689780417693, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.038319');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126587, '999', '2025-12-01 00:00:00', 19.14371938842969, -29.68355714810235, -2.359760579687143, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.050124');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126591, '699', '2025-12-01 00:00:00', 9.520130844201095, 0.08519659285617283, -0.3804392254440885, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.063315');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126594, '10', '2025-12-01 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.076362');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126598, '606', '2025-12-01 00:00:00', 9.528036246524623, 0.08504966272675014, -0.3811502292394193, NULL, NULL, NULL, 'nasa_horizons', '2025-12-01 08:06:37.089168');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120851, '199', '2025-11-06 00:00:00', 0.3579924910553783, -0.112831842599839, -0.04205577326967092, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.909071');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120849, '136472', '2025-11-06 00:00:00', -45.99550472859492, -8.930757567205541, 24.16018624698779, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.891539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120808, '499', '2025-11-04 00:00:00', -0.4896366928034622, -1.416223466593025, -0.01767125629170488, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.677966');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120844, '399', '2025-11-06 00:00:00', 0.7194334996660785, 0.6820140043864107, -4.680922759807299e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.833815');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120866, '136199', '2025-11-07 00:00:00', 85.24037722501066, 39.41631597601167, -17.55125457719556, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.702039');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120867, '136108', '2025-11-07 00:00:00', -37.09868104840605, -23.5113160932932, 23.55761925016266, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.715751');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120843, '2000001', '2025-11-06 00:00:00', 2.770406954355336, 0.7882178059814233, -0.4854281572199415, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.81396');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120868, '-61', '2025-11-07 00:00:00', -1.280317162710361, 5.016305471246684, -0.02556335750165939, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.730221');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120845, '136199', '2025-11-06 00:00:00', 85.24085409300042, 39.41545722146173, -17.55219167467842, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.84405');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120870, '136472', '2025-11-07 00:00:00', -45.99532238230933, -8.932899434899005, 24.15986541361072, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.754998');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120822, '2000001', '2025-11-05 00:00:00', 2.773453130156256, 0.7789663969506655, -0.4862822060348017, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.037537');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120871, '499', '2025-11-07 00:00:00', -0.4481844154370379, -1.425771953748126, -0.01888784132293558, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.767525');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120823, '399', '2025-11-05 00:00:00', 0.7314341094995458, 0.66949579224154, -4.574791649059063e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.069351');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120872, '199', '2025-11-07 00:00:00', 0.3599799522163776, -0.08444641149079098, -0.0399183385562208, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.779292');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120824, '136199', '2025-11-05 00:00:00', 85.24133093405399, 39.41459844303357, -17.55312876621266, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.087161');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120826, '-61', '2025-11-05 00:00:00', -1.265402094174575, 5.019751657979215, -0.02724732297426835, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.111146');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120848, '599', '2025-11-06 00:00:00', -1.283958687693648, 5.03021585696931, 0.007831288215803143, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.879495');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120827, '599', '2025-11-05 00:00:00', -1.27655096120407, 5.031725872279321, 0.007659328761532362, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.120728');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120825, '136108', '2025-11-05 00:00:00', -37.10143402683666, -23.50780558036985, 23.55788205002025, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.100273');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120828, '136472', '2025-11-05 00:00:00', -45.99568697983361, -8.928615691926131, 24.1605070314909, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.132055');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120854, '-98', '2025-11-06 00:00:00', 19.83764964837694, -59.89951864402343, 2.196993880104211, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.934266');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120855, '-96', '2025-11-06 00:00:00', 0.6148278567502422, -0.3712327088211781, -0.04057356507360461, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.942597');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120831, '301', '2025-11-05 00:00:00', 0.7333997883173383, 0.6708481243088099, 0.000111982017122468, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.15538');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120832, '899', '2025-11-05 00:00:00', 29.8762477464217, 0.3389600039255504, -0.6954544592434854, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.164661');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120812, '-98', '2025-11-04 00:00:00', 19.83150631019565, -59.88505325515939, 2.196424462863648, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.739285');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120813, '-96', '2025-11-04 00:00:00', 0.6124522591110799, -0.3862015445092543, -0.04064229476208573, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.755723');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120814, '-168', '2025-11-04 00:00:00', -0.4896524881179078, -1.416227896632706, -0.017655604172987, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.778197');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120869, '599', '2025-11-07 00:00:00', -1.291363105025274, 5.028695913869142, 0.008003268137966766, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.743819');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120837, '699', '2025-11-05 00:00:00', 9.528448067836548, -0.05954815127736729, -0.3782488570081894, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.206066');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120802, '399', '2025-11-04 00:00:00', 0.7432142793014049, 0.6567754554578937, -4.454742317439193e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.526366');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120817, '10', '2025-11-04 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.834638');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120804, '136108', '2025-11-04 00:00:00', -37.10281037984569, -23.50605025525842, 23.55801336537391, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.587468');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120839, '799', '2025-11-05 00:00:00', 10.07497403403378, 16.69571507073411, -0.068631128159154, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.220954');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120803, '136199', '2025-11-04 00:00:00', 85.24180774816973, 39.41373964071544, -17.55406585179854, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.559102');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120840, '299', '2025-11-05 00:00:00', -0.715454879063384, -0.07460048956596163, 0.04025671988940829, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.22816');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120805, '-61', '2025-11-04 00:00:00', -1.25802399149327, 5.021549025745404, -0.02782913882000475, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.613169');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120850, '499', '2025-11-06 00:00:00', -0.4620430517367423, -1.422714667768983, -0.01848393338782107, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.900406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120806, '599', '2025-11-04 00:00:00', -1.269140285898434, 5.033224347742974, 0.007487326090983674, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.63523');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120807, '136472', '2025-11-04 00:00:00', -45.99586913602639, -8.926473809077223, 24.16082776711872, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.66094');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120830, '199', '2025-11-05 00:00:00', 0.3540392596657901, -0.1405989247536601, -0.0439623754529658, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.147004');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120829, '499', '2025-11-05 00:00:00', -0.4758608480885918, -1.419531635907637, -0.01807839170679973, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.139746');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120810, '301', '2025-11-04 00:00:00', 0.7454843145986574, 0.6575757388961911, 7.169890117329594e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.709416');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120853, '899', '2025-11-06 00:00:00', 29.87618438762176, 0.3421182242801641, -0.6955176710670257, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.926107');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120856, '-168', '2025-11-06 00:00:00', -0.4620588582470088, -1.422712302672657, -0.01846785036304098, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.949584');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120811, '899', '2025-11-04 00:00:00', 29.8763110439966, 0.3358021818149095, -0.6953910900848649, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.725115');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120791, '-98', '2025-11-03 00:00:00', 19.82843460908795, -59.87782047058514, 2.196139750332716, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.963591');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120857, '999', '2025-11-06 00:00:00', 19.0757329557199, -29.70857278217511, -2.337372763031502, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.957854');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120858, '699', '2025-11-06 00:00:00', 9.528169395887483, -0.05398050260166506, -0.3783350133571953, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.965485');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120833, '-98', '2025-11-05 00:00:00', 19.83457798995619, -59.89228597963773, 2.196709172787035, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.173341');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120859, '10', '2025-11-06 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.972752');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120834, '-96', '2025-11-05 00:00:00', 0.6138808919558851, -0.3788657537814701, -0.04062386715951322, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.181352');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120836, '999', '2025-11-05 00:00:00', 19.07300194087584, -29.70957735638641, -2.336469993956726, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.198798');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120835, '-168', '2025-11-05 00:00:00', -0.4758768916817558, -1.419532676433467, -0.01806240343067898, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.190303');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120860, '799', '2025-11-06 00:00:00', 10.0715699585314, 16.69756386721853, -0.06858023485730638, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.979998');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120815, '999', '2025-11-04 00:00:00', 19.07027361738981, -29.71058595016229, -2.335578867679696, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.801275');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120816, '699', '2025-11-04 00:00:00', 9.528723321365863, -0.06511560738573915, -0.3781626483484187, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.818238');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120861, '299', '2025-11-06 00:00:00', -0.7131996814212866, -0.0947750772025485, 0.03984942826720127, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.987853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120862, '-31', '2025-11-06 00:00:00', -31.7693659759163, -134.2382667280589, 97.1267166696257, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.99589');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120797, '799', '2025-11-03 00:00:00', 10.08178083436193, 16.69201548077548, -0.06873288010362158, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:09.021817');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120818, '799', '2025-11-04 00:00:00', 10.07837764864235, 16.6938656076142, -0.06868203441838239, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.84882');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120863, '-32', '2025-11-06 00:00:00', 39.09157936187502, -103.6894237901443, -87.55249238624913, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:20.003754');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120841, '-31', '2025-11-05 00:00:00', -31.7681685617399, -134.2304057448124, 97.12103633111191, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.235702');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120819, '299', '2025-11-04 00:00:00', -0.7171439813856607, -0.05436687635276429, 0.04063215881780609, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.864803');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120820, '-31', '2025-11-04 00:00:00', -31.76697114343797, -134.2225447637332, 97.1153559867045, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.880479');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120842, '-32', '2025-11-05 00:00:00', 39.08915158531028, -103.6840286654933, -87.54595345530288, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:52:28.242389');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120821, '-32', '2025-11-04 00:00:00', 39.08672380655771, -103.6786335403855, -87.53941451526279, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.897026');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120785, '599', '2025-11-03 00:00:00', -1.261726610051459, 5.034712204794313, 0.007315310892817391, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:08.896602');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126627, '50326340', '2025-12-02 00:00:00', -3.634135690248293, 1.18101928511878, -0.9938820913126287, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.234308');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120865, '399', '2025-11-07 00:00:00', 0.7072155945608167, 0.6943265151450111, -4.770530055330323e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.687239');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120846, '136108', '2025-11-06 00:00:00', -37.10005758302336, -23.50956085972053, 23.55775067828318, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.856349');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126632, '2000001', '2025-12-02 00:00:00', 2.679718210969829, 1.025130458564156, -0.4612210132397281, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.401339');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124259, '136199', '2025-11-29 14:00:00', 85.22960081112738, 39.4357031526233, -17.53009021263407, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.564786');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124269, '499', '2025-11-29 14:00:00', -0.1268934264214341, -1.460136098285481, -0.02748660602884706, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.621335');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124279, '-96', '2025-11-29 14:00:00', 0.4623528298340113, -0.1068222676037159, -0.02814216648997216, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.665744');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124289, '799', '2025-11-29 14:00:00', 9.99117665934571, 16.74096791263501, -0.06737624909136201, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.708545');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124299, '399', '2025-11-29 15:00:00', 0.3808223002396846, 0.9098918034296526, -5.677517310048014e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.808797');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124309, '136472', '2025-11-29 15:00:00', -45.99117136877858, -8.981357158819137, 24.15259349446118, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.85975');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124319, '-98', '2025-11-29 15:00:00', 19.91021141244261, -60.07037290485143, 2.203719330309907, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.901015');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124329, '10', '2025-11-29 15:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.941952');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120886, '399', '2025-11-08 00:00:00', 0.6947835148809676, 0.7064296891254919, -4.842248211818377e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.68842');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120931, '-61', '2025-11-10 00:00:00', -1.303126323889993, 5.011573189698504, -0.0216565697970983, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.044777');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120892, '499', '2025-11-08 00:00:00', -0.4342860606077513, -1.428702894271491, -0.01929007544718577, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.784167');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120937, '899', '2025-11-10 00:00:00', 29.87592881817734, 0.3547496401668543, -0.6957726048742963, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.145805');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120873, '301', '2025-11-07 00:00:00', 0.7082177678626774, 0.6964893457703861, 0.0001597764227294872, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.789025');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120898, '-168', '2025-11-08 00:00:00', -0.4342999728697941, -1.428694011360584, -0.01927453056085839, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.91546');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120943, '10', '2025-11-10 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.236469');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120879, '699', '2025-11-07 00:00:00', 9.527887215467198, -0.0484127109476196, -0.3784210846727153, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.856469');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120904, '-31', '2025-11-08 00:00:00', -31.77176079188734, -134.2539887010117, 97.13807732897705, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:23.017125');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120908, '136199', '2025-11-09 00:00:00', 85.23942340822734, 39.41803341351086, -17.54938036438394, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.32541');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120914, '199', '2025-11-09 00:00:00', 0.3576440641551991, -0.02637303473716882, -0.03495819985004251, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.438055');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120920, '999', '2025-11-09 00:00:00', 19.08388462386507, -29.70559833143619, -2.340074938416704, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.544406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120926, '-32', '2025-11-09 00:00:00', 39.09886267846225, -103.7056091612631, -87.57210912453097, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.639364');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126629, '90000030', '2025-12-02 00:00:00', -19.51544762866175, 27.42309829928302, -9.890748787905228, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.375681');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126634, '399', '2025-12-02 00:00:00', 0.3421509026290232, 0.9247017669826088, -5.878209532824985e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.410771');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126640, '136108', '2025-12-02 00:00:00', -37.06423813367578, -23.55518204424386, 23.55431521534454, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.440522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126656, '899', '2025-12-02 00:00:00', 29.87442631067977, 0.4242198937873992, -0.6971688642576479, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.516021');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126678, '-32', '2025-12-02 00:00:00', 39.15470083042281, -103.8296968756504, -87.72250140756958, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.615879');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124261, '136108', '2025-11-29 14:00:00', -37.06757010379205, -23.55094292069966, 23.55463614545837, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.578851');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124307, '599', '2025-11-29 15:00:00', -1.458135505861501, 4.991479091953187, 0.01188914495155772, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.851162');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124317, '899', '2025-11-29 15:00:00', 29.87459541084812, 0.416720328002212, -0.6970179209004221, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.892978');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124327, '699', '2025-11-29 15:00:00', 9.52062590586143, 0.07754315705442186, -0.3803260960705487, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.933779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124337, '-32', '2025-11-29 15:00:00', 39.14893497677064, -103.8168834814021, -87.70697199077554, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.973139');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120890, '599', '2025-11-08 00:00:00', -1.298764530387155, 5.027165520663642, 0.008175241102360453, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.75677');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120896, '-98', '2025-11-08 00:00:00', 19.84379290122548, -59.91398379254188, 2.197563286924417, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.893579');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120874, '899', '2025-11-07 00:00:00', 29.87612113133732, 0.3452765490689772, -0.6955811274571451, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.801305');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120880, '10', '2025-11-07 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.867562');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120902, '799', '2025-11-08 00:00:00', 10.06476053198768, 16.70125947049434, -0.0684782397616006, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.975107');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120906, '2000001', '2025-11-09 00:00:00', 2.761071119750299, 0.815915389972949, -0.4828314516120653, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.279866');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120912, '136472', '2025-11-09 00:00:00', -45.99495740459489, -8.937183147475503, 24.15922360023897, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.404588');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120918, '-96', '2025-11-09 00:00:00', 0.6147033001578155, -0.3465698741407698, -0.04022733206557159, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.512472');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120924, '299', '2025-11-09 00:00:00', -0.7030602521457181, -0.1547857990310703, 0.03843993197133849, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.602134');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126631, '90004920', '2025-12-02 00:00:00', -1.558865190846869, 0.949112282912185, 0.01768999023000961, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.390295');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126636, '136199', '2025-12-02 00:00:00', 85.22844681439206, 39.4377770738075, -17.52782521311856, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.421566');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126642, '-61', '2025-12-02 00:00:00', -1.465410425098376, 4.978255160926095, -0.02281909349612544, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.449385');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126648, '499', '2025-12-02 00:00:00', -0.09189148503838086, -1.459754750962601, -0.02833692301743335, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.47661');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126664, '999', '2025-12-02 00:00:00', 19.14644541892126, -29.68255191308625, -2.360666713565239, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.552169');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126680, '-170', '2025-12-02 00:00:00', 0.3434499766418141, 0.9357603878522471, -0.002166561819015677, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.625004');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124263, '-61', '2025-11-29 14:00:00', -1.448596822275745, 4.984058574872735, -0.02145195945563856, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.589247');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124273, '301', '2025-11-29 14:00:00', 0.3839871696190298, 0.9093224298801798, -2.113069873588745e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.639593');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124283, '999', '2025-11-29 14:00:00', 19.13985723379096, -29.6849920310497, -2.358494585780607, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.682287');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124293, '-31', '2025-11-29 14:00:00', -31.7976037698518, -134.4236555475004, 97.26067627589579, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.725851');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124301, '136199', '2025-11-29 15:00:00', 85.2295809159261, 39.43573891105671, -17.5300511612091, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.82176');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124311, '499', '2025-11-29 15:00:00', -0.1262904805051671, -1.460136323834502, -0.02750139604076945, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.868099');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124321, '-96', '2025-11-29 15:00:00', 0.4616716322874775, -0.1062102166625356, -0.0280944533514448, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.909241');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124331, '799', '2025-11-29 15:00:00', 9.991034429243793, 16.74104426274794, -0.06737412280779737, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.950042');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120875, '-98', '2025-11-07 00:00:00', 19.84072128546458, -59.9067512483221, 2.197278584816347, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.812576');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120881, '799', '2025-11-07 00:00:00', 10.06816544026612, 16.69941200732556, -0.06852925088433164, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.878564');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126638, '503', '2025-12-02 00:00:00', -1.475376635782942, 4.980121069103992, 0.01202633974158392, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.431667');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126644, '599', '2025-12-02 00:00:00', -1.475554284359788, 4.987260085880706, 0.01229641168812271, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.458605');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126660, '-96', '2025-12-02 00:00:00', 0.4188992018848113, -0.0704949819076734, -0.02513587356897383, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.53384');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126676, '-31', '2025-12-02 00:00:00', -31.80049725316054, -134.4426530564201, 97.27440339924588, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.607442');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124271, '199', '2025-11-29 14:00:00', -0.1346999900459337, 0.2868461001651567, 0.03579633852955724, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.630218');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124281, '-168', '2025-11-29 14:00:00', -0.1269089144754397, -1.460131962014712, -0.02747057128899022, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.674719');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124291, '299', '2025-11-29 14:00:00', -0.5070019415654878, -0.5158631570590021, 0.02216676713783022, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 14:45:36.716965');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120932, '599', '2025-11-10 00:00:00', -1.313560524475984, 5.024073311753396, 0.008519131993825644, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.064702');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120889, '-61', '2025-11-08 00:00:00', -1.287858561424017, 5.014664320658009, -0.0244527062227592, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.737958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120938, '-98', '2025-11-10 00:00:00', 19.84993606879281, -59.92844870079168, 2.19813268333096, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.161035');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120895, '899', '2025-11-08 00:00:00', 29.87605769263418, 0.3484345612874874, -0.6956449684038069, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.853221');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120876, '-96', '2025-11-07 00:00:00', 0.6152860082090704, -0.3633045355310903, -0.04049100550738605, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.823028');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120944, '799', '2025-11-10 00:00:00', 10.05794963290555, 16.70495238011713, -0.06837589882930444, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.249083');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120901, '10', '2025-11-08 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.962097');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120882, '299', '2025-11-07 00:00:00', -0.7103804377738023, -0.1148747117063597, 0.03941062101886859, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.889164');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126646, '136472', '2025-12-02 00:00:00', -45.99073279327236, -8.986443653670133, 24.15182869196148, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.466989');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126662, '-168', '2025-12-02 00:00:00', -0.09188039446227411, -1.459774487049748, -0.0283356574253939, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.542319');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124297, '2000001', '2025-11-29 15:00:00', 2.688915430700176, 1.003805648974501, -0.4635904715722511, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.699188');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120928, '399', '2025-11-10 00:00:00', 0.6692894938433782, 0.72999308109382, -4.933135785572338e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:03.957363');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120887, '136199', '2025-11-08 00:00:00', 85.23990033008589, 39.41717470669258, -17.55031747376401, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.705258');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120934, '499', '2025-11-10 00:00:00', -0.4063747294369247, -1.434183385921105, -0.02008936176715493, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.10183');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120893, '199', '2025-11-08 00:00:00', 0.3598969464195614, -0.0555765738087485, -0.03755141468080346, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.800829');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120940, '-168', '2025-11-10 00:00:00', -0.4063850318692125, -1.434168915803235, -0.02007527012644474, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.190226');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120899, '999', '2025-11-08 00:00:00', 19.08117359876619, -29.70658939252579, -2.33918383585793, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.927458');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120877, '-168', '2025-11-07 00:00:00', -0.448199505481282, -1.425766252799843, -0.01887190734756731, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.835039');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120946, '-31', '2025-11-10 00:00:00', -31.77415559134214, -134.2697106825341, 97.14943796476571, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.273724');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120905, '-32', '2025-11-08 00:00:00', 39.09643490844915, -103.7002140380359, -87.56557022086238, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:23.040871');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120883, '-31', '2025-11-07 00:00:00', -31.77056338596579, -134.2461277134616, 97.13239700224707, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.901532');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120910, '-61', '2025-11-09 00:00:00', -1.295460126459985, 5.013084608675479, -0.02315381088748521, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.363494');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120916, '899', '2025-11-09 00:00:00', 29.87599363357575, 0.3515921536885869, -0.6957089265489543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.472447');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120922, '10', '2025-11-09 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.573766');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126650, '199', '2025-12-02 00:00:00', -0.2058037383178722, 0.2533331081899257, 0.03957917231038729, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.486906');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126672, '799', '2025-12-02 00:00:00', 9.98292598776316, 16.74539427880871, -0.06725313160042867, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.589614');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124305, '-61', '2025-11-29 15:00:00', -1.448884056716147, 4.983956684715534, -0.02148552338103793, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.842057');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124315, '301', '2025-11-29 15:00:00', 0.3833155060828666, 0.9096214565378793, -1.902657704561337e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.884139');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124325, '999', '2025-11-29 15:00:00', 19.13997063622866, -29.68494984499801, -2.358531500892667, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.925323');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124335, '-31', '2025-11-29 15:00:00', -31.79765365773763, -134.4239830906602, 97.26091295073026, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 15:04:37.965352');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120888, '136108', '2025-11-08 00:00:00', -37.09730442298533, -23.51307128107321, 23.55748776565848, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.723545');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120894, '301', '2025-11-08 00:00:00', 0.6951896279591677, 0.7087981337814161, 0.0001640950732891098, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.825808');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120900, '699', '2025-11-08 00:00:00', 9.527601466400503, -0.04284488690359271, -0.3785070084959526, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.940484');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120878, '999', '2025-11-07 00:00:00', 19.07845799157544, -29.70757784225857, -2.338281062333865, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.846301');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120884, '-32', '2025-11-07 00:00:00', 39.09400713625408, -103.6948189143279, -87.5590313081021, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.913513');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126652, '601', '2025-12-02 00:00:00', 9.518580981019888, 0.09043315442627213, -0.380235578569484, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.49796');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126675, '299', '2025-12-02 00:00:00', -0.4713570100706399, -0.549154485487079, 0.01965269059793039, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.598556');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124357, '299', '2025-11-30 00:00:00', -0.501016680955984, -0.5217751041724933, 0.02174019783004677, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:36.046885');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124358, '-31', '2025-11-30 00:00:00', -31.79810264832891, -134.4269309792549, 97.26304302377598, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:36.054679');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124359, '-32', '2025-11-30 00:00:00', 39.1498453752356, -103.8189066491583, -87.70942400733009, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:36.064598');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120885, '2000001', '2025-11-08 00:00:00', 2.764215931105874, 0.8066924176195838, -0.4837027730357287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.66747');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120891, '136472', '2025-11-08 00:00:00', -45.99513994097619, -8.935041294992677, 24.15954453136082, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.76881');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120897, '-96', '2025-11-08 00:00:00', 0.6152474143110445, -0.3550830712873198, -0.04037575611020697, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.904799');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120903, '299', '2025-11-08 00:00:00', -0.7069996464995028, -0.1348835405471286, 0.03894066009206706, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:55:22.993871');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120909, '136108', '2025-11-09 00:00:00', -37.09592770676184, -23.51482642304868, 23.55735622477014, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.344811');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120915, '301', '2025-11-09 00:00:00', 0.681925520130067, 0.7207436330336516, 0.0001549942178804988, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.455699');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120921, '699', '2025-11-09 00:00:00', 9.527312207793793, -0.03727716778487328, -0.3785927205304596, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.561455');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126654, '301', '2025-12-02 00:00:00', 0.344294061929872, 0.9258242564338938, 8.803264971339806e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.506911');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124339, '2000001', '2025-11-30 00:00:00', 2.687475371112978, 1.007177298258654, -0.4632184371764801, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.830558');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124340, '399', '2025-11-30 00:00:00', 0.374757966699261, 0.9123360803628093, -5.712129846379271e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.850957');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124341, '136199', '2025-11-30 00:00:00', 85.22940185706933, 39.43606073510441, -17.52969969792524, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.862273');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124342, '136108', '2025-11-30 00:00:00', -37.06699566432902, -23.55167382328573, 23.55458083620591, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.874578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124343, '-61', '2025-11-30 00:00:00', -1.451473488609419, 4.983042575026188, -0.02177117306427119, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.886264');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124344, '599', '2025-11-30 00:00:00', -1.460887029592331, 4.990816974165709, 0.01195346243588529, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.898682');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124345, '136472', '2025-11-30 00:00:00', -45.99110215594613, -8.982160292550633, 24.15247275451631, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.911023');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124346, '499', '2025-11-30 00:00:00', -0.1208630516871398, -1.460127633789938, -0.02763430394603713, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.923851');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124347, '199', '2025-11-30 00:00:00', -0.1475583672474831, 0.2820795471110056, 0.03658616755224475, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.936238');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124348, '301', '2025-11-30 00:00:00', 0.3772503289123047, 0.9122917143984296, -2.814080061928934e-07, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.950171');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124349, '899', '2025-11-30 00:00:00', 29.87456878482194, 0.4179045831151495, -0.6970416189184039, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.961304');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124350, '-98', '2025-11-30 00:00:00', 19.91136309251586, -60.07308460817089, 2.203826071622773, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.975965');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124351, '-96', '2025-11-30 00:00:00', 0.4554400163419474, -0.1006788286435745, -0.02765890242708865, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:35.988907');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124352, '-168', '2025-11-30 00:00:00', -0.120846867779408, -1.460143480711082, -0.02763533880885465, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:36.002902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124353, '999', '2025-11-30 00:00:00', 19.14099195321239, -29.68456985864229, -2.358864487874888, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:36.01424');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124354, '699', '2025-11-30 00:00:00', 9.520491445609775, 0.07963048489072236, -0.3803569789424512, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:36.023756');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124355, '10', '2025-11-30 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:36.032304');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124356, '799', '2025-11-30 00:00:00', 9.989754332098768, 16.7417313582764, -0.06735499508958341, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:30:36.039577');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124360, '399', '2024-01-01 00:00:00', -0.1658512460341716, 0.9692307824650869, -5.491524466498898e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:51:00.909735');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124368, '399', '2025-10-06 00:00:00', 0.9755619986843254, 0.2188514048180216, -1.8687919848351e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:02:56.558179');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124378, '399', '2025-10-16 00:00:00', 0.9209187124519591, 0.3819864140594202, -2.902511866407623e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:12.272255');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124388, '399', '2025-10-26 00:00:00', 0.8387755535181985, 0.5338106615354355, -3.338174344508892e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:29.427561');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124398, '599', '2025-10-09 00:00:00', -1.075575722921282, 5.068422430549458, 0.003010340932509529, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:48.13452');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124408, '599', '2025-10-19 00:00:00', -1.150221340458064, 5.055744803461718, 0.004733174954617457, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:06.762606');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124418, '599', '2025-10-29 00:00:00', -1.224622672549462, 5.041989342601736, 0.006454882064409681, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:24.453598');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124428, '199', '2025-10-10 00:00:00', -0.1129940718956274, -0.4520026127706849, -0.02657487814592004, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:38.226566');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124438, '199', '2025-10-20 00:00:00', 0.1091282713046035, -0.4384912528456614, -0.04584368941943808, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:53.061629');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124448, '499', '2025-10-01 00:00:00', -0.9257707149531377, -1.234139428654059, -0.003160638970537723, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:12.937894');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124458, '499', '2025-10-11 00:00:00', -0.8049544362516541, -1.301007912317206, -0.007524596443611085, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:30.937397');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124468, '499', '2025-10-21 00:00:00', -0.6774944678341818, -1.357130084450749, -0.01182626366999231, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:51.545234');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124478, '899', '2025-10-02 00:00:00', 29.87820023327171, 0.2315821535864317, -0.6932870641534775, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:08.722416');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124488, '899', '2025-10-12 00:00:00', 29.87766585538823, 0.263165283599339, -0.6939259382828072, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:26.632809');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124498, '899', '2025-10-22 00:00:00', 29.87709861794029, 0.2947480262626948, -0.6945632562217894, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:41.739134');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124508, '699', '2025-10-03 00:00:00', 9.535835069199905, -0.2432468089125433, -0.3753433287743266, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:59.391195');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120930, '136108', '2025-11-10 00:00:00', -37.09455089973576, -23.51658151921071, 23.55722462749685, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.020168');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120936, '301', '2025-11-10 00:00:00', 0.6684676184309274, 0.7323236707000645, 0.0001334611496761288, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.132367');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120942, '699', '2025-11-10 00:00:00', 9.527019501085618, -0.03170959381344803, -0.3786782071311084, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.222111');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120907, '399', '2025-11-09 00:00:00', 0.6821404068694231, 0.7183198096634745, -4.896052252901392e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.306277');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120913, '499', '2025-11-09 00:00:00', -0.4203491183562518, -1.431506898785257, -0.01969059564744446, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.421375');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120919, '-168', '2025-11-09 00:00:00', -0.4203614212197261, -1.431495068039612, -0.01967567007834503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.5287');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120925, '-31', '2025-11-09 00:00:00', -31.77295819367994, -134.2618496907035, 97.14375764981646, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.619536');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126658, '-98', '2025-12-02 00:00:00', 19.91750533773655, -60.08754688368212, 2.204395352321644, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.524711');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124361, '399', '2025-10-29 00:00:00', 0.8090831363904966, 0.5764128912583903, -3.652338382730032e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 02:59:40.763119');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124366, '399', '2025-10-04 00:00:00', 0.9830767385106612, 0.1852977086627079, -1.53799049032734e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:02:53.796507');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124376, '399', '2025-10-14 00:00:00', 0.9340971939468793, 0.3501035014208219, -2.812741142217112e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:08.484187');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124386, '399', '2025-10-24 00:00:00', 0.8573118231444277, 0.5045909002822008, -3.188530439003082e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:25.281586');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124396, '599', '2025-10-07 00:00:00', -1.060619249053834, 5.07083017504951, 0.002665733685367106, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:45.460928');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124406, '599', '2025-10-17 00:00:00', -1.135310735144514, 5.058366054387712, 0.004388669625269429, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:02.658894');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124416, '599', '2025-10-27 00:00:00', -1.209762385929789, 5.044825897307611, 0.006110639066867844, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:21.399301');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124426, '199', '2025-10-08 00:00:00', -0.1555452781697096, -0.4385697407618231, -0.02157432797629862, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:35.297555');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124436, '199', '2025-10-18 00:00:00', 0.06521708087952253, -0.4521796317969058, -0.04293481613321493, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:50.054191');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124446, '199', '2025-10-28 00:00:00', 0.2646432053500065, -0.3289937386320653, -0.05115906998144849, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:08.872789');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124456, '499', '2025-10-09 00:00:00', -0.8296764839659307, -1.288468820077859, -0.006655592773294363, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:26.998292');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124466, '499', '2025-10-19 00:00:00', -0.7034758178703439, -1.34680238284838, -0.01097272276063164, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:47.25807');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124476, '499', '2025-10-29 00:00:00', -0.5713497565517139, -1.39378171118827, -0.01519720829563527, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:05.542917');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124486, '899', '2025-10-10 00:00:00', 29.87777587663809, 0.256849392162416, -0.6937980803244908, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:23.260163');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124496, '899', '2025-10-20 00:00:00', 29.8772140997896, 0.2884316342222903, -0.6944353107827366, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:38.815331');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124506, '699', '2025-10-01 00:00:00', 9.53616771496123, -0.2543780832435392, -0.3751626649757672, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:56.680936');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124516, '699', '2025-10-11 00:00:00', 9.534367597877626, -0.1987153199676116, -0.3760620376567434, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:15.003259');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120927, '2000001', '2025-11-10 00:00:00', 2.757893466552557, 0.8251286531152949, -0.4819543867075194, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:03.925535');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120933, '136472', '2025-11-10 00:00:00', -45.99477477316437, -8.93932499233941, 24.15890262024578, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.085015');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120939, '-96', '2025-11-10 00:00:00', 0.6136439832072582, -0.3377662310180432, -0.04004519246750897, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.175428');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120945, '299', '2025-11-10 00:00:00', -0.698565642163283, -0.1745658229883267, 0.03790884731537113, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.260935');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120911, '599', '2025-11-09 00:00:00', -1.306164083120163, 5.025624931314546, 0.00834719931120593, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.386986');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120917, '-98', '2025-11-09 00:00:00', 19.84686449566597, -59.92121627669376, 2.197847986429146, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.492888');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120923, '799', '2025-11-09 00:00:00', 10.06135519458591, 16.70310627810307, -0.06842710989921529, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:56:20.586767');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126666, '699', '2025-12-02 00:00:00', 9.519767308803582, 0.09076264555627483, -0.3805213650298412, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.562621');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120969, '2000001', '2025-11-24 00:00:00', 2.709969173189701, 0.9530302820549754, -0.4690765307601552, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.096331');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120950, '136199', '2025-11-25 00:00:00', 85.23178900496008, 39.43176947266499, -17.534385807078, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.741043');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120970, '399', '2025-11-24 00:00:00', 0.4696857322659519, 0.8685483740675168, -5.179874412093635e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.133884');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121011, '2000001', '2025-11-22 00:00:00', 2.717207208299524, 0.9348885159912989, -0.4709842810200907, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:00.812922');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120951, '136108', '2025-11-25 00:00:00', -37.07388789005471, -23.54290246537957, 23.5552439002897, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.767859');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121012, '399', '2025-11-22 00:00:00', 0.5002295949753528, 0.8517798554414678, -5.06123823826951e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:00.852076');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120991, '399', '2025-11-23 00:00:00', 0.4850321589754071, 0.8602969936159423, -5.115068898539234e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.786361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120994, '-61', '2025-11-23 00:00:00', -1.404697622572961, 5.001016020231993, -0.01022229748746762, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.869347');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121015, '-61', '2025-11-22 00:00:00', -1.398398487281628, 5.003751364993351, -0.006929550755564899, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:00.92578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120955, '499', '2025-11-25 00:00:00', -0.1930699324940242, -1.458663327981637, -0.02583297890391096, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.825726');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120995, '599', '2025-11-23 00:00:00', -1.40945730213088, 5.002938315396277, 0.01075246799609951, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.889055');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120996, '136472', '2025-11-23 00:00:00', -45.99239191017745, -8.96716828338371, 24.15472543248606, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.902905');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120997, '499', '2025-11-23 00:00:00', -0.2218363167119905, -1.457126865065986, -0.02509537840218871, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.916405');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120960, '-96', '2025-11-25 00:00:00', 0.5252561068853574, -0.1709906450456553, -0.032653273436607, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.877923');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120961, '-168', '2025-11-25 00:00:00', -0.1930474932042235, -1.4586639004895, -0.02583618196460349, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.889392');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120962, '999', '2025-11-25 00:00:00', 19.12741231250974, -29.68957017380515, -2.354390487963447, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.900042');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120963, '699', '2025-11-25 00:00:00', 9.522248016869248, 0.05179647499764396, -0.379942512101001, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.914763');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120983, '999', '2025-11-24 00:00:00', 19.12468351562099, -29.69057957551287, -2.353489738652533, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.455031');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120984, '699', '2025-11-24 00:00:00', 9.522589321662418, 0.0462289249011336, -0.3798588654907771, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.48489');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120965, '799', '2025-11-25 00:00:00', 10.0068178153523, 16.73256213256514, -0.06761046305778232, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.943361');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120967, '-31', '2025-11-25 00:00:00', -31.79211605153006, -134.387625822109, 97.2346419811311, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.971174');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120968, '-32', '2025-11-25 00:00:00', 39.137706711825, -103.7919310729883, -87.67673034913433, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.98739');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120989, '-32', '2025-11-24 00:00:00', 39.13527897437372, -103.7865359564104, -87.67019159046085, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.609251');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120929, '136199', '2025-11-10 00:00:00', 85.23894645943669, 39.41889209646989, -17.54844324905584, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:03.988271');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120952, '-61', '2025-11-25 00:00:00', -1.41766507433102, 4.995674574739867, -0.01515757624334511, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.783058');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121013, '136199', '2025-11-22 00:00:00', 85.23322097700391, 39.4291944284538, -17.53719740195804, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:00.876195');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120992, '136199', '2025-11-23 00:00:00', 85.23274367951802, 39.43005280048379, -17.53626020955794, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.81617');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120953, '599', '2025-11-25 00:00:00', -1.424167572929343, 4.999527805274392, 0.01109572043719099, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.798601');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120972, '136108', '2025-11-24 00:00:00', -37.07526606114687, -23.54114805612314, 23.55537634373731, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.192472');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120973, '-61', '2025-11-24 00:00:00', -1.411129029783052, 4.998323281808888, -0.01291620678543548, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.227206');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120956, '199', '2025-11-25 00:00:00', 0.01640191016857523, 0.3068958473678807, 0.02357586929860155, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.837112');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120976, '499', '2025-11-24 00:00:00', -0.2074627320825936, -1.457962607281606, -0.02546535784091332, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.319522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120957, '301', '2025-11-25 00:00:00', 0.4552925571376032, 0.8741102850480045, -0.000230564281706676, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.849007');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120999, '301', '2025-11-23 00:00:00', 0.485041022649549, 0.8576062849549466, -0.0002777817212584986, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.940822');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120978, '301', '2025-11-24 00:00:00', 0.4702525194611294, 0.8659323214056425, -0.0002589520521421286, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.351087');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121000, '899', '2025-11-23 00:00:00', 29.87505958733841, 0.3958007371207722, -0.6965979127867471, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.94966');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121001, '-98', '2025-11-23 00:00:00', 19.88986458740691, -60.02246476029504, 2.201833505560346, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.957156');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121002, '-96', '2025-11-23 00:00:00', 0.5462810274361946, -0.1970247860092713, -0.03422412567375142, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.964739');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121003, '-168', '2025-11-23 00:00:00', -0.2218146256261786, -1.45712071679399, -0.02509778708495439, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.972197');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121004, '999', '2025-11-23 00:00:00', 19.12195878554571, -29.69159151883777, -2.352600659060612, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.980119');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121005, '699', '2025-11-23 00:00:00', 9.522927110313777, 0.04066128302145718, -0.3797750290214891, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.98725');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121006, '10', '2025-11-23 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.993906');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121007, '799', '2025-11-23 00:00:00', 10.01364074497131, 16.72888961345656, -0.06771263422932533, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:04.001727');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120987, '299', '2025-11-24 00:00:00', -0.580257013825793, -0.4302233988483938, 0.02757012725740267, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.561598');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121009, '-31', '2025-11-23 00:00:00', -31.78972137999567, -134.3719037744788, 97.2232815225007, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:04.016712');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120954, '136472', '2025-11-25 00:00:00', -45.99202388696852, -8.971451752929894, 24.15408205480039, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.815651');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121014, '136108', '2025-11-22 00:00:00', -37.07802212973417, -23.5376391002138, 23.55564106129502, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:00.904471');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120974, '599', '2025-11-24 00:00:00', -1.416813735387104, 5.001238344310823, 0.01092410870219711, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.259998');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120975, '136472', '2025-11-24 00:00:00', -45.99220794631497, -8.969310021956403, 24.15440376809996, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.289287');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120958, '899', '2025-11-25 00:00:00', 29.87492138074911, 0.4021167822126853, -0.696724508331604, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.85764');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120998, '199', '2025-11-23 00:00:00', 0.08309148703618138, 0.2956665924058065, 0.01654145624581529, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.928687');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120959, '-98', '2025-11-25 00:00:00', 19.89600712076827, -60.03692787263848, 2.202402823412746, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.865107');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120979, '899', '2025-11-24 00:00:00', 29.87499046250308, 0.3989587903505766, -0.696661038483411, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.373458');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120980, '-98', '2025-11-24 00:00:00', 19.89293586448431, -60.02969634631916, 2.20211816581029, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.389695');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120981, '-96', '2025-11-24 00:00:00', 0.5362019073805531, -0.184156448801296, -0.033465744130298, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.413036');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120982, '-168', '2025-11-24 00:00:00', -0.2074404260498339, -1.457959778670128, -0.02546828145482976, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.437253');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120964, '10', '2025-11-25 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.930219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120985, '10', '2025-11-24 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.504898');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120988, '-31', '2025-11-24 00:00:00', -31.79091871804837, -134.3797647971755, 97.22896175478286, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.583765');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120986, '799', '2025-11-24 00:00:00', 10.01022946992441, 16.73072620683788, -0.06766160805620568, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.536456');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121008, '299', '2025-11-23 00:00:00', -0.5919317042293849, -0.4137142435446852, 0.02847056464249096, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:04.009772');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121010, '-32', '2025-11-23 00:00:00', 39.13285123519465, -103.7811408394551, -87.66365282276604, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:04.023959');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120935, '199', '2025-11-10 00:00:00', 0.3531296855859592, 0.002995803046989768, -0.03214405301800834, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.11608');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120941, '999', '2025-11-10 00:00:00', 19.08659989318711, -29.70459771473775, -2.340958622527558, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.206604');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121016, '599', '2025-11-22 00:00:00', -1.402097788191185, 5.004627066591173, 0.0105807839472982, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:00.951289');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121017, '136472', '2025-11-22 00:00:00', -45.99257577861584, -8.965026537232259, 24.15504704796255, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:00.981529');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120977, '199', '2025-11-24 00:00:00', 0.05000067685467555, 0.30281881168171, 0.02016102373037233, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.336396');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121018, '499', '2025-11-22 00:00:00', -0.2361894079165761, -1.456156524703454, -0.02472308080672584, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:00.997338');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120947, '-32', '2025-11-10 00:00:00', 39.10129044629544, -103.7110042840072, -87.57864801910905, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:04.286265');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120990, '2000001', '2025-11-23 00:00:00', 2.713604462914913, 0.943965061658203, -0.4700332246315518, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:59:03.744355');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126668, '10', '2025-12-02 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.572248');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121019, '199', '2025-11-22 00:00:00', 0.1153385210082521, 0.2855113102756712, 0.01275386193828016, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.020322');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121025, '999', '2025-11-22 00:00:00', 19.11924320572031, -29.69259682998896, -2.351717401195851, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.120825');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121031, '-32', '2025-11-22 00:00:00', 39.13042349422671, -103.775745722137, -87.65711404604427, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.211171');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124362, '399', '2025-10-28 00:00:00', 0.8192283041555147, 0.5623817623493966, -3.536343743551519e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:00:35.619054');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124363, '399', '2025-10-01 00:00:00', 0.9921782082756221, 0.1345617461907432, -1.083863063287314e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:02:47.793275');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124373, '399', '2025-10-11 00:00:00', 0.9517688038799127, 0.3015205393036255, -2.574045198501823e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:03.553421');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124383, '399', '2025-10-21 00:00:00', 0.8831711401694342, 0.4596265435040036, -3.046092028259305e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:19.407666');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124393, '599', '2025-10-04 00:00:00', -1.038165607611126, 5.074359896608472, 0.00214877188582796, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:40.482476');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124403, '599', '2025-10-14 00:00:00', -1.112927598791892, 5.062218683845571, 0.003871886168702284, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:57.572814');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124413, '599', '2025-10-24 00:00:00', -1.187453931883968, 5.048999611575439, 0.005594123163749698, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:16.091474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124423, '199', '2025-10-05 00:00:00', -0.2157989650488474, -0.4088434041349856, -0.01361857067692759, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:31.329625');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124433, '199', '2025-10-15 00:00:00', -0.001977781062173568, -0.4623391844271261, -0.03760198750678267, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:44.935971');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124443, '199', '2025-10-25 00:00:00', 0.21151338262253, -0.3801426993467015, -0.05046603529587988, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:04.21075');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124453, '499', '2025-10-06 00:00:00', -0.8662458865453027, -1.268867707612413, -0.005348075849357764, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:21.261325');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124463, '499', '2025-10-16 00:00:00', -0.742000512135581, -1.330460752632059, -0.009685566039550904, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:42.051508');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124473, '499', '2025-10-26 00:00:00', -0.6115529007668954, -1.380923323831732, -0.01394188984666875, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:00.771578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124483, '899', '2025-10-07 00:00:00', 29.87793702088646, 0.2473737584018864, -0.6936065927728344, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:16.633769');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124493, '899', '2025-10-17 00:00:00', 29.87738648491315, 0.278956777497075, -0.6942448439698201, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:34.170065');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124503, '899', '2025-10-27 00:00:00', 29.87680216752438, 0.3105387335952206, -0.6948813674356649, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:52.825731');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124513, '699', '2025-10-08 00:00:00', 9.534943814385, -0.215414486783061, -0.3757939609691858, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:09.911129');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (126670, '606', '2025-12-02 00:00:00', 9.526957725207463, 0.09348989892082343, -0.3826434328452625, NULL, NULL, NULL, 'nasa_horizons', '2025-12-02 02:56:27.580937');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121020, '301', '2025-11-22 00:00:00', 0.4996790103000436, 0.8491359900618913, -0.0002863311556945867, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.052105');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121026, '699', '2025-11-22 00:00:00', 9.523261372948996, 0.0350936373865583, -0.3796910462246152, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.135233');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124364, '399', '2025-10-02 00:00:00', 0.9894351377731484, 0.1515214276914586, -1.225729523122299e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:02:49.6335');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124374, '399', '2025-10-12 00:00:00', 0.9461593375155526, 0.3178093156976299, -2.670032948796125e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:05.158796');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124384, '399', '2025-10-22 00:00:00', 0.8748142619961335, 0.4747595716419682, -3.084301526859537e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:21.763131');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124394, '599', '2025-10-05 00:00:00', -1.045652665218314, 5.073194270209299, 0.002321098621721593, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:42.088099');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124404, '599', '2025-10-15 00:00:00', -1.120391432534646, 5.060945403450527, 0.004044153988056199, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:59.820354');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124414, '599', '2025-10-25 00:00:00', -1.194892061581141, 5.04761905508249, 0.005766314489426706, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:17.451719');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124424, '199', '2025-10-06 00:00:00', -0.1962751286589498, -0.4200037957866514, -0.01632134495517791, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:32.620203');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124434, '199', '2025-10-16 00:00:00', 0.02050478028506685, -0.4603311985564314, -0.03949998358382142, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:46.735726');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124444, '199', '2025-10-26 00:00:00', 0.2300869935378645, -0.3644039853195326, -0.05088339548702646, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:05.545266');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124454, '499', '2025-10-07 00:00:00', -0.8541256824299065, -1.275506013862816, -0.005784400282579445, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:23.436428');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124464, '499', '2025-10-17 00:00:00', -0.729219831840072, -1.336020316330459, -0.01011547982893249, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:44.202539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124474, '499', '2025-10-27 00:00:00', -0.598203025687115, -1.385328969542663, -0.01436157913910992, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:02.890948');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124484, '899', '2025-10-08 00:00:00', 29.87788340042248, 0.2505324833771937, -0.6936700829416725, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:17.971212');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124494, '899', '2025-10-18 00:00:00', 29.87732913480145, 0.282114711417902, -0.6943084896524602, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:35.771947');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124504, '899', '2025-10-28 00:00:00', 29.87674216671874, 0.3136965799661275, -0.69494542678715, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:54.142426');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124514, '699', '2025-10-09 00:00:00', 9.534755070925726, -0.2098479349891716, -0.3758835714285618, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:12.247608');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121032, '2000001', '2025-11-21 00:00:00', 2.720777385740113, 0.9258007606533296, -0.4719296919192213, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:58.937722');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121038, '136472', '2025-11-21 00:00:00', -45.99275955168812, -8.96288478351486, 24.15536861453374, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.120246');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121021, '899', '2025-11-22 00:00:00', 29.87512876367503, 0.3926430147193583, -0.6965347836956494, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.064411');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121044, '-96', '2025-11-21 00:00:00', 0.564014547168898, -0.2218744177589281, -0.03558880939363059, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.232916');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121027, '10', '2025-11-22 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.151958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121050, '299', '2025-11-21 00:00:00', -0.6138802093830288, -0.3797361881788587, 0.03020379452651512, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.35879');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121054, '399', '2025-11-20 00:00:00', 0.5301580365577784, 0.8339597077491055, -4.987450689001476e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.296648');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121060, '499', '2025-11-20 00:00:00', -0.2648290396141638, -1.453813801493154, -0.02397169218205751, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.428369');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121066, '-168', '2025-11-20 00:00:00', -0.2648118703483788, -1.453798997269536, -0.0239713005973685, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.550774');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121072, '-31', '2025-11-20 00:00:00', -31.78612933900325, -134.3483207199252, 97.2062407900927, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.625359');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124365, '399', '2025-10-03 00:00:00', 0.9864009924669931, 0.168435028965823, -1.377905877866429e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:02:51.833987');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124375, '399', '2025-10-13 00:00:00', 0.9402684383473732, 0.3340052914353365, -2.74914007224362e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:06.718881');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124385, '399', '2025-10-23 00:00:00', 0.8661936321522961, 0.4897493076024739, -3.131245524597997e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:23.679571');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124395, '599', '2025-10-06 00:00:00', -1.053137145034331, 5.072017931619143, 0.002493430066167892, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:43.408255');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124405, '599', '2025-10-16 00:00:00', -1.127852242964783, 5.059660733219137, 0.004216402283654736, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:01.287617');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124415, '599', '2025-10-26 00:00:00', -1.202328683093756, 5.046227880923039, 0.00593848171074189, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:19.73392');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124425, '199', '2025-10-07 00:00:00', -0.1761694505968136, -0.4299193354950115, -0.01897575330145369, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:33.986802');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124435, '199', '2025-10-17 00:00:00', 0.04292589652872537, -0.4569462648449826, -0.04127981642249261, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:48.020774');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124445, '199', '2025-10-27 00:00:00', 0.2478272322451252, -0.3473461778227731, -0.0511165195905005, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:07.301054');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124455, '499', '2025-10-08 00:00:00', -0.8419356071547413, -1.282039984465927, -0.006220251570372631, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:24.725119');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124465, '499', '2025-10-18 00:00:00', -0.7163779594989964, -1.341467775421351, -0.01054454483067961, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:45.731422');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124475, '499', '2025-10-28 00:00:00', -0.5848016366783232, -1.389615325637657, -0.0147800317394139, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:04.161957');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124485, '899', '2025-10-09 00:00:00', 29.87782981847532, 0.2536911412375202, -0.6937339201201773, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:19.245471');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124495, '899', '2025-10-19 00:00:00', 29.87727156944121, 0.2852730470797968, -0.6943718471227331, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:37.063763');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124505, '899', '2025-10-29 00:00:00', 29.87668139858724, 0.3168542164764553, -0.6950092916024273, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:55.408108');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124515, '699', '2025-10-10 00:00:00', 9.53456298273113, -0.2042815458929396, -0.3759729283119707, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:13.503328');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121033, '399', '2025-11-21 00:00:00', 0.5152731579527589, 0.8429997761217524, -5.01875153324075e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:58.968702');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121039, '499', '2025-11-21 00:00:00', -0.2505207358986107, -1.455052021293521, -0.02434850530672322, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.140613');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121022, '-98', '2025-11-22 00:00:00', 19.8867932894705, -60.01523311456464, 2.201548842666936, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.079517');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121045, '-168', '2025-11-21 00:00:00', -0.2505016459929139, -1.45503980875514, -0.0243492352238324, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.251864');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121028, '799', '2025-11-22 00:00:00', 10.01705152707827, 16.72705235899237, -0.06776367488476455, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.164145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121051, '-31', '2025-11-21 00:00:00', -31.78732669041639, -134.3561817358496, 97.21192104015107, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.370948');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124367, '399', '2025-10-05 00:00:00', 0.9794633938951504, 0.2021047189480576, -1.702868540718947e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:02:55.211202');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124377, '399', '2025-10-15 00:00:00', 0.9276468272999, 0.3660989057353051, -2.862975938643806e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:09.755011');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124387, '399', '2025-10-25 00:00:00', 0.848171528313056, 0.5192795794579387, -3.257291899148714e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:26.506084');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124397, '599', '2025-10-08 00:00:00', -1.06809908358062, 5.069631874189459, 0.002838038945519091, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:46.76362');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124407, '599', '2025-10-18 00:00:00', -1.142766728224693, 5.057060960884628, 0.004560939980968959, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:03.970439');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124417, '599', '2025-10-28 00:00:00', -1.217193898101639, 5.043412828334453, 0.006282762672933599, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:22.853191');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124427, '199', '2025-10-09 00:00:00', -0.1344657772207659, -0.4459364688105566, -0.02410976005934908, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:36.859567');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124437, '199', '2025-10-19 00:00:00', 0.08730839633185306, -0.4460283165588825, -0.0444583243519001, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:51.589329');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124447, '199', '2025-10-29 00:00:00', 0.280441037811418, -0.3093763949799632, -0.05100486586650847, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:11.199958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124457, '499', '2025-10-10 00:00:00', -0.8173491459898334, -1.294791726002621, -0.007090386806736904, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:28.59542');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124467, '499', '2025-10-20 00:00:00', -0.6905143397217788, -1.352023397520232, -0.0113999752143175, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:50.076811');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124477, '899', '2025-10-01 00:00:00', 29.87825192881659, 0.2284233703931127, -0.6932235525898953, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:07.106537');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124487, '899', '2025-10-11 00:00:00', 29.87772120728899, 0.2600073044958063, -0.6938621961341673, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:25.151072');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124497, '899', '2025-10-21 00:00:00', 29.87715659492437, 0.2915900470881147, -0.6944991567552001, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:40.337727');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124507, '699', '2025-10-02 00:00:00', 9.536003026479163, -0.2488126207350204, -0.3752529910326217, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:58.039152');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121023, '-96', '2025-11-22 00:00:00', 0.5555385938357499, -0.209596978783959, -0.03493103965176798, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.093975');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121029, '299', '2025-11-22 00:00:00', -0.6031424539406429, -0.3968808340630078, 0.02934868747670905, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.183058');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124369, '399', '2025-10-07 00:00:00', 0.9713735822019796, 0.2355331898967858, -2.031586456387916e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:02:57.856467');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124379, '399', '2025-10-17 00:00:00', 0.913914381985117, 0.3977609089543902, -2.934332714828651e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:13.769838');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124389, '399', '2025-10-27 00:00:00', 0.8291268093959475, 0.5481795544296455, -3.43131760904015e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:31.047595');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124399, '599', '2025-10-10 00:00:00', -1.083050213045816, 5.067203052190134, 0.00318266636749654, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:50.181765');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124409, '599', '2025-10-20 00:00:00', -1.157673117886748, 5.054417729167183, 0.004905401104483104, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:08.831662');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124419, '199', '2025-10-01 00:00:00', -0.2867954057247909, -0.3522277806452484, -0.002480034667643508, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:25.734424');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124429, '199', '2025-10-11 00:00:00', -0.09119339072997337, -0.4567528215506243, -0.02896262839973831, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:39.567624');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124439, '199', '2025-10-21 00:00:00', 0.1306033142249385, -0.4295694726646402, -0.04708426422637457, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:54.776648');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124449, '499', '2025-10-02 00:00:00', -0.9140118710771867, -1.241287268843688, -0.003598780257011277, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:14.223254');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124459, '499', '2025-10-12 00:00:00', -0.7924932076934027, -1.307116593998723, -0.007958184316807322, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:33.08429');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124469, '499', '2025-10-22 00:00:00', -0.664417155004527, -1.362121714901249, -0.01225154949127879, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:54.400683');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124479, '899', '2025-10-03 00:00:00', 29.87814860390037, 0.2347409253802002, -0.6933508956209264, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:10.249368');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124489, '899', '2025-10-13 00:00:00', 29.87761023176175, 0.2663236511839104, -0.6939893574103807, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:28.3327');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124499, '899', '2025-10-23 00:00:00', 29.87703987974801, 0.297905748213716, -0.6946272091649253, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:43.174958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124509, '699', '2025-10-04 00:00:00', 9.535663759391024, -0.2376807238209863, -0.3754336312475745, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:01.254351');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121024, '-168', '2025-11-22 00:00:00', -0.2361687979606413, -1.456147221940566, -0.0247247520587346, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.107946');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121030, '-31', '2025-11-22 00:00:00', -31.7885240374322, -134.3640427540344, 97.21760128428863, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:01.194027');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124370, '399', '2025-10-08 00:00:00', 0.9668991350724949, 0.2521455459439324, -2.186994209202328e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:02:59.233407');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124380, '399', '2025-10-18 00:00:00', 0.9066355291398701, 0.4134172665380839, -2.961561417335093e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:15.035741');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124390, '599', '2025-10-01 00:00:00', -1.015693730236909, 5.07779139775214, 0.001631714861502012, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:34.147149');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124400, '599', '2025-10-11 00:00:00', -1.090522356116824, 5.065973486879495, 0.003355005113666352, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:51.829738');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124410, '599', '2025-10-21 00:00:00', -1.165122603943721, 5.053079282463682, 0.00507759030960385, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:10.827035');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124420, '199', '2025-10-02 00:00:00', -0.2702405012963749, -0.368124916022226, -0.005297597301027895, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:27.000843');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124430, '199', '2025-10-12 00:00:00', -0.06912721848347336, -0.46017324283328, -0.0312660559682483, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:40.833882');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124440, '199', '2025-10-22 00:00:00', 0.1516581286665198, -0.4192663251182727, -0.04817340713853122, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:58.785626');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124450, '499', '2025-10-03 00:00:00', -0.9021791872251983, -1.248334835563241, -0.004036630850476968, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:15.586291');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124460, '499', '2025-10-13 00:00:00', -0.7799663231916373, -1.313116991052339, -0.008391112921110578, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:36.091549');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124470, '499', '2025-10-23 00:00:00', -0.6512833640472969, -1.36699756652365, -0.0126757939296723, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:55.719369');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124480, '899', '2025-10-04 00:00:00', 29.87809667225405, 0.2378993142227574, -0.6934150765883117, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:12.326056');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124490, '899', '2025-10-14 00:00:00', 29.87755468677878, 0.2694823111503727, -0.6940528316099044, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:29.858678');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124500, '899', '2025-10-24 00:00:00', 29.8769805391987, 0.3010636418435131, -0.6946907597662655, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:44.840876');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124510, '699', '2025-10-05 00:00:00', 9.535489049562413, -0.2321143653131554, -0.375523894658992, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:05.055568');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121034, '136199', '2025-11-21 00:00:00', 85.23369824788233, 39.42833603245084, -17.53813458845789, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.008009');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121040, '199', '2025-11-21 00:00:00', 0.1464216804627782, 0.2724735587466777, 0.008837455252109664, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.16252');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121046, '999', '2025-11-21 00:00:00', 19.11653358147217, -29.69359208459163, -2.350828904314857, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.272423');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121052, '-32', '2025-11-21 00:00:00', 39.12799575141083, -103.7703506044633, -87.65057526028947, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.383853');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121055, '136199', '2025-11-20 00:00:00', 85.234175492098, 39.42747761247371, -17.53907176905182, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.323893');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121061, '199', '2025-11-20 00:00:00', 0.1760453381910405, 0.2567180573626401, 0.004832812247135329, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.448527');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121067, '999', '2025-11-20 00:00:00', 19.11382129154279, -29.69458266661828, -2.349928771498209, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.569784');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121073, '-32', '2025-11-20 00:00:00', 39.12556800669115, -103.764955486434, -87.64403646549522, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.632958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124371, '399', '2025-10-09 00:00:00', 0.9621395958265041, 0.2686839489038284, -2.33110842205987e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:00.587402');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124381, '399', '2025-10-19 00:00:00', 0.8990840066636075, 0.4289503745059071, -2.987313255430244e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:16.507747');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124391, '599', '2025-10-02 00:00:00', -1.023186378945577, 5.076657845552267, 0.00180405340573192, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:35.743669');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124401, '599', '2025-10-12 00:00:00', -1.097993202833612, 5.064732798246792, 0.003527309959162923, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:53.286419');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124411, '599', '2025-10-22 00:00:00', -1.172569403493006, 5.051730293410146, 0.00524977615120375, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:13.145659');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124421, '199', '2025-10-03 00:00:00', -0.2528460283595493, -0.3828786896329713, -0.008098726697367041, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:28.531631');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124431, '199', '2025-10-13 00:00:00', -0.04685945329248674, -0.4622514889445806, -0.03347828777932238, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:42.336237');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124441, '199', '2025-10-23 00:00:00', 0.1722151312209128, -0.4075877360619911, -0.0491044865121249, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:01.432808');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124451, '499', '2025-10-04 00:00:00', -0.890273437587128, -1.255281308049072, -0.004474154565664084, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:17.139259');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124461, '499', '2025-10-14 00:00:00', -0.7673746555738307, -1.319008328639844, -0.008823344615057764, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:37.481826');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124471, '499', '2025-10-24 00:00:00', -0.6380940677930379, -1.371756923504201, -0.01309895812750955, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:57.047702');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124481, '899', '2025-10-05 00:00:00', 29.87804404069703, 0.2410573319276129, -0.6934792657442586, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:13.806801');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124491, '899', '2025-10-15 00:00:00', 29.87749914655755, 0.2726408494803514, -0.6941166738097487, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:31.580491');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124501, '899', '2025-10-25 00:00:00', 29.8769210382456, 0.3042219433571596, -0.6947540619603998, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:48.223876');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124511, '699', '2025-10-06 00:00:00', 9.535310834673258, -0.2265478061800944, -0.375614072624643, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:06.79867');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121035, '136108', '2025-11-21 00:00:00', -37.07940002734468, -23.53588455359577, 23.55577333541603, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.026731');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121041, '301', '2025-11-21 00:00:00', 0.5141868476550505, 0.8405205516833065, -0.0002843115152992565, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.180774');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121047, '699', '2025-11-21 00:00:00', 9.523592151094132, 0.02952606170121896, -0.3796069576666521, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.292618');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121056, '136108', '2025-11-20 00:00:00', -37.08077783390541, -23.53412996121338, 23.55590555310632, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.3444');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121062, '301', '2025-11-20 00:00:00', 0.5285836047822671, 0.831754643722901, -0.0002718630162598258, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.470752');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121068, '699', '2025-11-20 00:00:00', 9.523919435127034, 0.0239586194664627, -0.3795227947522005, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.588099');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124372, '399', '2025-10-10 00:00:00', 0.9570958589285767, 0.2851438307366212, -2.460802506877156e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:01.895392');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124382, '399', '2025-10-20 00:00:00', 0.8912618235500668, 0.4443551479654542, -3.014573101737135e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:17.804735');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124392, '599', '2025-10-03 00:00:00', -1.030677105777904, 5.075514041268307, 0.001976406617141309, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:37.716905');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124402, '599', '2025-10-13 00:00:00', -1.105461475694754, 5.063481420531084, 0.003699614977593518, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:03:55.178496');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124412, '599', '2025-10-23 00:00:00', -1.180013046027835, 5.050369872224355, 0.00542193681960935, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:14.783478');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124422, '199', '2025-10-04 00:00:00', -0.2346772983233886, -0.3964603111406053, -0.01087507968542267, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:30.030522');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124432, '199', '2025-10-14 00:00:00', -0.02445456881135593, -0.4629766256697861, -0.03559251675576607, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:04:43.619225');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124442, '199', '2025-10-24 00:00:00', 0.1921943750051283, -0.3945425129049888, -0.04987088941501582, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:02.922918');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124452, '499', '2025-10-05 00:00:00', -0.8782954061144034, -1.262125869583696, -0.004911315062735327, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:18.84486');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124462, '499', '2025-10-15 00:00:00', -0.754719087632219, -1.324789837210062, -0.00925484162332962, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:39.290783');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124472, '499', '2025-10-25 00:00:00', -0.6248502490838407, -1.376399076708993, -0.01352100312154995, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:05:58.922243');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124482, '899', '2025-10-06 00:00:00', 29.87799069548356, 0.2442153612064488, -0.6935431054058344, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:15.172372');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124492, '899', '2025-10-16 00:00:00', 29.87744318972391, 0.2757989637921429, -0.6941808069663492, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:32.850593');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124502, '899', '2025-10-26 00:00:00', 29.87686164299807, 0.3073804507247981, -0.6948175196793092, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:06:50.896516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124512, '699', '2025-10-07 00:00:00', 9.53512908652384, -0.2209811429122615, -0.3757041132397606, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:08.195073');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121036, '-61', '2025-11-21 00:00:00', -1.39228258885029, 5.00651525734454, -0.002745777939337636, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.062905');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121042, '899', '2025-11-21 00:00:00', 29.8751976045219, 0.3894856564167609, -0.6964712991999211, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.192673');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121048, '10', '2025-11-21 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.311236');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121058, '599', '2025-11-20 00:00:00', -1.387371070782575, 5.007974325130299, 0.01023738287935172, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.384986');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121064, '-98', '2025-11-20 00:00:00', 19.8806506307693, -60.0007696439416, 2.200979508967909, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.510445');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121070, '799', '2025-11-20 00:00:00', 10.02387199069722, 16.72337579811799, -0.06786570153534668, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.605691');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124517, '699', '2025-10-12 00:00:00', 9.534169029537706, -0.1931493174431772, -0.3761508801741268, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:16.440072');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124527, '699', '2025-10-22 00:00:00', 9.532014797854512, -0.1374849970440142, -0.3770340372688112, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:33.118479');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124537, '799', '2025-10-03 00:00:00', 10.1870798454247, 16.63432508832033, -0.07031262196050103, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:50.955685');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124547, '799', '2025-10-13 00:00:00', 10.15315460927034, 16.65300594129823, -0.06980350710089893, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:08.068138');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124557, '799', '2025-10-23 00:00:00', 10.11918919275823, 16.6716191432461, -0.06929392214008354, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:21.864786');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124567, '299', '2025-10-04 00:00:00', -0.4985474671772365, 0.5160462766037655, 0.0358557323080604, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:37.552981');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124577, '299', '2025-10-14 00:00:00', -0.6230543136361495, 0.3558674681174813, 0.04083916701416129, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:52.883732');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124587, '299', '2025-10-24 00:00:00', -0.6982308629352671, 0.1675074069114398, 0.04258907709570187, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:08.155524');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121037, '599', '2025-11-21 00:00:00', -1.394735965185506, 5.006305948632727, 0.010409092229994, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.088892');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121043, '-98', '2025-11-21 00:00:00', 19.88372197061141, -60.00800140911884, 2.201264177134536, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.209245');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121049, '799', '2025-11-21 00:00:00', 10.02046197776583, 16.7252144075036, -0.0678147359588153, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:00:59.322656');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121053, '2000001', '2025-11-20 00:00:00', 2.724314971996853, 0.9167019112253775, -0.4728694493893108, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.267292');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121059, '136472', '2025-11-20 00:00:00', -45.99294322944896, -8.960743022237374, 24.15569013220421, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.40697');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121065, '-96', '2025-11-20 00:00:00', 0.5717444108564447, -0.2338584753322552, -0.03619950314643836, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.530118');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121071, '299', '2025-11-20 00:00:00', -0.6241362790695217, -0.3622935833194268, 0.03103520188398069, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.613516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124518, '699', '2025-10-13 00:00:00', 9.533967418007206, -0.1875834920469278, -0.3762394944235177, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:18.496334');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124528, '699', '2025-10-23 00:00:00', 9.531781089217196, -0.131917551137496, -0.3771220058733131, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:35.278917');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124538, '799', '2025-10-04 00:00:00', 10.18368917752158, 16.63619621679338, -0.07026166018611561, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:53.925362');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124548, '799', '2025-10-14 00:00:00', 10.14975983188987, 16.65487032670257, -0.06975249432707821, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:09.372545');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124558, '799', '2025-10-24 00:00:00', 10.11579042294705, 16.67347674895939, -0.0692429109926457, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:23.200696');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124568, '299', '2025-10-05 00:00:00', -0.5129665276173927, 0.5016818265803804, 0.03649036674086387, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:38.886059');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124578, '299', '2025-10-15 00:00:00', -0.6329211723537765, 0.338066522996996, 0.04116392713532238, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:54.641945');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124588, '299', '2025-10-25 00:00:00', -0.7027738825750314, 0.1476840880392892, 0.04257886767522631, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:09.618646');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121075, '399', '2025-11-19 00:00:00', 0.5448795002942614, 0.8246627327663761, -4.966664264463072e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:43.862548');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121076, '136199', '2025-11-19 00:00:00', 85.23465270960021, 39.42661916852716, -17.54000894373411, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:43.890219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121077, '136108', '2025-11-19 00:00:00', -37.08215554946525, -23.53237532306739, 23.55603771437193, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:43.912244');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121116, '2000001', '2025-11-29 07:00:00', 2.690191661205008, 1.000807199731037, -0.4639205097513772, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:48.95547');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121118, '399', '2025-11-29 07:00:00', 0.3861991680147107, 0.9076859661668156, -5.646229780698756e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.071519');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121120, '136199', '2025-11-29 07:00:00', 85.22974007626321, 39.43545284243591, -17.53036357232317, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.085246');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121122, '136108', '2025-11-29 07:00:00', -37.0679722019631, -23.55043128413127, 23.55467485610261, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.096165');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121124, '-61', '2025-11-29 07:00:00', -1.446588905411299, 4.984773616451051, -0.02120662036520949, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.105751');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121126, '599', '2025-11-29 07:00:00', -1.455689535935649, 4.992066276004009, 0.01183196374513975, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.115095');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121128, '136472', '2025-11-29 07:00:00', -45.99123287998835, -8.98064326124199, 24.15270081308129, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.123278');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121130, '499', '2025-11-29 07:00:00', -0.1311134628812838, -1.460127853227868, -0.02738295059214414, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.132036');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121132, '199', '2025-11-29 07:00:00', -0.1255711795028115, 0.2899131973294495, 0.03520969965690823, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.140231');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121134, '301', '2025-11-29 07:00:00', 0.3886762755886178, 0.9072165895450842, -3.594443049047247e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.149114');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121136, '899', '2025-11-29 07:00:00', 29.87461909256598, 0.4156676627129695, -0.6969968924760647, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.159668');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121138, '-98', '2025-11-29 07:00:00', 19.9091876944065, -60.0679624948371, 2.203624448829427, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.168825');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121140, '-96', '2025-11-29 07:00:00', 0.46705973765227, -0.1110923013979525, -0.02847241499811247, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.176428');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121142, '-168', '2025-11-29 07:00:00', -0.131101777878212, -1.46010872239344, -0.02737954906591195, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.185289');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121144, '999', '2025-11-29 07:00:00', 19.13906388883634, -29.68528703154565, -2.358236543509062, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.194223');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121146, '699', '2025-11-29 07:00:00', 9.520745073049984, 0.07568773131788183, -0.3802986225852781, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.202745');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121148, '10', '2025-11-29 07:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.210856');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121150, '799', '2025-11-29 07:00:00', 9.992172255409104, 16.74043342745887, -0.06739113499501306, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.218645');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121152, '299', '2025-11-29 07:00:00', -0.5111507756003645, -0.5116831353275273, 0.02246358103560512, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.226247');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121154, '-31', '2025-11-29 07:00:00', -31.79725455441438, -134.4213627454804, 97.25901955176592, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.234995');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121156, '-32', '2025-11-29 07:00:00', 39.14812573352302, -103.8150851099927, -87.70479241944186, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:04:49.242419');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121078, '-61', '2025-11-19 00:00:00', -1.378139736147734, 5.005968752686201, 0.007438904375627904, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:43.941861');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121079, '599', '2025-11-19 00:00:00', -1.380002431912445, 5.009632586127569, 0.010065682941693, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:43.970958');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121084, '899', '2025-11-19 00:00:00', 29.87533315885626, 0.3831705714979188, -0.696343651890125, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.034728');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121111, '10', '2025-11-18 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.44587');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121080, '136472', '2025-11-19 00:00:00', -45.99312681194851, -8.958601253399733, 24.15601160097864, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:43.985149');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121158, '2000001', '2025-11-17 00:00:00', 2.734731956725958, 0.8893399539042881, -0.4756547228341877, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.252149');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121160, '136199', '2025-11-17 00:00:00', 85.23560706428864, 39.42490220876687, -17.54188327534155, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.298012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121099, '-61', '2025-11-18 00:00:00', -1.368409733371093, 5.004429420323785, 0.001138115573039317, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.319537');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121100, '599', '2025-11-18 00:00:00', -1.372631076670907, 5.011279465133757, 0.009893930346540689, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.337545');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121101, '136472', '2025-11-18 00:00:00', -45.99331029923152, -8.956459476997175, 24.15633302086158, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.350106');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121162, '-61', '2025-11-17 00:00:00', -1.359534714898262, 5.004319929833888, -0.003476215114963798, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.330343');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121103, '199', '2025-11-18 00:00:00', 0.2298955889845707, 0.2178944338250328, -0.003279062723315422, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.371712');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121104, '301', '2025-11-18 00:00:00', 0.557109597971929, 0.8137299312495498, -0.0002183099356290012, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.381542');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121085, '-98', '2025-11-19 00:00:00', 19.87757926988833, -59.99353781901088, 2.200694838171879, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.052426');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121106, '-98', '2025-11-18 00:00:00', 19.87450788791805, -59.98630593430002, 2.20041016475117, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.40125');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121107, '-96', '2025-11-18 00:00:00', 0.5850895107721029, -0.2569514901809968, -0.03728686501807828, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.411085');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121109, '999', '2025-11-18 00:00:00', 19.10837124224095, -29.6965829686068, -2.348116303571256, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.428989');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121110, '699', '2025-11-18 00:00:00', 9.524563982394064, 0.01282448814841469, -0.3793544703245792, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.438279');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121112, '799', '2025-11-18 00:00:00', 10.03069072518602, 16.7196965408613, -0.06796777958712427, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.453743');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121113, '299', '2025-11-18 00:00:00', -0.6431704516904453, -0.3265688446488872, 0.03262427199690519, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.461338');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121093, '-31', '2025-11-19 00:00:00', -31.78493198324333, -134.340459706256, 97.20056053411834, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.156967');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121094, '-32', '2025-11-19 00:00:00', 39.1231402600164, -103.7595603680434, -87.63749766165503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.166686');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121096, '399', '2025-11-18 00:00:00', 0.5594329088642037, 0.8151120578397519, -4.955231356624731e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.246426');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121081, '499', '2025-11-19 00:00:00', -0.2791130668568854, -1.452442323343522, -0.0235926817343714, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:43.998028');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121082, '199', '2025-11-19 00:00:00', 0.2039455911753512, 0.2384473952807514, 0.0007806940544314889, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.010014');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121097, '136199', '2025-11-18 00:00:00', 85.23512990034358, 39.42576070062062, -17.54094611249913, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.273437');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121083, '301', '2025-11-19 00:00:00', 0.5428863687786563, 0.8228288233183914, -0.0002495436834880838, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.02287');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121086, '-96', '2025-11-19 00:00:00', 0.5787599156018625, -0.2455504436779811, -0.03676496924833183, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.065051');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121087, '-168', '2025-11-19 00:00:00', -0.2790981703884557, -1.452425310878611, -0.02359101676143428, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.077127');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121088, '999', '2025-11-19 00:00:00', 19.11109998532688, -29.69557795749171, -2.349020974669759, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.090917');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121102, '499', '2025-11-18 00:00:00', -0.2933715743389867, -1.450938056098131, -0.02321151428120386, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.360664');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121069, '10', '2025-11-20 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.598288');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121089, '699', '2025-11-19 00:00:00', 9.52424333230577, 0.01839142859087809, -0.3794386281778517, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.104512');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121090, '10', '2025-11-19 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.121291');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121108, '-168', '2025-11-18 00:00:00', -0.2933592455128781, -1.450919274520366, -0.02320845614408759, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.420242');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121091, '799', '2025-11-19 00:00:00', 10.02728154093738, 16.72153651376569, -0.06791673368358792, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.133372');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121092, '299', '2025-11-19 00:00:00', -0.6339023413162125, -0.3445665466058903, 0.03184224354855599, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:44.144934');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121159, '399', '2025-11-17 00:00:00', 0.5738137207892515, 0.8053110068557234, -4.951535168192831e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.279754');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121098, '136108', '2025-11-18 00:00:00', -37.08353317406772, -23.53062063915383, 23.55616981921878, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.293783');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121161, '136108', '2025-11-17 00:00:00', -37.0849107077504, -23.52886590946543, 23.55630186765252, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.313542');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121114, '-31', '2025-11-18 00:00:00', -31.78373462318179, -134.3325986948317, 97.1948802722326, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.468572');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121115, '-32', '2025-11-18 00:00:00', 39.12071251134064, -103.7541652492809, -87.63095884876253, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.475087');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121063, '899', '2025-11-20 00:00:00', 29.87526572929165, 0.3863283018782552, -0.6964074683772483, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.491848');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121163, '599', '2025-11-17 00:00:00', -1.36525649765955, 5.012915649168125, 0.009722154579107056, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.345657');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121105, '899', '2025-11-18 00:00:00', 29.87540029400838, 0.3800124603898609, -0.6962801876609463, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:03:49.390835');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124519, '699', '2025-10-14 00:00:00', 9.533762857135839, -0.1820177467445843, -0.3763279406868104, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:20.064381');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121165, '499', '2025-11-17 00:00:00', -0.3076033277682061, -1.449301480051983, -0.02282823015071586, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.373491');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121171, '-168', '2025-11-17 00:00:00', -0.3075937966818962, -1.449281413100945, -0.02282369420435279, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.454534');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121177, '-31', '2025-11-17 00:00:00', -31.78253725885787, -134.3247376856393, 97.18920000443993, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.530747');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124520, '699', '2025-10-15 00:00:00', 9.533555365694257, -0.1764519700510593, -0.3764162796750883, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:21.573921');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124530, '699', '2025-10-25 00:00:00', 9.531303193523827, -0.1207827745863307, -0.3772973719526512, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:40.814047');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124540, '799', '2025-10-06 00:00:00', 10.17690668657271, 16.63993643082601, -0.07015974305709066, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:57.705978');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124550, '799', '2025-10-16 00:00:00', 10.14296924515178, 16.65859704955128, -0.06965031132680675, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:11.907902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124560, '799', '2025-10-26 00:00:00', 10.1089917324169, 16.67718990608617, -0.0691409590275433, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:26.514386');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124570, '299', '2025-10-07 00:00:00', -0.5405655433917874, 0.4717638017624402, 0.0376718024166455, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:41.708074');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124580, '299', '2025-10-17 00:00:00', -0.6511342925696533, 0.3016708136487187, 0.04171480309724646, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:57.677404');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124590, '299', '2025-10-27 00:00:00', -0.7101812830549143, 0.1077012028164113, 0.04245697200568162, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:12.549851');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121182, '136108', '2025-11-16 00:00:00', -37.08628815054484, -23.52711113399294, 23.55643385967842, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.906137');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121205, '599', '2025-11-15 00:00:00', -1.350499847838176, 5.016155402303933, 0.00937849728240825, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.328591');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121188, '301', '2025-11-16 00:00:00', 0.5853586627594294, 0.7949445816775019, -0.0001347466847844484, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.98464');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121211, '-98', '2025-11-15 00:00:00', 19.86529361505614, -59.96460992117733, 2.19955612878337, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.497965');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121194, '699', '2025-11-16 00:00:00', 9.52519594564637, 0.001691215612419266, -0.3791861420197879, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.155536');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121217, '799', '2025-11-15 00:00:00', 10.04091602828758, 16.71417252882209, -0.06812081005880277, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.676478');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121166, '199', '2025-11-17 00:00:00', 0.2537087412421609, 0.1953140206244628, -0.007308517340090589, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.386249');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121172, '999', '2025-11-17 00:00:00', 19.10564316138497, -29.69759387668083, -2.347222747632194, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.466017');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121178, '-32', '2025-11-17 00:00:00', 39.11828476062387, -103.7487701301328, -87.62442002681168, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.54108');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124521, '699', '2025-10-16 00:00:00', 9.533344915214295, -0.1708860304642714, -0.3765045773542055, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:23.076318');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124531, '699', '2025-10-26 00:00:00', 9.531059095692124, -0.1152156536807858, -0.3773846717706937, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:42.166588');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124541, '799', '2025-10-07 00:00:00', 10.17351482162547, 16.64180551890718, -0.07010883546812748, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:59.045828');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124551, '799', '2025-10-17 00:00:00', 10.139573436366, 16.66045935451946, -0.06959937510312798, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:13.157459');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124561, '799', '2025-10-27 00:00:00', 10.10559169359652, 16.67904547836941, -0.06909005478773787, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:27.848828');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124571, '299', '2025-10-08 00:00:00', -0.5537235271348597, 0.4562341438001798, 0.03821766448614788, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:43.137488');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124581, '299', '2025-10-18 00:00:00', -0.6594662627007153, 0.283105158851679, 0.04194049425301107, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:59.166943');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124591, '299', '2025-10-28 00:00:00', -0.713040176930868, 0.08757347480243341, 0.04234540657617346, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:13.869695');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121167, '301', '2025-11-17 00:00:00', 0.5712645324757509, 0.8044415614340719, -0.0001794892886624849, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.400338');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121173, '699', '2025-11-17 00:00:00', 9.524881492704433, 0.007257766193642917, -0.3792703138177058, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.477562');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124522, '699', '2025-10-17 00:00:00', 9.533131392661371, -0.1653198747952822, -0.3765928507732335, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:24.407865');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124532, '699', '2025-10-27 00:00:00', 9.530811746684039, -0.1096487797954697, -0.3774716997480285, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:43.977093');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124542, '799', '2025-10-08 00:00:00', 10.17012261217693, 16.64367391869182, -0.07005791782672895, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:00.330062');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124552, '799', '2025-10-18 00:00:00', 10.13617718115383, 16.66232098592371, -0.06954848048027362, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:14.98345');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124562, '799', '2025-10-28 00:00:00', 10.10219124002771, 16.68090039377565, -0.06903902157145544, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:30.227305');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124572, '299', '2025-10-09 00:00:00', -0.5664397620797279, 0.4403405144473493, 0.03873303722557848, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:44.612969');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124582, '299', '2025-10-19 00:00:00', -0.6672730149944955, 0.2643140322769939, 0.0421327827258518, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:00.600652');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124592, '299', '2025-10-29 00:00:00', -0.7153329687709801, 0.06737621976440636, 0.04220022192595003, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:15.270952');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121183, '-61', '2025-11-16 00:00:00', -1.351017691572477, 5.004746443166129, -0.007266995347811123, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.919819');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121189, '899', '2025-11-16 00:00:00', 29.87553472392026, 0.3736965872542014, -0.6961538361174195, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.998637');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121195, '10', '2025-11-16 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.180247');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121168, '899', '2025-11-17 00:00:00', 29.87546749912285, 0.3768543437587473, -0.6962170398377757, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.413885');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121174, '10', '2025-11-17 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.492128');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124523, '699', '2025-10-18 00:00:00', 9.532914767087881, -0.1597534555807471, -0.3766811215448665, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:26.093754');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124533, '699', '2025-10-28 00:00:00', 9.530561240067964, -0.1040821292930629, -0.3775584786197937, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:45.522632');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124543, '799', '2025-10-09 00:00:00', 10.16672997057906, 16.64554162693295, -0.0700071528379468, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:01.853857');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124553, '799', '2025-10-19 00:00:00', 10.13278045781668, 16.66418194548316, -0.06949764960904184, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:16.569218');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124563, '799', '2025-10-29 00:00:00', 10.0987904620783, 16.68275461179721, -0.06898800872366415, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:31.5024');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124573, '299', '2025-10-10 00:00:00', -0.5787041482310801, 0.4240956279809483, 0.03921751254346537, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:45.917669');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124583, '299', '2025-10-20 00:00:00', -0.6745484661618684, 0.2453124527583774, 0.04229152384973367, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:02.141683');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121179, '2000001', '2025-11-16 00:00:00', 2.738138953128643, 0.8801978835021378, -0.4765717885323642, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.822056');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121185, '136472', '2025-11-16 00:00:00', -45.99367698829723, -8.952175901462939, 24.15697571396973, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.937103');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121191, '-96', '2025-11-16 00:00:00', 0.5957908318895393, -0.2788846775093787, -0.03820575960957271, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.038171');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121197, '299', '2025-11-16 00:00:00', -0.6601829681083476, -0.2898176459919987, 0.03411079486848507, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.213816');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121169, '-98', '2025-11-17 00:00:00', 19.87143648481391, -59.97907398977893, 2.20012548871023, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.429799');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121175, '799', '2025-11-17 00:00:00', 10.03409951177028, 16.71785588394152, -0.06801885653307556, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.505171');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124524, '699', '2025-10-19 00:00:00', 9.532694909030553, -0.1541867149424432, -0.3767694083695649, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:27.523563');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124534, '699', '2025-10-29 00:00:00', 9.530307703019748, -0.09851566171921758, -0.3776450429706046, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:47.118516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124544, '799', '2025-10-10 00:00:00', 10.16333675226096, 16.64740869939427, -0.06995636689819239, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:04.134913');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124554, '799', '2025-10-20 00:00:00', 10.12938324220458, 16.66604225770807, -0.06944674553106293, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:17.876644');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124564, '299', '2025-10-01 00:00:00', -0.4529509213327097, 0.5566246971648493, 0.03378229621478209, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:32.884188');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124574, '299', '2025-10-11 00:00:00', -0.5905069553633558, 0.4075124817249746, 0.03967070757275909, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:47.233402');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124584, '299', '2025-10-21 00:00:00', -0.6812869666873885, 0.2261156018953074, 0.04241660022351104, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:03.576355');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121180, '399', '2025-11-16 00:00:00', 0.5880175012886592, 0.795263013262445, -4.953544406798339e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.855504');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121186, '499', '2025-11-16 00:00:00', -0.3218071019207859, -1.447533086370613, -0.02244286967693102, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.951535');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121192, '-168', '2025-11-16 00:00:00', -0.3218005281219667, -1.44751225019871, -0.02243680854158548, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.065271');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121198, '-31', '2025-11-16 00:00:00', -31.78133989030473, -134.3168766786634, 97.18351973074428, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.235445');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121170, '-96', '2025-11-17 00:00:00', 0.5907587876676911, -0.2680626250292831, -0.03776668072858638, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.441813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121176, '299', '2025-11-17 00:00:00', -0.6519330501848043, -0.3083144731036939, 0.03338065874022818, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:06:19.520297');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124525, '699', '2025-10-20 00:00:00', 9.532471679918814, -0.1486196725375243, -0.3768576881943871, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:29.538644');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124535, '799', '2025-10-01 00:00:00', 10.19386013646121, 16.630580776265, -0.07041447085625561, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:48.385862');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124545, '799', '2025-10-11 00:00:00', 10.15994311036493, 16.64927511179883, -0.06990549265685789, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:05.490946');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124555, '799', '2025-10-21 00:00:00', 10.12598568426904, 16.66790188236773, -0.06939582091156964, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:19.216215');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124565, '299', '2025-10-02 00:00:00', -0.4685276904550605, 0.5435286812420637, 0.03450115687450778, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:34.250788');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124575, '299', '2025-10-12 00:00:00', -0.6018388310760459, 0.3906043449359101, 0.04009226498291998, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:48.515013');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124585, '299', '2025-10-22 00:00:00', -0.6874833051094301, 0.2067388111447383, 0.04250792178054245, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:05.11804');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121181, '136199', '2025-11-16 00:00:00', 85.23608420140208, 39.42404369298067, -17.5428204322564, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.887386');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121204, '-61', '2025-11-15 00:00:00', -1.342723372808524, 5.005485531368858, -0.01050737373540252, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.304272');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121187, '199', '2025-11-16 00:00:00', 0.2752398379279164, 0.1709746553569497, -0.01127240875593036, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.967789');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121210, '899', '2025-11-15 00:00:00', 29.87560155548648, 0.370539167527365, -0.6960902541913547, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.472518');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121193, '999', '2025-11-16 00:00:00', 19.1029231432284, -29.69860142782332, -2.346338369990811, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.106972');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121216, '10', '2025-11-15 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.647442');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121199, '-32', '2025-11-16 00:00:00', 39.11585700783215, -103.7433750105832, -87.61788119579676, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.252159');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124526, '699', '2025-10-21 00:00:00', 9.532244994526769, -0.1430524105849581, -0.3769459111784614, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:31.444125');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124536, '799', '2025-10-02 00:00:00', 10.1904701812691, 16.63245326342623, -0.07036361492153073, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:49.650561');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124546, '799', '2025-10-12 00:00:00', 10.15654902845212, 16.65114086464697, -0.06985455308850294, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:06.779835');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124556, '799', '2025-10-22 00:00:00', 10.12258764598029, 16.66976084121811, -0.0693449354047515, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:20.547885');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124566, '299', '2025-10-03 00:00:00', -0.4837305826864362, 0.5299989419609676, 0.03519248610857648, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:35.546548');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124576, '299', '2025-10-13 00:00:00', -0.6126908084983882, 0.3733847474518647, 0.04048185326852814, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:49.772532');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124586, '299', '2025-10-23 00:00:00', -0.6931327118990469, 0.1871975488058604, 0.0425654258336821, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:06.610592');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121201, '399', '2025-11-15 00:00:00', 0.6020399296372148, 0.7849716119349482, -4.958860457584941e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.223794');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121184, '599', '2025-11-16 00:00:00', -1.357879634935806, 5.014541089797126, 0.009550344354872963, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:16.927111');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121207, '499', '2025-11-15 00:00:00', -0.3359816807119272, -1.445633376918838, -0.02205547319481602, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.388922');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121190, '-98', '2025-11-16 00:00:00', 19.86836506053745, -59.97184198541561, 2.199840810053105, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.017462');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121213, '-168', '2025-11-15 00:00:00', -0.3359781491752415, -1.445612307075662, -0.02204787795083824, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.554254');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121196, '799', '2025-11-16 00:00:00', 10.03750800427505, 16.71601452941081, -0.06806989852850126, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:07:17.201777');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121219, '-31', '2025-11-15 00:00:00', -31.78014251754959, -134.3090156738878, 97.1778394511492, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.741656');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124529, '699', '2025-10-24 00:00:00', 9.531543889803633, -0.1263501086735538, -0.3772098019017133, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:37.414472');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124539, '799', '2025-10-05 00:00:00', 10.18029810465834, 16.63806667070731, -0.0702106855862688, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:07:56.197166');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124549, '799', '2025-10-15 00:00:00', 10.14636465545941, 16.65673404549747, -0.06970139985336347, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:10.652215');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124559, '799', '2025-10-25 00:00:00', 10.11239125737447, 16.67533367431814, -0.06919191049203668, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:24.455897');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124569, '299', '2025-10-06 00:00:00', -0.526976272217414, 0.4869170679704479, 0.03709588399768548, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:40.192226');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124579, '299', '2025-10-16 00:00:00', -0.6422836169855074, 0.3199961533880034, 0.04145588109522066, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:08:56.16059');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124589, '299', '2025-10-26 00:00:00', -0.7067583463164937, 0.1277433920574221, 0.04253481704829334, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 03:09:11.120188');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121200, '2000001', '2025-11-15 00:00:00', 2.741513247605629, 0.8710452965785971, -0.4774831621090704, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.183562');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121206, '136472', '2025-11-15 00:00:00', -45.99386019013955, -8.950034102310408, 24.15729698720223, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.356015');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121212, '-96', '2025-11-15 00:00:00', 0.6002065188210186, -0.2894182784211266, -0.03860531465259866, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.524154');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121218, '299', '2025-11-15 00:00:00', -0.667913434686602, -0.2710927847975172, 0.03481409158094013, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.70926');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124593, '-170', '2025-11-30 00:00:00', 0.3761352111950655, 0.923367177853507, -0.002086281774892555, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:35:00.31971');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121202, '136199', '2025-11-15 00:00:00', 85.23656131165644, 39.42318515327742, -17.54375758323922, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.250528');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121208, '199', '2025-11-15 00:00:00', 0.2943843065000165, 0.1451506551492998, -0.01513872776331563, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.412646');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121214, '999', '2025-11-15 00:00:00', 19.10021128315908, -29.69959919220711, -2.345453026455381, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.587858');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121220, '-32', '2025-11-15 00:00:00', 39.11342925293751, -103.7379798906157, -87.61134235571254, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.774862');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121242, '2000001', '2025-11-13 00:00:00', 2.748163646900057, 0.8527090348633699, -0.4792888028160014, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.10661');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121222, '399', '2025-11-14 00:00:00', 0.6158768064345177, 0.7744404304876714, -4.964770005675633e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:04.90469');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121243, '399', '2025-11-13 00:00:00', 0.6295240612482146, 0.763673179505989, -4.968306610405237e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.156782');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121223, '136199', '2025-11-14 00:00:00', 85.23703839502986, 39.42232658967216, -17.5446947282861, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:04.954736');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121263, '2000001', '2025-11-12 00:00:00', 2.751439710674829, 0.8435255908387213, -0.4801830550724725, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.083408');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121284, '2000001', '2025-11-11 00:00:00', 2.754682990435536, 0.8343320918238676, -0.4810715854597131, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.560465');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121264, '399', '2025-11-12 00:00:00', 0.6429777608030948, 0.7526736406066177, -4.966330227191239e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.123664');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121285, '399', '2025-11-11 00:00:00', 0.656234117135902, 0.7414456507445472, -4.955639570870912e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.594019');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121224, '136108', '2025-11-14 00:00:00', -37.08904276356566, -23.52360144565622, 23.55669767452519, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:04.995049');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121265, '136199', '2025-11-12 00:00:00', 85.23799248107063, 39.42060939080817, -17.54656900055923, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.160804');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121245, '136108', '2025-11-13 00:00:00', -37.09041993382711, -23.52184653277432, 23.55682949735394, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.219092');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121286, '136199', '2025-11-11 00:00:00', 85.23846948371644, 39.41975075556995, -17.54750612778052, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.616368');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121225, '-61', '2025-11-14 00:00:00', -1.334589760803948, 5.006438889241545, -0.01333048016747623, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.037465');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121246, '-61', '2025-11-13 00:00:00', -1.326581981392968, 5.0075526532969, -0.01581401343776002, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.252423');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121226, '599', '2025-11-14 00:00:00', -1.343118157260388, 5.017759776520473, 0.009206639486372655, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.077296');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121287, '136108', '2025-11-11 00:00:00', -37.09317400190643, -23.51833656955355, 23.5570929738375, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.637794');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121266, '136108', '2025-11-12 00:00:00', -37.09179701327165, -23.52009157407458, 23.55696126379053, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.195102');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121247, '599', '2025-11-13 00:00:00', -1.335733559279971, 5.019353797687748, 0.009034771589924473, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.280965');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121267, '-61', '2025-11-12 00:00:00', -1.318678040360194, 5.008793453153966, -0.01800815159321302, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.225204');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121228, '499', '2025-11-14 00:00:00', -0.3501258572646687, -1.443602864090272, -0.02166608103482083, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.136334');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121227, '136472', '2025-11-14 00:00:00', -45.99404329688505, -8.94789229555368, 24.15761821155765, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.1126');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121289, '599', '2025-11-11 00:00:00', -1.320954605925105, 5.022510887371489, 0.008691033497792428, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.691291');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121288, '-61', '2025-11-11 00:00:00', -1.310863025554578, 5.010138913898426, -0.0199474193715972, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.663397');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121250, '199', '2025-11-13 00:00:00', 0.3252836296136583, 0.09013468690323648, -0.02246883243241574, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.373986');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121229, '199', '2025-11-14 00:00:00', 0.3110759574818532, 0.118115225912216, -0.01887907644109309, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.165578');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121291, '499', '2025-11-11 00:00:00', -0.3923640442072017, -1.436731783661837, -0.02048633361065322, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.750477');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121209, '301', '2025-11-15 00:00:00', 0.5993952380557941, 0.7852176911700031, -8.604612205788743e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.443201');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121230, '301', '2025-11-14 00:00:00', 0.6133727795347587, 0.7752380210426283, -3.560785111980877e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.195783');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121290, '136472', '2025-11-11 00:00:00', -45.9945920466827, -8.941466829579426, 24.15858159138146, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.720674');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121251, '301', '2025-11-13 00:00:00', 0.627284560634165, 0.7649818210304061, 1.414170496639633e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.407563');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121231, '899', '2025-11-14 00:00:00', 29.87566764703258, 0.367381696410568, -0.696026356441615, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.226474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121232, '-98', '2025-11-14 00:00:00', 19.862222148343, -59.95737779703175, 2.199271444904027, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.248245');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121271, '199', '2025-11-12 00:00:00', 0.3370071452690548, 0.06146394699030638, -0.02588714766847615, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.336001');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121253, '-98', '2025-11-13 00:00:00', 19.85915066037607, -59.95014561294794, 2.198986758417524, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.468779');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121233, '-96', '2025-11-14 00:00:00', 0.604024762934938, -0.2996638467746031, -0.03896644281107165, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.265877');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121272, '301', '2025-11-12 00:00:00', 0.6411180405718808, 0.7544253209689463, 6.063461813243437e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.369737');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121254, '-96', '2025-11-13 00:00:00', 0.6072627293254937, -0.3096215794290372, -0.03929013706139536, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.500034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121215, '699', '2025-11-15 00:00:00', 9.525507421196156, -0.003875257041347746, -0.3791019136577699, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.616199');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121274, '-98', '2025-11-12 00:00:00', 19.85607915113766, -59.94291336889702, 2.198702069325725, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.423575');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121256, '999', '2025-11-13 00:00:00', 19.09478196721406, -29.70158056798825, -2.343651402801779, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.554907');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121234, '-168', '2025-11-14 00:00:00', -0.3501253762489304, -1.443582102017813, -0.02165698144757297, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.309068');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121257, '699', '2025-11-13 00:00:00', 9.52612151317758, -0.01500831086406346, -0.3789331150373985, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.587372');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121275, '-96', '2025-11-12 00:00:00', 0.6099360140785901, -0.3192914426884879, -0.03957729669326079, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.435458');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121255, '-168', '2025-11-13 00:00:00', -0.3642409348161932, -1.441422150017437, -0.02126419728658868, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.527685');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121276, '-168', '2025-11-12 00:00:00', -0.3783235614184007, -1.439132962800123, -0.02086960200035046, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.452151');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121258, '10', '2025-11-13 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.610417');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121235, '999', '2025-11-14 00:00:00', 19.09750028253156, -29.70058930776463, -2.344557420751488, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.325999');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121277, '999', '2025-11-12 00:00:00', 19.09205457818165, -29.70258057326473, -2.342744093564619, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.471803');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121278, '699', '2025-11-12 00:00:00', 9.526424053709631, -0.02057514450765794, -0.3788484042261382, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.48611');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121236, '699', '2025-11-14 00:00:00', 9.525815929891985, -0.009441722791786955, -0.379017592701525, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.341149');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121259, '799', '2025-11-13 00:00:00', 10.04773073217005, 16.71048650291236, -0.06822277109108882, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.628462');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121279, '10', '2025-11-12 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.500902');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121237, '10', '2025-11-14 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.35479');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121260, '299', '2025-11-13 00:00:00', -0.68179095778648, -0.2330176164571614, 0.03613791518485708, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.657868');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121261, '-31', '2025-11-13 00:00:00', -31.77774775951498, -134.2932936708774, 97.16647887427196, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.689051');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121238, '799', '2025-11-14 00:00:00', 10.04432356401051, 16.71232985881079, -0.06817179163525978, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.368075');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121241, '-32', '2025-11-14 00:00:00', 39.11100149591752, -103.7325847702141, -87.60480350655435, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.412526');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121239, '299', '2025-11-14 00:00:00', -0.6751180833619835, -0.252154507343073, 0.03548998070244165, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.382819');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121280, '799', '2025-11-12 00:00:00', 10.05113743095935, 16.70864248134707, -0.0682737640133375, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.518228');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121282, '-31', '2025-11-12 00:00:00', -31.77655037426456, -134.2854326726161, 97.16079857699398, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.561827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121281, '299', '2025-11-12 00:00:00', -0.6879265174986382, -0.2136970884383709, 0.03675736959308684, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.539298');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121240, '-31', '2025-11-14 00:00:00', -31.77894514061412, -134.3011546712973, 97.17215916565763, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:05.396504');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121283, '-32', '2025-11-12 00:00:00', 39.10614597543602, -103.721794528052, -87.59172578100046, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.585236');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121262, '-32', '2025-11-13 00:00:00', 39.10857373675474, -103.7271896493637, -87.59826464831818, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.718886');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121248, '136472', '2025-11-13 00:00:00', -45.99422630855003, -8.94575048118376, 24.15793938703829, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.315596');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121249, '499', '2025-11-13 00:00:00', -0.3642384339762564, -1.441442070638164, -0.02127473351731837, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.344757');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121269, '136472', '2025-11-12 00:00:00', -45.99440922514645, -8.943608659193766, 24.15826051364585, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.28441');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121270, '499', '2025-11-12 00:00:00', -0.3783182225806387, -1.439151529506737, -0.02088147094750805, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.308653');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121292, '199', '2025-11-11 00:00:00', 0.3462729430224017, 0.03234321022410231, -0.02911681701853953, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.78053');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121252, '899', '2025-11-13 00:00:00', 29.87573307768948, 0.3642238240347369, -0.695962525062837, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:03.440603');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124594, '-170', '2025-11-29 00:00:00', 0.3923105547135643, 0.9167457793469476, -0.002043290631496858, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:35:04.724097');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124598, '136199', '2025-11-30 04:37:07.825636', 85.22930996183027, 39.43622589535747, -17.52951932506764, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.863534');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124603, '136472', '2025-11-30 04:37:14.876211', -45.99106661531419, -8.982572638731629, 24.15241076128694, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.939605');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124608, '899', '2025-11-30 04:37:22.135889', 29.87455511184469, 0.4185128655807267, -0.6970538127865115, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.007707');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124613, '699', '2025-11-30 04:37:29.017381', 9.520422188994333, 0.080703067255525, -0.3803728391956001, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.059682');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124618, '-32', '2025-11-30 04:37:34.914505', 39.15031335690531, -103.8199466394333, -87.71068444282714, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.10736');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121293, '301', '2025-11-11 00:00:00', 0.6548542982020591, 0.7435458958752135, 0.0001012528163910818, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.814012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121299, '699', '2025-11-11 00:00:00', 9.526723416440829, -0.02614224763784721, -0.3787634339655991, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.984673');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124595, '-170', '2025-11-28 00:00:00', 0.4083679492874021, 0.9098439078799184, -0.001998445805203899, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:35:07.367872');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121294, '899', '2025-11-11 00:00:00', 29.87586355336077, 0.3579074297841545, -0.6958358888320268, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.837699');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121300, '10', '2025-11-11 00:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:52.012331');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124596, '2000001', '2025-11-30 04:37:04.287387', 2.686734716275109, 1.008906613592301, -0.4630272434745797, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.825682');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124601, '-61', '2025-11-30 04:37:12.10734', -1.452805729057709, 4.982575353898483, -0.02190647867580486, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.912743');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124606, '601', '2025-11-30 04:37:19.430837', 9.519581301589666, 0.07991092518615261, -0.3798606521605724, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.981437');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124611, '-168', '2025-11-30 04:37:26.247872', -0.1180526689505358, -1.460108155659446, -0.02770456978129467, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.039462');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124616, '299', '2025-11-30 04:37:31.98923', -0.4982251466129092, -0.5244858319644088, 0.021541885668656, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.088955');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121295, '-98', '2025-11-11 00:00:00', 19.85300762061366, -59.9356810648527, 2.198417377629934, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.860438');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121301, '799', '2025-11-11 00:00:00', 10.05454374303817, 16.70679776940774, -0.06832481938112808, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:52.0384');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124597, '399', '2025-11-30 04:37:06.337396', 0.3716397709916897, 0.9135750240825097, -5.729589435300106e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.84654');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124602, '599', '2025-11-30 04:37:13.524549', -1.462299440771291, 4.990476392583655, 0.0119864772560872, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.926547');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124607, '301', '2025-11-30 04:37:20.930715', 0.3741210500210676, 0.9136481042786534, 9.178255115210835e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.995671');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124612, '999', '2025-11-30 04:37:27.611455', 19.14151714783424, -29.68437451098797, -2.359036184475611, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.049864');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124617, '-31', '2025-11-30 04:37:33.427156', -31.79833342683087, -134.4284461783798, 97.26413786963604, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.098815');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121296, '-96', '2025-11-11 00:00:00', 0.6120587987552885, -0.3286731651173562, -0.03982873612325444, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.898025');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121302, '299', '2025-11-11 00:00:00', -0.6935196432771117, -0.1942080613263227, 0.03734784057509209, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:52.071324');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124599, '503', '2025-11-30 04:37:09.254095', -1.469465676837047, 4.990413564686626, 0.01188037289109192, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.878593');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124604, '499', '2025-11-30 04:37:16.452438', -0.1180756001355313, -1.460115670210371, -0.02770240640414878, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.953116');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124609, '-98', '2025-11-30 04:37:23.524205', 19.91195469680444, -60.07447757711567, 2.203880903317851, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.019536');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124614, '10', '2025-11-30 04:37:30.448304', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.06857');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124619, '-170', '2025-11-30 04:37:36.399573', 0.3730037326555832, 0.924611245239468, -0.002094353632027287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.115558');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121297, '-168', '2025-11-11 00:00:00', -0.3923720056199827, -1.436715049190479, -0.0204732694806915, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.92256');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121303, '-31', '2025-11-11 00:00:00', -31.77535298487163, -134.2775716765038, 97.155118273825, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:52.098383');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121312, '-61', '2025-11-29 08:00:00', -1.446875457172421, 4.984671273425826, -0.02124279010329963, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.619178');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121314, '599', '2025-11-29 08:00:00', -1.455995287047328, 4.991992940948645, 0.01183911171465089, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.627859');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121316, '136472', '2025-11-29 08:00:00', -45.99122519166909, -8.98073249848676, 24.15268739855103, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.636053');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121318, '499', '2025-11-29 08:00:00', -0.1305106638749494, -1.460129745154133, -0.02739777192280622, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.644996');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121389, '2000001', '2025-10-30 08:48:00.000043', 2.789997805112434, 0.7266806424751554, -0.4909853212336058, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121390, '2000001', '2025-10-31 08:48:00.000043', 2.787137263737347, 0.7359826520236293, -0.4901638723160189, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121391, '2000001', '2025-11-01 08:48:00.000043', 2.784243731647354, 0.7452759454808876, -0.4893366210254809, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121392, '2000001', '2025-11-02 08:48:00.000043', 2.781317224767313, 0.7545604079696083, -0.4885035739346516, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121393, '2000001', '2025-11-03 08:48:00.000043', 2.778357759365697, 0.7638359245705794, -0.4876647376810622, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121394, '2000001', '2025-11-04 08:48:00.000043', 2.775365352055377, 0.773102380323045, -0.4868201189672577, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121395, '2000001', '2025-11-05 08:48:00.000043', 2.772340019794484, 0.7823596602249446, -0.4859697245609594, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121396, '2000001', '2025-11-06 08:48:00.000043', 2.769281779888053, 0.7916076492353643, -0.4851135612951151, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121397, '2000001', '2025-11-07 08:48:00.000043', 2.7661906499877, 0.800846232272376, -0.4842516360681499, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121398, '2000001', '2025-11-08 08:48:00.000043', 2.763066648093204, 0.8100752942140679, -0.4833839558441279, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121399, '2000001', '2025-11-09 08:48:00.000043', 2.759909792553922, 0.8192947198996603, -0.482510527652895, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121400, '2000001', '2025-11-10 08:48:00.000043', 2.75672010206999, 0.8285043941302445, -0.4816313585902317, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121401, '2000001', '2025-11-11 08:48:00.000043', 2.753497595693478, 0.8377042016693622, -0.4807464558180145, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124600, '136108', '2025-11-30 04:37:10.78916', -37.06673028725171, -23.55201147299623, 23.55455528188131, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.897508');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124605, '199', '2025-11-30 04:37:17.959521', -0.153424243644378, 0.279726948979746, 0.03693192249054218, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:37.967013');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124610, '-96', '2025-11-30 04:37:24.824481', 0.4521668008636535, -0.09782120690996551, -0.02743078218692399, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.029589');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124615, '799', '2025-11-30 04:37:30.448316', 9.989096464994397, 16.74208442017572, -0.06734517344304483, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:37:38.078535');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121347, '2000001', '2025-11-29 08:26:52.955027', 2.689960923320852, 1.001350034570798, -0.4638608170566801, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.504306');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121348, '399', '2025-11-29 08:26:55.274914', 0.3852264544569468, 0.9080877222588335, -5.651925273405958e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.555269');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121349, '136199', '2025-11-29 08:26:56.799771', 85.22971124635353, 39.43550466078163, -17.53030698257169, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.586275');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121350, '136108', '2025-11-29 08:26:58.47096', -37.06788893523532, -23.55053723527013, 23.55466684021226, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.607992');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121351, '-61', '2025-11-29 08:27:00.00361', -1.447004437813265, 4.984625240107007, -0.021258943885213, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.627169');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121352, '599', '2025-11-29 08:27:01.576428', -1.456133008464039, 4.991959902527213, 0.01184233141345971, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.642248');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121353, '136472', '2025-11-29 08:27:03.000311', -45.99122172546348, -8.98077272961427, 24.15268135080476, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.662769');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121354, '499', '2025-11-29 08:27:04.541204', -0.1302386369522789, -1.460130520983145, -0.02740445875585062, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.678432');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121355, '199', '2025-11-29 08:27:06.111814', -0.1274726535612634, 0.2892956479321906, 0.03533363417917214, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.692862');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121356, '301', '2025-11-29 08:27:07.704373', 0.3877053284014034, 0.9076552416957356, -3.286102883613013e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.70422');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121357, '899', '2025-11-29 08:27:09.216981', 29.8746147914571, 0.4158587938670452, -0.6970007086702119, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.713846');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121358, '-98', '2025-11-29 08:27:10.739811', 19.90937362522399, -60.06840028101154, 2.20364168150192, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.722555');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121359, '-96', '2025-11-29 08:27:12.210541', 0.4660912358724825, -0.1102077899340574, -0.02840438134127704, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.731353');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121360, '-168', '2025-11-29 08:27:13.762389', -0.1302322487545126, -1.460109489505402, -0.02739755921570656, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.740493');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121361, '999', '2025-11-29 08:27:15.268662', 19.13922863603698, -29.68522579447409, -2.358290105687997, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.749672');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121362, '699', '2025-11-29 08:27:16.724806', 9.520723429665452, 0.07602510657632529, -0.3803036197901746, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.759266');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121363, '10', '2025-11-29 08:27:18.4507', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.768147');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121364, '799', '2025-11-29 08:27:18.450708', 9.991965297963397, 16.7405445385011, -0.06738804052841196, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.775711');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121365, '299', '2025-11-29 08:27:20.011586', -0.5102908670535208, -0.5125551250336835, 0.02240198470077364, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.783661');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121366, '-31', '2025-11-29 08:27:21.591502', -31.79732719114166, -134.421839647513, 97.25936414986776, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.792405');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121367, '-32', '2025-11-29 08:27:23.07691', 39.14827305730492, -103.8154125058168, -87.70518921327022, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:27:24.80126');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121305, '2000001', '2025-11-29 08:00:00', 2.690032329171563, 1.00118207921261, -0.4638792889127214, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.480742');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121307, '399', '2025-11-29 08:00:00', 0.3855277689415577, 0.9079633995043255, -5.65016253365109e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.591274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121308, '136199', '2025-11-29 08:00:00', 85.22972018138023, 39.43548860115774, -17.53032452096962, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.601453');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121310, '136108', '2025-11-29 08:00:00', -37.06791475984382, -23.55050437530944, 23.55466932630465, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.610874');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121320, '199', '2025-11-29 08:00:00', -0.1268814642021615, 0.2894888439275528, 0.03529519906100977, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.65329');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121322, '301', '2025-11-29 08:00:00', 0.3880077446352695, 0.90751876225497, -3.382059879389057e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.661114');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121324, '899', '2025-11-29 08:00:00', 29.87461613145184, 0.4157992448854846, -0.6969995196174873, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.669883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121327, '-98', '2025-11-29 08:00:00', 19.9093156592854, -60.06826379645241, 2.203636309030625, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.678837');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121328, '-96', '2025-11-29 08:00:00', 0.466393854562337, -0.1104838333450535, -0.02842563462272431, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.687019');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121330, '-168', '2025-11-29 08:00:00', -0.1305036148487314, -1.460108995326788, -0.0273919535870717, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.695936');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121332, '999', '2025-11-29 08:00:00', 19.13917717228554, -29.68524492527456, -2.358273372985113, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.70427');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121334, '699', '2025-11-29 08:00:00', 9.520730195442365, 0.07591966090409087, -0.3803020580096138, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.713136');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121336, '10', '2025-11-29 08:00:00', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.721879');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121338, '799', '2025-11-29 08:00:00', 9.992030028974193, 16.7405097861416, -0.06738900840429604, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.730215');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121340, '299', '2025-11-29 08:00:00', -0.5105601577645349, -0.5122823690831316, 0.022421269963893, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.738217');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121342, '-31', '2025-11-29 08:00:00', -31.79730444235934, -134.4216902886156, 97.25925622667256, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.747171');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121344, '-32', '2025-11-29 08:00:00', 39.14822688893766, -103.8153099064224, -87.70506486591329, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:01:05.754982');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121298, '999', '2025-11-11 00:00:00', 19.08932433493653, -29.70358895805277, -2.341845750151573, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:51.959937');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121304, '-32', '2025-11-11 00:00:00', 39.10371821195184, -103.7163994062688, -87.58518690459822, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:11:52.131486');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121402, '2000001', '2025-11-12 08:48:00.000043', 2.750242292829627, 0.8468940272435863, -0.4798558265643884, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121404, '2000001', '2025-11-13 08:48:00.000043', 2.746954213238221, 0.8560737555432278, -0.4789594781239375, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121405, '2000001', '2025-11-14 08:48:00.000043', 2.743633377035057, 0.8652432712232438, -0.4780574178578526, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121406, '2000001', '2025-11-15 08:48:00.000043', 2.740279804693488, 0.8744024589043922, -0.4771496531940828, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121407, '2000001', '2025-11-16 08:48:00.000043', 2.736893517045954, 0.883551203174647, -0.4762361916274667, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121408, '2000001', '2025-11-17 08:48:00.000043', 2.733474535285424, 0.8926893885908558, -0.475317040719836, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121409, '2000001', '2025-11-18 08:48:00.000043', 2.730022880966675, 0.9018168996806046, -0.4743922081000866, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121410, '2000001', '2025-11-19 08:48:00.000043', 2.726538576007329, 0.910933620944238, -0.4734617014642167, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121411, '2000001', '2025-11-20 08:48:00.000043', 2.723021642688602, 0.9200394368569622, -0.4725255285753306, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121412, '2000001', '2025-11-21 08:48:00.000043', 2.71947210365572, 0.9291342318709603, -0.4715836972636132, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121413, '2000001', '2025-11-22 08:48:00.000043', 2.71588998191801, 0.9382178904174411, -0.4706362154262787, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121414, '2000001', '2025-11-23 08:48:00.000043', 2.712275300848678, 0.9472902969085341, -0.4696830910275052, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121415, '2000001', '2025-11-24 08:48:00.000043', 2.708628084184314, 0.9563513357389717, -0.4687243320983612, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121416, '2000001', '2025-11-25 08:48:00.000043', 2.704948356024198, 0.9654008912874826, -0.4677599467367388, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121417, '2000001', '2025-11-26 08:48:00.000043', 2.701236140829496, 0.9744388479178553, -0.4667899431073031, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121418, '2000001', '2025-11-27 08:48:00.000043', 2.697491463422452, 0.9834650899796388, -0.465814329441473, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121419, '2000001', '2025-11-28 08:48:00.000043', 2.693714348985671, 0.9924795018084752, -0.464833114037439, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121420, '2000001', '2025-11-29 08:48:00.000043', 2.689904823061611, 1.001481967726087, -0.4638463052602311, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.47912');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124623, '503', '2025-11-30 00:00:00', -1.467964742627345, 4.991955570225142, 0.01189453902124053, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:45:00.776054');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121435, '399', '2025-10-30 08:48:00.000043', 0.7948249504282126, 0.5953043358850066, -3.825824142607917e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121438, '399', '2025-10-31 08:48:00.000043', 0.7841088130433104, 0.6089137163972417, -3.960814050545087e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121440, '399', '2025-11-01 08:48:00.000043', 0.7731569759401594, 0.6223380657957711, -4.099410255712046e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121442, '399', '2025-11-02 08:48:00.000043', 0.7619727863347765, 0.6355735142473483, -4.23813927788245e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121444, '399', '2025-11-03 08:48:00.000043', 0.750559585996756, 0.6486163147596565, -4.373089656649862e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121446, '399', '2025-11-04 08:48:00.000043', 0.7389206802201425, 0.6614628229774294, -4.500168521749047e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121448, '399', '2025-11-05 08:48:00.000043', 0.7270593140870923, 0.6741094606265904, -4.615484294465211e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121450, '399', '2025-11-06 08:48:00.000043', 0.7149786663969153, 0.6865526665653224, -4.715798471812304e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121452, '399', '2025-11-07 08:48:00.000043', 0.702681868074161, 0.6987888466829256, -4.798933764514254e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121454, '399', '2025-11-08 08:48:00.000043', 0.690172042997357, 0.7108143370833079, -4.864017251363886e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121456, '399', '2025-11-09 08:48:00.000043', 0.6774523600350167, 0.722625390638063, -4.911494939727308e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121458, '399', '2025-11-10 08:48:00.000043', 0.6645260818400965, 0.7342181874839299, -4.942943976540176e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121460, '399', '2025-11-11 08:48:00.000043', 0.6513966000846364, 0.7455888617908187, -4.960771709346651e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121462, '399', '2025-11-12 08:48:00.000043', 0.6380674542339455, 0.7567335345035678, -4.967897658132686e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121465, '399', '2025-11-13 08:48:00.000043', 0.6245423367400254, 0.7676483441463344, -4.967481221017869e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121466, '399', '2025-11-14 08:48:00.000043', 0.6108250897322177, 0.778329471921897, -4.962717113985154e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121467, '399', '2025-11-15 08:48:00.000043', 0.5969196977501685, 0.788773160672812, -4.956692654527087e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121468, '399', '2025-11-16 08:48:00.000043', 0.5828302794389635, 0.7989757289949486, -4.952289490475643e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121469, '399', '2025-11-17 08:48:00.000043', 0.5685610795439817, 0.8089335822188798, -4.952112090114712e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121470, '399', '2025-11-18 08:48:00.000043', 0.5541164614487288, 0.8186432216859935, -4.958430177647163e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121471, '399', '2025-11-19 08:48:00.000043', 0.5395008999305764, 0.8281012531994473, -4.973128270112548e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121498, '136199', '2025-10-30 08:48:00.000043', 85.24401663526359, 39.40976021107112, -17.55840760406556, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121502, '136199', '2025-10-31 08:48:00.000043', 85.243539946004, 39.41061912429473, -17.55747054603323, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121504, '136199', '2025-11-01 08:48:00.000043', 85.24306322978791, 39.41147801354683, -17.5565334820553, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121506, '136199', '2025-11-02 08:48:00.000043', 85.24258648662136, 39.41233687884816, -17.55559641213106, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121553, '136108', '2025-10-30 08:48:00.000043', -37.10918629711033, -23.49791665232343, 23.55862105733824, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121555, '136108', '2025-10-31 08:48:00.000043', -37.10781036480758, -23.49967218917282, 23.55849000323084, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121557, '136108', '2025-11-01 08:48:00.000043', -37.1064343417107, -23.50142768036839, 23.5583588927387, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121559, '136108', '2025-11-02 08:48:00.000043', -37.10505822781547, -23.50318312588395, 23.55822772586222, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121472, '399', '2025-11-20 08:48:00.000043', 0.5247189736535969, 0.8373043949937262, -4.997660446315435e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121473, '399', '2025-11-21 08:48:00.000043', 0.509775357030411, 0.8462494851803783, -5.033011553819346e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121474, '399', '2025-11-22 08:48:00.000043', 0.4946748113219496, 0.8549334884514439, -5.079667037281624e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121475, '399', '2025-11-23 08:48:00.000043', 0.4794221750688296, 0.8633535018529302, -5.137592792125451e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121476, '399', '2025-11-24 08:48:00.000043', 0.4640223540479581, 0.8715067596159553, -5.206224715659042e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121477, '399', '2025-11-25 08:48:00.000043', 0.4484803108576155, 0.8793906372430818, -5.284466047011186e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121478, '399', '2025-11-26 08:48:00.000043', 0.4328010539523359, 0.8870026551596858, -5.370690299643812e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121479, '399', '2025-11-27 08:48:00.000043', 0.4169896255415236, 0.8943404821264985, -5.462749538103633e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121480, '399', '2025-11-28 08:48:00.000043', 0.4010510873674503, 0.9014019381634903, -5.557992506822715e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121481, '399', '2025-11-29 08:48:00.000043', 0.3849905032084964, 0.9081849958966438, -5.653304643637654e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.683813');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122034, '899', '2025-11-24 08:48:00.000043', 29.87496514274047, 0.4001167523308015, -0.6966842616219342, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122035, '899', '2025-11-25 08:48:00.000043', 29.87489598791381, 0.4032746185657099, -0.6967478768789536, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122036, '899', '2025-11-26 08:48:00.000043', 29.87482631583977, 0.40643204724821, -0.6968117099449748, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122037, '899', '2025-11-27 08:48:00.000043', 29.87475587759063, 0.4095892579473724, -0.6968753551564214, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122038, '899', '2025-11-28 08:48:00.000043', 29.87468487792474, 0.4127466810665335, -0.6969385938918807, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122039, '899', '2025-11-29 08:48:00.000043', 29.87461376275291, 0.4159045108771062, -0.6970016215802743, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122373, '799', '2025-10-30 08:48:00.000043', 10.09414202996412, 16.68528763060381, -0.06891825316304287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122375, '799', '2025-10-31 08:48:00.000043', 10.0907403351535, 16.68714024435083, -0.06886718884880484, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122377, '799', '2025-11-01 08:48:00.000043', 10.08733825441726, 16.68899217717326, -0.06881612133649144, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122379, '799', '2025-11-02 08:48:00.000043', 10.08393588728772, 16.69084340098867, -0.06876509493241643, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122381, '799', '2025-11-03 08:48:00.000043', 10.08053306314454, 16.69269393430979, -0.0687142458757248, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122383, '799', '2025-11-04 08:48:00.000043', 10.07712970065778, 16.69454382362262, -0.06866336735132364, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122385, '799', '2025-11-05 08:48:00.000043', 10.07372593206279, 16.69639303824063, -0.06861247145317231, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122387, '799', '2025-11-06 08:48:00.000043', 10.07032167817741, 16.69824159643623, -0.06856155228007277, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122389, '799', '2025-11-07 08:48:00.000043', 10.06691702673824, 16.70008948784944, -0.06851054685067756, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122391, '799', '2025-11-08 08:48:00.000043', 10.06351194758056, 16.70193671053995, -0.0684595149006206, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122393, '799', '2025-11-09 08:48:00.000043', 10.06010650986287, 16.70378326735187, -0.06840832598357578, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122394, '799', '2025-11-10 08:48:00.000043', 10.05670085955862, 16.70562910203936, -0.06835715637082894, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122395, '799', '2025-11-11 08:48:00.000043', 10.05329480415545, 16.70747424362763, -0.06830609887807144, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122396, '799', '2025-11-12 08:48:00.000043', 10.04988835893663, 16.70931870197365, -0.06825505581543091, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122397, '799', '2025-11-13 08:48:00.000043', 10.0464814888658, 16.71116247661531, -0.06820408635722566, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122398, '799', '2025-11-14 08:48:00.000043', 10.04307417622953, 16.71300558581787, -0.06815308755096575, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122399, '799', '2025-11-15 08:48:00.000043', 10.03966648550696, 16.71484800350009, -0.0681021437955759, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122400, '799', '2025-11-16 08:48:00.000043', 10.03625826286169, 16.71668977029443, -0.06805120366254178, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122401, '799', '2025-11-17 08:48:00.000043', 10.03284966219583, 16.71853087311887, -0.06800011996895064, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122402, '799', '2025-11-18 08:48:00.000043', 10.02944073815557, 16.7203712761188, -0.06794906454999494, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122403, '799', '2025-11-19 08:48:00.000043', 10.02603141367294, 16.72221099919626, -0.06789801377885647, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122405, '799', '2025-11-20 08:48:00.000043', 10.02262171567476, 16.72405002999285, -0.06784701471896881, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122407, '799', '2025-11-21 08:48:00.000043', 10.0192115170019, 16.72588840218859, -0.06779602548880868, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122408, '799', '2025-11-22 08:48:00.000043', 10.01580095286275, 16.72772609976597, -0.06774494735938157, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122409, '799', '2025-11-23 08:48:00.000043', 10.01239000324179, 16.7295631053332, -0.0676939373108228, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124630, '601', '2025-11-30 00:00:00', 9.519339190094907, 0.08009923389439517, -0.3805196340998815, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 04:45:00.844208');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121508, '136199', '2025-11-03 08:48:00.000043', 85.24210971650923, 39.41319572021791, -17.55465933625985, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121510, '136199', '2025-11-04 08:48:00.000043', 85.2416329194552, 39.41405453767349, -17.55372225444103, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121512, '136199', '2025-11-05 08:48:00.000043', 85.24115609546205, 39.41491333123044, -17.55278516667412, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121514, '136199', '2025-11-06 08:48:00.000043', 85.2406792445317, 39.41577210090202, -17.55184807295875, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121516, '136199', '2025-11-07 08:48:00.000043', 85.24020236666563, 39.41663084669907, -17.55091097329469, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121518, '136199', '2025-11-08 08:48:00.000043', 85.23972546186499, 39.41748956862976, -17.54997386768198, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121520, '136199', '2025-11-09 08:48:00.000043', 85.23924853013112, 39.41834826669941, -17.5490367561209, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121522, '136199', '2025-11-10 08:48:00.000043', 85.23877157146593, 39.41920694091028, -17.54809963861203, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121524, '136199', '2025-11-11 08:48:00.000043', 85.2382945858724, 39.42006559126151, -17.54716251515637, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121526, '136199', '2025-11-12 08:48:00.000043', 85.2378175733553, 39.42092421774905, -17.5462253857553, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121527, '136199', '2025-11-13 08:48:00.000043', 85.23734053392174, 39.42178282036581, -17.54528825041071, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121528, '136199', '2025-11-14 08:48:00.000043', 85.23686346758194, 39.42264139910181, -17.54435110912503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121529, '136199', '2025-11-15 08:48:00.000043', 85.23638637434999, 39.42349995394467, -17.54341396190122, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121530, '136199', '2025-11-16 08:48:00.000043', 85.23590925424448, 39.42435848488012, -17.54247680874284, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121531, '136199', '2025-11-17 08:48:00.000043', 85.23543210728927, 39.42521699189288, -17.541539649654, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121532, '136199', '2025-11-18 08:48:00.000043', 85.23495493351395, 39.42607547496763, -17.54060248463936, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121533, '136199', '2025-11-19 08:48:00.000043', 85.2344777329541, 39.42693393409017, -17.53966531370403, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121534, '136199', '2025-11-20 08:48:00.000043', 85.23400050565141, 39.42779236924881, -17.53872813685349, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121535, '136199', '2025-11-21 08:48:00.000043', 85.23352325165327, 39.42865078043567, -17.53779095409338, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121536, '136199', '2025-11-22 08:48:00.000043', 85.23304597101215, 39.42950916764804, -17.53685376542946, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121537, '136199', '2025-11-23 08:48:00.000043', 85.23256866378475, 39.43036753088958, -17.5359165708673, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121538, '136199', '2025-11-24 08:48:00.000043', 85.23209133003047, 39.43122587017115, -17.53497937041212, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121539, '136199', '2025-11-25 08:48:00.000043', 85.23161396981011, 39.43208418551142, -17.53404216406863, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121540, '136199', '2025-11-26 08:48:00.000043', 85.23113658318418, 39.4329424769371, -17.53310495184087, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121541, '136199', '2025-11-27 08:48:00.000043', 85.23065917021125, 39.4338007444826, -17.53216773373204, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121542, '136199', '2025-11-28 08:48:00.000043', 85.23018173094665, 39.43465898818946, -17.53123050974444, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121544, '136199', '2025-11-29 08:48:00.000043', 85.2297042654411, 39.43551720810552, -17.53029327987943, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.739635');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121680, '599', '2025-10-30 08:48:00.000043', -1.234770517958942, 5.040025929236042, 0.006690075880909382, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121682, '599', '2025-10-31 08:48:00.000043', -1.242192696074162, 5.038577248254766, 0.006862175549920273, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121684, '599', '2025-11-01 08:48:00.000043', -1.249612328901288, 5.037118588393084, 0.007034283177860224, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121686, '599', '2025-11-02 08:48:00.000043', -1.257030178465089, 5.035648599188915, 0.007206341126325722, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121689, '599', '2025-11-03 08:48:00.000043', -1.264445330545771, 5.034168049624242, 0.007378389902536967, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121691, '599', '2025-11-04 08:48:00.000043', -1.271857742913725, 5.032676105433246, 0.007550395853358825, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121693, '599', '2025-11-05 08:48:00.000043', -1.279267660562733, 5.031173504172301, 0.007722381411912308, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121695, '599', '2025-11-06 08:48:00.000043', -1.286673867671541, 5.029659731613509, 0.007894348777316191, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121697, '599', '2025-11-07 08:48:00.000043', -1.294077361686363, 5.028135867517717, 0.008066321012296821, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121699, '599', '2025-11-08 08:48:00.000043', -1.301477884010466, 5.026602014039907, 0.008238301384607025, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121701, '599', '2025-11-09 08:48:00.000043', -1.308876472434138, 5.025057124121888, 0.008410238548177263, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121703, '599', '2025-11-10 08:48:00.000043', -1.31627204236155, 5.023501801486307, 0.008582169763613342, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121705, '599', '2025-11-11 08:48:00.000043', -1.323664841503954, 5.021935301766136, 0.008754060467647673, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121707, '599', '2025-11-12 08:48:00.000043', -1.331054966426289, 5.020358444958092, 0.008925937413736509, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121709, '599', '2025-11-13 08:48:00.000043', -1.33844147897794, 5.018770458703486, 0.00909778976597054, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121711, '599', '2025-11-14 08:48:00.000043', -1.345825194953586, 5.017172619104704, 0.00926965107732257, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121713, '599', '2025-11-15 08:48:00.000043', -1.353205910391472, 5.015564822345159, 0.00944151660021308, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121715, '599', '2025-11-16 08:48:00.000043', -1.360584868465062, 5.01394623319608, 0.009613339567828285, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121717, '599', '2025-11-17 08:48:00.000043', -1.367960820711162, 5.012317106435423, 0.009785147822372959, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121718, '599', '2025-11-18 08:48:00.000043', -1.375334181999726, 5.010676748612221, 0.009956906722022185, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121719, '599', '2025-11-19 08:48:00.000043', -1.382704760513318, 5.009025940443207, 0.01012864514888263, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124669, '503', '2025-11-26 00:00:00', -1.425350270313618, 4.994207910172162, 0.01121908937485147, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:05.163786');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124687, '601', '2025-11-15 00:00:00', 9.524252493243074, -0.003943902091040729, -0.3789661400370575, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:31.939799');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125085, '-170', '2025-11-13 00:00:00', 0.6319280290952958, 0.7743080194585951, -0.001132205452388905, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:54.517927');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125080, '-170', '2025-11-14 00:00:00', 0.6181887881211212, 0.7851150813082349, -0.001199544527179526, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:54.498881');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124662, '503', '2025-11-19 00:00:00', -1.373402911582648, 5.006904353653258, 0.01005693360610077, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:54.231398');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124696, '601', '2025-11-24 00:00:00', 9.523703601179488, 0.04660996167484008, -0.3801618083435357, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:45.314228');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124653, '503', '2025-11-10 00:00:00', -1.316650310146096, 5.017630919151765, 0.008228433256282485, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:40.715723');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120864, '2000001', '2025-11-07 00:00:00', 2.767327882047898, 0.797459851240199, -0.4845683439069238, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:54:40.66681');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124678, '601', '2025-11-06 00:00:00', 9.52935147001537, -0.05426366882424592, -0.3782678361418859, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:18.411549');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120852, '301', '2025-11-06 00:00:00', 0.7209673797741162, 0.6838309345045336, 0.0001420412913045703, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:53:19.917833');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125200, '-170', '2025-11-11 00:00:00', 0.6588356006984594, 0.7519869362727419, -0.0009943490297249953, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:14.985442');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124644, '503', '2025-11-01 00:00:00', -1.253208806529835, 5.041052377211863, 0.007009648055063164, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:26.690274');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121561, '136108', '2025-11-03 08:48:00.000043', -37.10368202311889, -23.50493852569483, 23.55809650260177, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121563, '136108', '2025-11-04 08:48:00.000043', -37.10230572761909, -23.50669387977808, 23.55796522295765, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121565, '136108', '2025-11-05 08:48:00.000043', -37.10092934131518, -23.50844918811273, 23.55783388693006, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121567, '136108', '2025-11-06 08:48:00.000043', -37.09955286420701, -23.51020445068001, 23.55770249451907, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121569, '136108', '2025-11-07 08:48:00.000043', -37.09817629629504, -23.5119596674636, 23.55757104572459, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121571, '136108', '2025-11-08 08:48:00.000043', -37.09679963757991, -23.51371483844983, 23.55743954054628, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121573, '136108', '2025-11-09 08:48:00.000043', -37.09542288806214, -23.51546996362791, 23.55730797898357, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121575, '136108', '2025-11-10 08:48:00.000043', -37.09404604774169, -23.51722504299007, 23.55717636103555, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121577, '136108', '2025-11-11 08:48:00.000043', -37.09266911661738, -23.51898007653172, 23.55704468670094, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121579, '136108', '2025-11-12 08:48:00.000043', -37.09129209468632, -23.52073506425138, 23.55691295597803, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121581, '136108', '2025-11-13 08:48:00.000043', -37.08991498194325, -23.5224900061507, 23.55678116886464, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121583, '136108', '2025-11-14 08:48:00.000043', -37.08853777837979, -23.52424490223413, 23.55664932535803, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121585, '136108', '2025-11-15 08:48:00.000043', -37.08716048398373, -23.5259997525086, 23.55651742545495, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121587, '136108', '2025-11-16 08:48:00.000043', -37.08578309873827, -23.52775455698285, 23.55638546915152, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121589, '136108', '2025-11-17 08:48:00.000043', -37.08440562262142, -23.5295093156667, 23.55625345644333, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121591, '136108', '2025-11-18 08:48:00.000043', -37.08302805560547, -23.53126402857, 23.55612138732541, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121593, '136108', '2025-11-19 08:48:00.000043', -37.08165039765665, -23.53301869570141, 23.55598926179236, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121595, '136108', '2025-11-20 08:48:00.000043', -37.08027264873517, -23.53477331706718, 23.55585707983839, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121597, '136108', '2025-11-21 08:48:00.000043', -37.07889480879546, -23.53652789266968, 23.55572484145754, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121598, '136108', '2025-11-22 08:48:00.000043', -37.07751687778686, -23.53828242250612, 23.55559254664378, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121599, '136108', '2025-11-23 08:48:00.000043', -37.07613885565458, -23.54003690656739, 23.55546019539121, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121600, '136108', '2025-11-24 08:48:00.000043', -37.07476074234103, -23.54179134483712, 23.55532778769431, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121601, '136108', '2025-11-25 08:48:00.000043', -37.07338253778726, -23.54354573729113, 23.55519532354806, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121602, '136108', '2025-11-26 08:48:00.000043', -37.07200424193466, -23.54530008389725, 23.55506280294812, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121603, '136108', '2025-11-27 08:48:00.000043', -37.07062585472645, -23.5470543846156, 23.554930225891, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121604, '136108', '2025-11-28 08:48:00.000043', -37.0692473761092, -23.54880863939909, 23.55479759237409, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121605, '136108', '2025-11-29 08:48:00.000043', -37.06786880603401, -23.55056284819443, 23.55466490239571, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.792219');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121740, '136472', '2025-10-30 08:48:00.000043', -45.99671188605616, -8.916549653685559, 24.16231320429876, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121742, '136472', '2025-10-31 08:48:00.000043', -45.99653017020623, -8.91869157133022, 24.1619926951475, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121744, '136472', '2025-11-01 08:48:00.000043', -45.99634835932635, -8.920833481508554, 24.16167213711327, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121746, '136472', '2025-11-02 08:48:00.000043', -45.99616645341101, -8.922975384195183, 24.16135153019784, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121748, '136472', '2025-11-03 08:48:00.000043', -45.99598445245599, -8.925117279366233, 24.16103087440294, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121750, '136472', '2025-11-04 08:48:00.000043', -45.99580235645816, -8.927259166999583, 24.16071016973024, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121752, '136472', '2025-11-05 08:48:00.000043', -45.99562016541537, -8.929401047075073, 24.16038941618132, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121754, '136472', '2025-11-06 08:48:00.000043', -45.99543787932623, -8.931542919574742, 24.16006861375761, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121756, '136472', '2025-11-07 08:48:00.000043', -45.99525549818994, -8.933684784483086, 24.15974776246038, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121758, '136472', '2025-11-08 08:48:00.000043', -45.9950730220059, -8.935826641787244, 24.15942686229068, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121760, '136472', '2025-11-09 08:48:00.000043', -45.99489045077338, -8.937968491477244, 24.15910591324929, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121762, '136472', '2025-11-10 08:48:00.000043', -45.99470778449107, -8.940110333546128, 24.15878491533668, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121764, '136472', '2025-11-11 08:48:00.000043', -45.99452502315655, -8.942252167990109, 24.15846386855292, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121766, '136472', '2025-11-12 08:48:00.000043', -45.99434216676568, -8.94439399480854, 24.1581427728977, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121768, '136472', '2025-11-13 08:48:00.000043', -45.99415921531193, -8.946535814003857, 24.15782162837018, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121770, '136472', '2025-11-14 08:48:00.000043', -45.99397616878571, -8.94867762558135, 24.15750043496901, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121772, '136472', '2025-11-15 08:48:00.000043', -45.99379302717352, -8.95081942954874, 24.15717919269228, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124670, '503', '2025-11-27 00:00:00', -1.43215979401428, 4.998540768526858, 0.01163004394868428, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:06.734489');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124697, '601', '2025-11-25 00:00:00', 9.52309036375567, 0.05253371599303575, -0.3804213282932281, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:46.860892');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124679, '601', '2025-11-07 00:00:00', 9.529084098653955, -0.04827454720151603, -0.3785862391941719, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:19.838385');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124645, '503', '2025-11-02 00:00:00', -1.260958453851727, 5.033527259932608, 0.006945540736579958, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:28.419785');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124654, '503', '2025-11-11 00:00:00', -1.317953092763885, 5.016034724080789, 0.008487108089350189, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:42.261599');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124688, '601', '2025-11-16 00:00:00', 9.524071390186851, 0.001227808826103267, -0.3788421686393352, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:33.30515');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125072, '-170', '2025-11-15 00:00:00', 0.6042646395668508, 0.795682089833207, -0.00126574689525655, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:54.47218');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124663, '503', '2025-11-20 00:00:00', -1.381060600915466, 5.01132769221966, 0.0104567105132232, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:55.875152');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121616, '-61', '2025-10-30 08:48:00.000043', -1.224497811507877, 5.030445171178306, -0.02828014879512302, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121618, '-61', '2025-10-31 08:48:00.000043', -1.231642265417789, 5.028450145546532, -0.02850126090996813, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121620, '-61', '2025-11-01 08:48:00.000043', -1.238837325189763, 5.026495474293481, -0.02854387024215093, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121622, '-61', '2025-11-02 08:48:00.000043', -1.246082462710012, 5.024582038713689, -0.02841233926027957, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121624, '-61', '2025-11-03 08:48:00.000043', -1.253377643298645, 5.022711142362873, -0.02810928005599784, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121626, '-61', '2025-11-04 08:48:00.000043', -1.260723308650994, 5.020884558586011, -0.02763567935772559, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121628, '-61', '2025-11-05 08:48:00.000043', -1.268120425633535, 5.019104582630946, -0.02699094620272095, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121630, '-61', '2025-11-06 08:48:00.000043', -1.275570481505226, 5.017374148822127, -0.0261728618559414, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121632, '-61', '2025-11-07 08:48:00.000043', -1.283075591329568, 5.015696949958316, -0.02517745633192445, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121634, '-61', '2025-11-08 08:48:00.000043', -1.290638605564115, 5.014077632777577, -0.02399877147331601, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121636, '-61', '2025-11-09 08:48:00.000043', -1.298263285113525, 5.012522073869313, -0.02262848555967833, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121638, '-61', '2025-11-10 08:48:00.000043', -1.30595456387793, 5.011037785743562, -0.02105533382315924, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121640, '-61', '2025-11-11 08:48:00.000043', -1.313718948724082, 5.009634535941673, -0.01926421646759004, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121642, '-61', '2025-11-12 08:48:00.000043', -1.321565151355947, 5.008325331012282, -0.01723479870232709, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121644, '-61', '2025-11-13 08:48:00.000043', -1.329505139823564, 5.007128059748772, -0.01493921937932751, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121646, '-61', '2025-11-14 08:48:00.000043', -1.337555996025906, 5.006068438440109, -0.01233810776566779, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121648, '-61', '2025-11-15 08:48:00.000043', -1.345743503036504, 5.005185810252593, -0.009373080838795147, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121650, '-61', '2025-11-16 08:48:00.000043', -1.354110022731432, 5.004546159807556, -0.005950850040812024, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121652, '-61', '2025-11-17 08:48:00.000043', -1.36273551947491, 5.004277897577527, -0.001902867040551612, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121654, '-61', '2025-11-18 08:48:00.000043', -1.371817705737655, 5.00471478702064, 0.003156050121536339, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121656, '-61', '2025-11-19 08:48:00.000043', -1.382894282387047, 5.00934262035318, 0.01049596783225719, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121658, '-61', '2025-11-20 08:48:00.000043', -1.388552034628881, 5.008247996806297, 0.0006780413066491705, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121659, '-61', '2025-11-21 08:48:00.000043', -1.394498754167489, 5.00550085886598, -0.004414123238189343, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121660, '-61', '2025-11-22 08:48:00.000043', -1.400690348477697, 5.002743831598509, -0.008219947581639575, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121661, '-61', '2025-11-23 08:48:00.000043', -1.40704222363044, 5.000023553872753, -0.01127001333797194, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121662, '-61', '2025-11-24 08:48:00.000043', -1.413514494343834, 4.997347019821963, -0.01378514435460311, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121663, '-61', '2025-11-25 08:48:00.000043', -1.420084253849088, 4.994714192956073, -0.01588421882140101, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121664, '-61', '2025-11-26 08:48:00.000043', -1.426736843354032, 4.992123547220365, -0.01764033978005915, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121665, '-61', '2025-11-27 08:48:00.000043', -1.433462238983427, 4.989573424991026, -0.01910226647589779, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121666, '-61', '2025-11-28 08:48:00.000043', -1.440253291451425, 4.987062413542056, -0.02030430216519661, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121667, '-61', '2025-11-29 08:48:00.000043', -1.447104769317932, 4.984589445666817, -0.02127145534691249, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.837415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121803, '499', '2025-10-30 08:48:00.000043', -0.5528857410386459, -1.399280531344129, -0.01576521434834144, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121805, '499', '2025-10-31 08:48:00.000043', -0.5393184977716193, -1.403160317244609, -0.01617921365278883, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121807, '499', '2025-11-01 08:48:00.000043', -0.5257042799846925, -1.406917895642615, -0.01659180379738132, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121809, '499', '2025-11-02 08:48:00.000043', -0.5120441538591461, -1.410552619188334, -0.01700294507065724, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121811, '499', '2025-11-03 08:48:00.000043', -0.4983391954506114, -1.414063848641903, -0.01741259768904811, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121813, '499', '2025-11-04 08:48:00.000043', -0.4845904906628052, -1.417450953031296, -0.01782072180056157, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121815, '499', '2025-11-05 08:48:00.000043', -0.4707991352178439, -1.420713309812188, -0.01822727748900334, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121817, '499', '2025-11-06 08:48:00.000043', -0.4569662346239275, -1.423850305030262, -0.01863222477841855, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121819, '499', '2025-11-07 08:48:00.000043', -0.4430929041411631, -1.426861333484676, -0.01903552363729861, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121821, '499', '2025-11-08 08:48:00.000043', -0.4291802687448711, -1.429745798891312, -0.01943713398272538, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121823, '499', '2025-11-09 08:48:00.000043', -0.4152294630852197, -1.432503114046045, -0.01983701568494768, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121825, '499', '2025-11-10 08:48:00.000043', -0.4012416314434381, -1.435132700989323, -0.0202351285723319, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121827, '499', '2025-11-11 08:48:00.000043', -0.3872179276859545, -1.437633991172666, -0.0206314324361008, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124671, '503', '2025-11-28 00:00:00', -1.443829118437217, 5.001077884934197, 0.011902450545971, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:08.259645');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120971, '136199', '2025-11-24 00:00:00', 85.23226635548325, 39.43091114854892, -17.53532301126295, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:58:21.159956');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124819, '-170', '2025-11-27 00:00:00', 0.424302616794732, 0.9026637085849555, -0.001951784957966506, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:28.562243');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124689, '601', '2025-11-17 00:00:00', 9.524042316424763, 0.006463611959172453, -0.3787655301559318, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:34.767433');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124680, '601', '2025-11-08 00:00:00', 9.528628938583076, -0.04230677292809939, -0.3788793374299405, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:21.265873');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124698, '601', '2025-11-26 00:00:00', 9.522344277000519, 0.05834437285651362, -0.3806071025110585, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:48.268213');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124655, '503', '2025-11-12 00:00:00', -1.321435852164525, 5.019133898239305, 0.008893928117671354, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:43.888881');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124646, '503', '2025-11-03 00:00:00', -1.263916028342283, 5.027913106846577, 0.007024021888325304, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:30.065785');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124973, '-170', '2025-11-20 00:00:00', 0.5320162459031722, 0.8448062263779776, -0.001577719568056966, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:44.924589');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121720, '599', '2025-11-20 08:48:00.000043', -1.390071804927492, 5.007363711091368, 0.01030034245454327, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121721, '599', '2025-11-21 08:48:00.000043', -1.397435761194399, 5.005691517538988, 0.0104720444997841, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121722, '599', '2025-11-22 08:48:00.000043', -1.404796425730352, 5.004009154712879, 0.01064374265545971, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121723, '599', '2025-11-23 08:48:00.000043', -1.4121551059428, 5.00231615290492, 0.01081540158608546, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121724, '599', '2025-11-24 08:48:00.000043', -1.419510448697383, 5.000612519776697, 0.01098704182468515, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121725, '599', '2025-11-25 08:48:00.000043', -1.426863032350462, 4.998897799481392, 0.01115863490700932, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121726, '599', '2025-11-26 08:48:00.000043', -1.43421246689912, 4.99717278013495, 0.01133021183354188, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121727, '599', '2025-11-27 08:48:00.000043', -1.441558336995182, 4.995436440921636, 0.0115017449799716, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121729, '599', '2025-11-28 08:48:00.000043', -1.448900817296946, 4.993690369484624, 0.01167328929313386, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121730, '599', '2025-11-29 08:48:00.000043', -1.456239886914168, 4.991934260667651, 0.01184483005017503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.886901');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121864, '199', '2025-10-30 08:48:00.000043', 0.3002085531055493, -0.2805862546138634, -0.05046513700479831, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121866, '199', '2025-10-31 08:48:00.000043', 0.3132055633076167, -0.2581298113786474, -0.04982202453666761, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121868, '199', '2025-11-01 08:48:00.000043', 0.3248468843442118, -0.2345569803060402, -0.04896333491461555, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121870, '199', '2025-11-02 08:48:00.000043', 0.3350265344689138, -0.2099296954914092, -0.04788440895034134, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121872, '199', '2025-11-03 08:48:00.000043', 0.3436365695628484, -0.1843198791445746, -0.04658122372133078, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121874, '199', '2025-11-04 08:48:00.000043', 0.3505677199733409, -0.1578105942664243, -0.04505054518089093, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121876, '199', '2025-11-05 08:48:00.000043', 0.3557102524226779, -0.1304972613374569, -0.04329010664270994, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121878, '199', '2025-11-06 08:48:00.000043', 0.3589551013256468, -0.1024889133627125, -0.04129881511002974, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121880, '199', '2025-11-07 08:48:00.000043', 0.3601953170080627, -0.07390945045785592, -0.03907698663331739, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121882, '199', '2025-11-08 08:48:00.000043', 0.3593278790314031, -0.04489883857682186, -0.03662661059039517, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121884, '199', '2025-11-09 08:48:00.000043', 0.3562559195653974, -0.01561417688319587, -0.03395164084120689, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121886, '199', '2025-11-10 08:48:00.000043', 0.3508913925499121, 0.01376946494426799, -0.03105830896860876, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121888, '199', '2025-11-11 08:48:00.000043', 0.3431582069337978, 0.04305856331875082, -0.02795545116146122, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121890, '199', '2025-11-12 08:48:00.000043', 0.3329958141253149, 0.07204115984702743, -0.02465483569269391, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121892, '199', '2025-11-13 08:48:00.000043', 0.3203631988130347, 0.1004875520309488, -0.02117147250952596, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121894, '199', '2025-11-14 08:48:00.000043', 0.3052431674629218, 0.1281518354837221, -0.01752388053851939, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121896, '199', '2025-11-15 08:48:00.000043', 0.2876467611236943, 0.1547744716025753, -0.01373428258931278, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121898, '199', '2025-11-16 08:48:00.000043', 0.2676175430739107, 0.1800860239594816, -0.009828693268389277, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121900, '199', '2025-11-17 08:48:00.000043', 0.2452354361434927, 0.2038121440544823, -0.005836863488227135, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121902, '199', '2025-11-18 08:48:00.000043', 0.2206197229043148, 0.2256797884390294, -0.001792047564637687, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121904, '199', '2025-11-19 08:48:00.000043', 0.1939307918705297, 0.2454245167028879, 0.002269433032071872, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121906, '199', '2025-11-20 08:48:00.000043', 0.165370232777133, 0.2627985646498613, 0.006308840697963814, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121907, '199', '2025-11-21 08:48:00.000043', 0.1351789681261961, 0.2775792307218236, 0.01028587842825836, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121908, '199', '2025-11-22 08:48:00.000043', 0.1036332603273057, 0.2895769863842703, 0.0141597188409537, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121909, '199', '2025-11-23 08:48:00.000043', 0.07103864212016323, 0.2986426553682997, 0.01789014758055734, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121910, '199', '2025-11-24 08:48:00.000043', 0.03772205364511896, 0.3046730284328534, 0.02143874335398548, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121911, '199', '2025-11-25 08:48:00.000043', 0.004022690829329854, 0.3076143995153969, 0.02477000629467503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121912, '199', '2025-11-26 08:48:00.000043', -0.02971776770952606, 0.3074637132504249, 0.02785234812387551, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121913, '199', '2025-11-27 08:48:00.000043', -0.06316481852790486, 0.3042672687421802, 0.03065887203409728, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121914, '199', '2025-11-28 08:48:00.000043', -0.09599997624792266, 0.2981171829438189, 0.03316789473325153, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121915, '199', '2025-11-29 08:48:00.000043', -0.1279282339151008, 0.2891460319518427, 0.03536319277834199, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.024827');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122052, '-98', '2025-10-30 08:48:00.000043', 19.81727391523854, -59.85154084745883, 2.195105272831647, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122054, '-98', '2025-10-31 08:48:00.000043', 19.82034569398473, -59.85877385037796, 2.195389994849425, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122056, '-98', '2025-11-01 08:48:00.000043', 19.82341745134864, -59.86600679320543, 2.195674714254041, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124672, '503', '2025-11-29 00:00:00', -1.45721662936232, 4.998736578852969, 0.01196401517702272, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:09.692378');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121268, '599', '2025-11-12 00:00:00', -1.328345494091506, 5.020937989871813, 0.008862924013265022, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.25657');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124681, '601', '2025-11-09 00:00:00', 9.528012754406763, -0.03642139723418426, -0.3791153864918521, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:22.695189');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121057, '-61', '2025-11-20 00:00:00', -1.386471720058853, 5.009204001334788, 0.003164407716270477, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:01:50.363872');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124664, '503', '2025-11-21 00:00:00', -1.39328880584109, 5.013313921467444, 0.01069765471002117, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:57.413672');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124699, '601', '2025-11-27 00:00:00', 9.521527533073785, 0.06400620628813719, -0.3807041845197119, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:49.835614');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124839, '-170', '2025-11-24 00:00:00', 0.4713230833617558, 0.8794758060978942, -0.001801298315072743, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:30.319515');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124690, '601', '2025-11-18 00:00:00', 9.524126520861271, 0.01180998257251081, -0.3787591225837319, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:36.160311');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124647, '503', '2025-11-04 00:00:00', -1.265288551267669, 5.027215864108777, 0.007313543159625882, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:31.60185');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125237, '-170', '2025-11-06 00:00:00', 0.722591537432658, 0.6922210931923303, -0.0006340571365610276, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:19.957938');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124850, '-170', '2025-11-23 00:00:00', 0.4867198770616289, 0.871205359680405, -0.001747771705388003, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:31.987573');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121221, '2000001', '2025-11-14 00:00:00', 2.7448548190963, 0.8618823085656127, -0.4783888360270492, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:09:04.859886');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124656, '503', '2025-11-13 00:00:00', -1.329936052116752, 5.023535079649458, 0.009278275220488562, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:45.32695');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121774, '136472', '2025-11-16 08:48:00.000043', -45.99360979045731, -8.952961225915605, 24.15685790153751, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121776, '136472', '2025-11-17 08:48:00.000043', -45.99342645861387, -8.955103014692561, 24.15653656150164, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121778, '136472', '2025-11-18 08:48:00.000043', -45.99324303161419, -8.957244795890272, 24.15621517258107, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121780, '136472', '2025-11-19 08:48:00.000043', -45.99305950942328, -8.959386569518234, 24.15589373477177, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121782, '136472', '2025-11-20 08:48:00.000043', -45.99287589200009, -8.961528335583484, 24.15557224806932, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121783, '136472', '2025-11-21 08:48:00.000043', -45.99269217929781, -8.963670094089217, 24.15525071246913, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121784, '136472', '2025-11-22 08:48:00.000043', -45.9925083712645, -8.965811845033466, 24.15492912796652, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121785, '136472', '2025-11-23 08:48:00.000043', -45.99232446784415, -8.967953588407921, 24.15460749455699, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121786, '136472', '2025-11-24 08:48:00.000043', -45.99214046897788, -8.970095324197038, 24.15428581223636, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121787, '136472', '2025-11-25 08:48:00.000043', -45.99195637460552, -8.972237052377444, 24.153964081001, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121788, '136472', '2025-11-26 08:48:00.000043', -45.99177218466718, -8.974378772917802, 24.15364230084794, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121789, '136472', '2025-11-27 08:48:00.000043', -45.99158789910485, -8.976520485779012, 24.15332047177503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121790, '136472', '2025-11-28 08:48:00.000043', -45.99140351786383, -8.978662190914834, 24.15299859378105, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121791, '136472', '2025-11-29 08:48:00.000043', -45.99121904089398, -8.980803888272789, 24.15267666686568, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.933012');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122344, '699', '2025-11-24 08:48:00.000043', 9.522464584445759, 0.04827037518175394, -0.3798895601841991, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122345, '699', '2025-11-25 08:48:00.000043', 9.522121996268162, 0.05383786764830022, -0.3799731258107831, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122346, '699', '2025-11-26 08:48:00.000043', 9.521775956734036, 0.05940514466391177, -0.3800564455478266, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122347, '699', '2025-11-27 08:48:00.000043', 9.521426559144517, 0.06497211608023047, -0.3801394828605083, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122348, '699', '2025-11-28 08:48:00.000043', 9.521073984235615, 0.07053878429399257, -0.3802222577423013, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122349, '699', '2025-11-29 08:48:00.000043', 9.520718289578523, 0.07610520427990522, -0.3803048060868303, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124700, '601', '2025-11-28 00:00:00', 9.520711192952533, 0.0695074073268402, -0.3807117561192593, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:51.244693');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124665, '503', '2025-11-22 00:00:00', -1.406561171742641, 5.010235596049718, 0.01073041507354166, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:58.955995');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121074, '2000001', '2025-11-19 00:00:00', 2.727819944193909, 0.9075920832687739, -0.473803545557715, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:02:43.824497');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124691, '601', '2025-11-19 00:00:00', 9.524268725029764, 0.01729933470531698, -0.3788367494638588, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:37.648643');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124980, '-170', '2025-11-19 00:00:00', 0.5468021154382081, 0.8354863032059103, -0.001518044707386342, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:49.666001');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124682, '601', '2025-11-10 00:00:00', 9.527286765353978, -0.03066547318557743, -0.379272116382263, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:24.260224');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124648, '503', '2025-11-05 00:00:00', -1.269460381867294, 5.030876332277813, 0.007729377745535746, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:33.061624');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121203, '136108', '2025-11-15 00:00:00', -37.08766550247658, -23.52535631272637, 23.55656579530124, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:08:10.277179');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124657, '503', '2025-11-14 00:00:00', -1.342631867090617, 5.024902553666383, 0.009486448332830001, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:46.847114');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125084, '-170', '2025-11-12 00:00:00', 0.6454783015033889, 0.7632641880486296, -0.001063786731050119, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:54.513415');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125227, '-170', '2025-11-09 00:00:00', 0.6849555556330725, 0.7287458899518637, -0.0008526615040159501, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:16.703069');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124673, '601', '2025-11-01 00:00:00', 9.528822142870329, -0.08270315482683166, -0.3773692836710034, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:11.100422');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121829, '499', '2025-11-12 08:48:00.000043', -0.3731595152168368, -1.440006425626159, -0.02102588703462254, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121832, '499', '2025-11-13 08:48:00.000043', -0.3590675669272366, -1.442249455125855, -0.02141845209776855, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121834, '499', '2025-11-14 08:48:00.000043', -0.3449432651406256, -1.444362540361432, -0.02180908733189098, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121836, '499', '2025-11-15 08:48:00.000043', -0.3307878015542355, -1.446345152105186, -0.02219775242530162, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121838, '499', '2025-11-16 08:48:00.000043', -0.3166023771780331, -1.448196771382184, -0.02258440705364087, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121840, '499', '2025-11-17 08:48:00.000043', -0.3023882022717441, -1.449916889640094, -0.02296901088478662, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121842, '499', '2025-11-18 08:48:00.000043', -0.2881464962790781, -1.451505008918172, -0.02335152358364129, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121843, '499', '2025-11-19 08:48:00.000043', -0.2738784877582753, -1.452960642016685, -0.02373190481728435, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121844, '499', '2025-11-20 08:48:00.000043', -0.259585414309307, -1.454283312668132, -0.02411011426046964, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121845, '499', '2025-11-21 08:48:00.000043', -0.2452685224987363, -1.455472555709675, -0.02448611160100576, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121846, '499', '2025-11-22 08:48:00.000043', -0.2309290677822425, -1.456527917255253, -0.02485985654489713, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121847, '499', '2025-11-23 08:48:00.000043', -0.2165683144236229, -1.457448954866898, -0.02523130882172102, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121848, '499', '2025-11-24 08:48:00.000043', -0.2021875354096992, -1.458235237726389, -0.02560042819052791, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121849, '499', '2025-11-25 08:48:00.000043', -0.1877880123621382, -1.458886346808301, -0.02596717444583561, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121850, '499', '2025-11-26 08:48:00.000043', -0.1733710354472445, -1.459401875054181, -0.02633150742316673, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121851, '499', '2025-11-27 08:48:00.000043', -0.1589379032829982, -1.4597814275467, -0.02669338700434218, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121852, '499', '2025-11-28 08:48:00.000043', -0.1444899228416041, -1.460024621683529, -0.02705277312324861, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121853, '499', '2025-11-29 08:48:00.000043', -0.1300284093470407, -1.460131087351789, -0.02740962577232181, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:15.978406');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121989, '899', '2025-10-30 08:48:00.000043', 29.87659754254188, 0.321170060525777, -0.6950959450811711, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121991, '899', '2025-10-31 08:48:00.000043', 29.87653614899047, 0.3243284290259524, -0.6951592283795726, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121993, '899', '2025-11-01 08:48:00.000043', 29.87647482566418, 0.3274867937875535, -0.6952228272922043, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121995, '899', '2025-11-02 08:48:00.000043', 29.87641320877596, 0.330644779205934, -0.6952867788370805, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121997, '899', '2025-11-03 08:48:00.000043', 29.87635089709879, 0.3338023889348199, -0.6953507458971854, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121999, '899', '2025-11-04 08:48:00.000043', 29.87628786849518, 0.3369600021006172, -0.6954143672211651, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122001, '899', '2025-11-05 08:48:00.000043', 29.87622450289877, 0.340117979571656, -0.6954776325198532, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122003, '899', '2025-11-06 08:48:00.000043', 29.87616118797627, 0.3432762892540426, -0.6955408931991763, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122005, '899', '2025-11-07 08:48:00.000043', 29.87609791657525, 0.3464345393811111, -0.6956044974987752, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122007, '899', '2025-11-08 08:48:00.000043', 29.87603429406942, 0.349592385099573, -0.6956684289284697, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122009, '899', '2025-11-09 08:48:00.000043', 29.87596994809212, 0.3527498865883217, -0.6957323233510287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122011, '899', '2025-11-10 08:48:00.000043', 29.87590491508192, 0.3559074465300474, -0.6957958470479796, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122013, '899', '2025-11-11 08:48:00.000043', 29.87583960245083, 0.3590653920737722, -0.6958590431676341, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122015, '899', '2025-11-12 08:48:00.000043', 29.87577436563794, 0.3622236351600482, -0.6959222869344496, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122017, '899', '2025-11-13 08:48:00.000043', 29.87570913911734, 0.3653817639420155, -0.6959858960836494, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122019, '899', '2025-11-14 08:48:00.000043', 29.87564350445572, 0.3685394702533296, -0.6960498009890581, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122021, '899', '2025-11-15 08:48:00.000043', 29.87557712488271, 0.3716968696015709, -0.6961136169766103, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122023, '899', '2025-11-16 08:48:00.000043', 29.87551009480623, 0.374854381069353, -0.6961770437175672, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122025, '899', '2025-11-17 08:48:00.000043', 29.87544284185669, 0.3780122920672471, -0.6962401770861936, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122027, '899', '2025-11-18 08:48:00.000043', 29.8753756829251, 0.3811704599933619, -0.6963034095860624, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122029, '899', '2025-11-19 08:48:00.000043', 29.87530849500605, 0.38432846022314, -0.6963670227694818, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122030, '899', '2025-11-20 08:48:00.000043', 29.87524084299675, 0.3874860268448437, -0.6964308949493285, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122031, '899', '2025-11-21 08:48:00.000043', 29.87517243165974, 0.3906433289663592, -0.696494627525703, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122032, '899', '2025-11-22 08:48:00.000043', 29.8751034119906, 0.3938007950004093, -0.6965579588030245, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122033, '899', '2025-11-23 08:48:00.000043', 29.87503422468789, 0.3969586677244102, -0.696621035805359, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.120145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124701, '601', '2025-11-29 00:00:00', 9.51996334737891, 0.07486060401635036, -0.3806424734613482, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:52.720187');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120949, '399', '2025-11-25 00:00:00', 0.4541952578466596, 0.876531320058942, -5.254753244269918e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:57:42.712285');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124838, '-170', '2025-11-25 00:00:00', 0.4557848594624886, 0.8874773110722534, -0.001853170570565018, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:30.3124');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124981, '-170', '2025-11-18 00:00:00', 0.5614241898696047, 0.8259109757915999, -0.001456959100292621, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:49.667216');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (120801, '2000001', '2025-11-04 00:00:00', 2.776466391926248, 0.7697057392147952, -0.4871304834771125, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 06:51:47.488703');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124649, '503', '2025-11-06 00:00:00', -1.278780875187705, 5.035145546182862, 0.008094391727211018, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:34.627009');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124674, '601', '2025-11-02 00:00:00', 9.528989488829229, -0.07730806819554278, -0.3773927341770497, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:12.659379');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124827, '-170', '2025-11-26 00:00:00', 0.4401098190838136, 0.8952074074947831, -0.001903346838806535, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:28.600195');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124666, '503', '2025-11-23 00:00:00', -1.41662132994797, 5.003112494093941, 0.01065549993369801, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:00.596251');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124658, '503', '2025-11-15 00:00:00', -1.355678484861816, 5.02111373262053, 0.009492968994399586, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:48.250484');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124683, '601', '2025-11-11 00:00:00', 9.526517165003405, -0.02506491397332182, -0.3793400240072505, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:25.866798');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124692, '601', '2025-11-20 00:00:00', 9.524403555063541, 0.02294518876889308, -0.3790008931225243, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:39.262526');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121928, '301', '2025-10-30 08:48:00.000043', 0.7966481312574293, 0.5934737640669903, -0.0001603349314088321, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121930, '301', '2025-10-31 08:48:00.000043', 0.7862658150944429, 0.6075647738291243, -0.0001127182886997582, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121932, '301', '2025-11-01 08:48:00.000043', 0.7755304282949632, 0.6215447145105957, -6.116580099273494e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121934, '301', '2025-11-02 08:48:00.000043', 0.7644272574092701, 0.6353818001762033, -8.481977904247265e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121936, '301', '2025-11-03 08:48:00.000043', 0.752948400424739, 0.6490385198326437, 4.217234533257649e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121938, '301', '2025-11-04 08:48:00.000043', 0.7410952233885579, 0.6624734047859598, 8.748857606453254e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121940, '301', '2025-11-05 08:48:00.000043', 0.7288802215174316, 0.675644124504982, 0.0001243214698351513, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121942, '301', '2025-11-06 08:48:00.000043', 0.7163274414389768, 0.688511589013676, 0.0001500563981941968, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121944, '301', '2025-11-07 08:48:00.000043', 0.7034709105444475, 0.701044143832538, 0.0001629411361140923, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121946, '301', '2025-11-08 08:48:00.000043', 0.6903512407509391, 0.7132206836903853, 0.0001622835267744558, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121948, '301', '2025-11-09 08:48:00.000043', 0.6770113183097901, 0.725031865076217, 0.0001484633113882266, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121950, '301', '2025-11-10 08:48:00.000043', 0.6634922543833889, 0.7364793709052764, 0.0001227794598253772, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121952, '301', '2025-11-11 08:48:00.000043', 0.6498304353328908, 0.7475738511892616, 8.72055176728775e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121954, '301', '2025-11-12 08:48:00.000043', 0.6360559086201543, 0.7583323768312457, 4.413106135060605e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121956, '301', '2025-11-13 08:48:00.000043', 0.6221918702691318, 0.7687760496742149, -3.859668043456513e-06, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121958, '301', '2025-11-14 08:48:00.000043', 0.6082548410944676, 0.778928075051987, -5.415406884690054e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121960, '301', '2025-11-15 08:48:00.000043', 0.5942551622274485, 0.7888123319577903, -0.0001042272124607346, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121962, '301', '2025-11-16 08:48:00.000043', 0.5801975725614212, 0.7984523358146326, -0.0001517217500001251, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121964, '301', '2025-11-17 08:48:00.000043', 0.5660817593898547, 0.8078704542772256, -0.0001945060678350249, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121966, '301', '2025-11-18 08:48:00.000043', 0.5519028624599588, 0.8170872599568049, -0.0002307211085536606, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121967, '301', '2025-11-19 08:48:00.000043', 0.537651957870258, 0.8261209484174352, -0.0002588214183044199, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121968, '301', '2025-11-20 08:48:00.000043', 0.5233165609008065, 0.8349867934024445, -0.000277611936952402, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121969, '301', '2025-11-21 08:48:00.000043', 0.5088811777031752, 0.8436966426519815, -0.0002862795478115042, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121970, '301', '2025-11-22 08:48:00.000043', 0.49432791651633, 0.8522584719967065, -0.0002844176098285577, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121971, '301', '2025-11-23 08:48:00.000043', 0.4796371508078356, 0.8606760129151885, -0.0002720423299365674, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121972, '301', '2025-11-24 08:48:00.000043', 0.4647882186289404, 0.8689484545056029, -0.0002496012425468608, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121973, '301', '2025-11-25 08:48:00.000043', 0.4497601498309556, 0.8770702037682567, -0.0002179753497869162, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121974, '301', '2025-11-26 08:48:00.000043', 0.4345324357243379, 0.8850306789729384, -0.000178476710986436, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121975, '301', '2025-11-27 08:48:00.000043', 0.4190858888933654, 0.8928141201371488, -0.0001328416872244825, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121976, '301', '2025-11-28 08:48:00.000043', 0.4034036732691701, 0.9003994369033663, -8.321618004787384e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121978, '301', '2025-11-29 08:48:00.000043', 0.3874725983731739, 0.9077601822864504, -3.212308554872566e-05, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.072516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122112, '-96', '2025-10-30 08:48:00.000043', 0.5997140108171569, -0.4162330726711723, -0.04032026122088182, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122114, '-96', '2025-10-31 08:48:00.000043', 0.603301399890437, -0.4103112588109895, -0.04044581333814947, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122116, '-96', '2025-11-01 08:48:00.000043', 0.6064311989173025, -0.4040782376962053, -0.04054068825495417, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122118, '-96', '2025-11-02 08:48:00.000043', 0.6090993711544952, -0.3975376309878697, -0.04060470287340238, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122120, '-96', '2025-11-03 08:48:00.000043', 0.6113012672420223, -0.390692710734786, -0.0406376339461135, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122122, '-96', '2025-11-04 08:48:00.000043', 0.6130315977721246, -0.3835464158173965, -0.04063921671995946, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122124, '-96', '2025-11-05 08:48:00.000043', 0.6142844009472797, -0.3761013663557719, -0.04060914326857503, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122126, '-96', '2025-11-06 08:48:00.000043', 0.615053004297898, -0.3683598763028385, -0.04054706045723635, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122128, '-96', '2025-11-07 08:48:00.000043', 0.6153299800871138, -0.3603239646212409, -0.04045256752402593, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122130, '-96', '2025-11-08 08:48:00.000043', 0.6151070941562096, -0.3519953652499576, -0.04032521326588714, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122132, '-96', '2025-11-09 08:48:00.000043', 0.6143752467723057, -0.3433755359202804, -0.04016449274739485, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122134, '-96', '2025-11-10 08:48:00.000043', 0.6131244045201448, -0.3344656660401407, -0.03996984347998007, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122136, '-96', '2025-11-11 08:48:00.000043', 0.6113435217232907, -0.3252666838316107, -0.03974064098678129, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124667, '503', '2025-11-24 00:00:00', -1.421521634281945, 4.995855483978561, 0.01065043991808574, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:02.134034');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124693, '601', '2025-11-21 00:00:00', 9.524463711691219, 0.02873899639764147, -0.3792415518735004, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:40.714386');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124962, '-170', '2025-11-21 00:00:00', 0.5170709559601114, 0.8538679051193396, -0.001635934678675552, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:44.888388');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124650, '503', '2025-11-07 00:00:00', -1.291846452779878, 5.035841604244465, 0.008269165603794404, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:36.111632');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124659, '503', '2025-11-16 00:00:00', -1.364999999246882, 5.013749795642938, 0.009417161578971203, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:49.695493');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124684, '601', '2025-11-12 00:00:00', 9.525773871626708, -0.01962165600277134, -0.3793231535320358, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:27.280683');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (121273, '899', '2025-11-12 00:00:00', 29.87579827058692, 0.3610656019712639, -0.6958990654032414, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 07:10:57.412501');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124675, '601', '2025-11-03 00:00:00', 9.529192582300778, -0.07176066769467965, -0.3775022200642854, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:14.027372');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122058, '-98', '2025-11-02 08:48:00.000043', 19.82648918734149, -59.87323967593791, 2.195959431047123, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122061, '-98', '2025-11-03 08:48:00.000043', 19.82956090197324, -59.88047249857362, 2.196244145230243, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122063, '-98', '2025-11-04 08:48:00.000043', 19.83263259525275, -59.88770526111246, 2.196528856804919, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122065, '-98', '2025-11-05 08:48:00.000043', 19.83570426718789, -59.89493796355633, 2.196813565772543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122067, '-98', '2025-11-06 08:48:00.000043', 19.83877591778575, -59.90217060590935, 2.197098272134412, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122069, '-98', '2025-11-07 08:48:00.000043', 19.84184754705285, -59.90940318817798, 2.197382975891623, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122071, '-98', '2025-11-08 08:48:00.000043', 19.84491915499552, -59.91663571037144, 2.197667677045068, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122073, '-98', '2025-11-09 08:48:00.000043', 19.84799074162019, -59.92386817250176, 2.197952375595364, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122075, '-98', '2025-11-10 08:48:00.000043', 19.85106230693387, -59.931100574584, 2.198237071542811, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122077, '-98', '2025-11-11 08:48:00.000043', 19.85413385094472, -59.9383329166364, 2.198521764887347, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122079, '-98', '2025-11-12 08:48:00.000043', 19.85720537366256, -59.94556519868026, 2.198806455628459, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122081, '-98', '2025-11-13 08:48:00.000043', 19.86027687509962, -59.95279742074004, 2.199091143765161, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122083, '-98', '2025-11-14 08:48:00.000043', 19.86334835527123, -59.96002958284303, 2.199375829295956, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122085, '-98', '2025-11-15 08:48:00.000043', 19.86641981419656, -59.9672616850189, 2.199660512218752, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122087, '-98', '2025-11-16 08:48:00.000043', 19.86949125189934, -59.97449372729925, 2.199945192530914, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122089, '-98', '2025-11-17 08:48:00.000043', 19.87256266840853, -59.98172570971663, 2.200229870229212, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122090, '-98', '2025-11-18 08:48:00.000043', 19.8756340637588, -59.98895763230365, 2.200514545309899, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122091, '-98', '2025-11-19 08:48:00.000043', 19.87870543799084, -59.99618949509178, 2.200799217768759, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122092, '-98', '2025-11-20 08:48:00.000043', 19.88177679115141, -60.00342129811001, 2.20108388760123, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122093, '-98', '2025-11-21 08:48:00.000043', 19.884848123293, -60.01065304138345, 2.201368554802539, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122094, '-98', '2025-11-22 08:48:00.000043', 19.88791943447323, -60.01788472493209, 2.201653219367844, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122095, '-98', '2025-11-23 08:48:00.000043', 19.89099072475381, -60.02511634876953, 2.201937881292486, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122096, '-98', '2025-11-24 08:48:00.000043', 19.89406199419929, -60.03234791290213, 2.202222540572123, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122097, '-98', '2025-11-25 08:48:00.000043', 19.89713324287553, -60.03957941732848, 2.202507197202942, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122098, '-98', '2025-11-26 08:48:00.000043', 19.90020447084811, -60.04681086203912, 2.202791851181824, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122100, '-98', '2025-11-27 08:48:00.000043', 19.90327567818071, -60.05404224701683, 2.203076502506451, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122101, '-98', '2025-11-28 08:48:00.000043', 19.90634686493371, -60.06127357223728, 2.203361151175418, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122102, '-98', '2025-11-29 08:48:00.000043', 19.90941803116293, -60.06850483766988, 2.203645797188261, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.168539');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122237, '999', '2025-10-30 08:48:00.000043', 19.05767721427563, -29.71519189267401, -2.331426956703487, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122239, '999', '2025-10-31 08:48:00.000043', 19.06040515182436, -29.71419572290131, -2.332334992785243, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122241, '999', '2025-11-01 08:48:00.000043', 19.06312373112046, -29.71320761119553, -2.333240140012181, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122243, '999', '2025-11-02 08:48:00.000043', 19.06583589012358, -29.71221926899598, -2.33413422934483, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122245, '999', '2025-11-03 08:48:00.000043', 19.06855018513666, -29.71122244088664, -2.335018940050163, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122247, '999', '2025-11-04 08:48:00.000043', 19.07127315721918, -29.71021627495481, -2.335904309888836, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122249, '999', '2025-11-05 08:48:00.000043', 19.07400349006642, -29.70920808580207, -2.336799773347472, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122251, '999', '2025-11-06 08:48:00.000043', 19.07673318971639, -29.70820682119518, -2.337705741788066, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122253, '999', '2025-11-07 08:48:00.000043', 19.07945471864796, -29.70721508254821, -2.338613245619135, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122255, '999', '2025-11-08 08:48:00.000043', 19.08216771288761, -29.70622680958155, -2.339511932288695, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122257, '999', '2025-11-09 08:48:00.000043', 19.08487930989801, -29.70523267963, -2.340399296016131, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122259, '999', '2025-11-10 08:48:00.000043', 19.0875977858889, -29.70422842481169, -2.3412829219544, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122261, '999', '2025-11-11 08:48:00.000043', 19.09032516545491, -29.7032186466428, -2.342173718591348, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122263, '999', '2025-11-12 08:48:00.000043', 19.0930554158786, -29.70221270527155, -2.343076177815603, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122265, '999', '2025-11-13 08:48:00.000043', 19.09577983560458, -29.70121636629662, -2.343984374533903, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122267, '999', '2025-11-14 08:48:00.000043', 19.09849481161138, -29.70022666488503, -2.344887255398032, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122269, '999', '2025-11-15 08:48:00.000043', 19.10120504043271, -29.69923454758109, -2.345778490696264, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122271, '999', '2025-11-16 08:48:00.000043', 19.10391934553107, -29.69823294389854, -2.346662125495314, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122273, '999', '2025-11-17 08:48:00.000043', 19.10664280229446, -29.69722308143003, -2.347548976786026, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124694, '601', '2025-11-22 00:00:00', 9.524390110079882, 0.03464976817892477, -0.3795368165620451, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:42.175297');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124851, '-170', '2025-11-22 00:00:00', 0.5019706751706267, 0.862668517527057, -0.001692635018735657, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:33.582913');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124660, '503', '2025-11-17 00:00:00', -1.369191513369035, 5.006947849945344, 0.0094373420813815, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:51.155388');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124651, '503', '2025-11-08 00:00:00', -1.304564264896491, 5.031382888387734, 0.008252453516916758, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:37.740644');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124676, '601', '2025-11-04 00:00:00', 9.529362916036739, -0.06605523480507948, -0.3776960992284474, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:15.52485');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124685, '601', '2025-11-13 00:00:00', 9.525119996841301, -0.01431500987576596, -0.3792376026428944, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:28.845869');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125003, '-170', '2025-11-16 00:00:00', 0.5901597012223107, 0.8060058285090989, -0.001330754590080459, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:54.262097');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122138, '-96', '2025-11-12 08:48:00.000043', 0.6090204499817733, -0.3157792629441827, -0.03947619367468203, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122141, '-96', '2025-11-13 08:48:00.000043', 0.6061418336813664, -0.3060038287779002, -0.03917573689302516, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122143, '-96', '2025-11-14 08:48:00.000043', 0.6026929890901517, -0.295940564814978, -0.0388384260455644, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122145, '-96', '2025-11-15 08:48:00.000043', 0.5986577640274624, -0.285589419328983, -0.03846332858679476, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122147, '-96', '2025-11-16 08:48:00.000043', 0.5940183744279477, -0.2749501129436074, -0.03804941469700743, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122149, '-96', '2025-11-17 08:48:00.000043', 0.588755213221793, -0.2640221476575852, -0.03759554638037838, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122151, '-96', '2025-11-18 08:48:00.000043', 0.5828466257996363, -0.2528048181542746, -0.03710046466668802, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122153, '-96', '2025-11-19 08:48:00.000043', 0.5762686448559643, -0.2412972264973023, -0.03656277451607712, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122154, '-96', '2025-11-20 08:48:00.000043', 0.5689946752543087, -0.2294983017400475, -0.03598092690804568, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122155, '-96', '2025-11-21 08:48:00.000043', 0.5609951180659493, -0.2174068263976593, -0.0353531975156376, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122156, '-96', '2025-11-22 08:48:00.000043', 0.5522369168577927, -0.2050214728857671, -0.03467766103110685, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122157, '-96', '2025-11-23 08:48:00.000043', 0.5426830078592764, -0.1923408538092597, -0.03395216013666483, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122158, '-96', '2025-11-24 08:48:00.000043', 0.532291646569358, -0.1793635920711282, -0.03317426761940666, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122159, '-96', '2025-11-25 08:48:00.000043', 0.521015577090215, -0.1660884188855304, -0.03234123979659968, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122160, '-96', '2025-11-26 08:48:00.000043', 0.5088009932731336, -0.1525143125830808, -0.03144995849120397, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122161, '-96', '2025-11-27 08:48:00.000043', 0.4955862265928245, -0.1386406964162021, -0.03049685805318616, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122162, '-96', '2025-11-28 08:48:00.000043', 0.4813000687338808, -0.1244677229450533, -0.02947783249727053, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122163, '-96', '2025-11-29 08:48:00.000043', 0.4658595899360828, -0.1099966896922069, -0.02838811535510345, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.222883');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122298, '699', '2025-10-30 08:48:00.000043', 9.529956361556946, -0.09090828900052003, -0.3777630926194665, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122300, '699', '2025-10-31 08:48:00.000043', 9.52969580635602, -0.0853419142806623, -0.3778493432732197, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122302, '699', '2025-11-01 08:48:00.000043', 9.529432295418905, -0.07977538476803199, -0.3779355641283383, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122304, '699', '2025-11-02 08:48:00.000043', 9.529165695269125, -0.07420859449217765, -0.3780217977024191, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122306, '699', '2025-11-03 08:48:00.000043', 9.528895896223734, -0.0686415480330723, -0.3781080316303767, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122308, '699', '2025-11-04 08:48:00.000043', 9.528622789447706, -0.06307422942011576, -0.3781942639435671, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122310, '699', '2025-11-05 08:48:00.000043', 9.528346289949633, -0.05750670247398536, -0.3782804541040475, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122312, '699', '2025-11-06 08:48:00.000043', 9.528066340454231, -0.05193899100538331, -0.3783665853760763, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122314, '699', '2025-11-07 08:48:00.000043', 9.52778285651668, -0.04637117009802118, -0.3784526119897306, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122316, '699', '2025-11-08 08:48:00.000043', 9.527495806272547, -0.04080337511961124, -0.3785384615477652, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122318, '699', '2025-11-09 08:48:00.000043', 9.527205282205756, -0.03523570324869846, -0.3786240936691668, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122320, '699', '2025-11-10 08:48:00.000043', 9.526911320988342, -0.02966820489934657, -0.3787094874654745, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122322, '699', '2025-11-11 08:48:00.000043', 9.526614027931092, -0.02410094622934915, -0.3787946201976992, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122324, '699', '2025-11-12 08:48:00.000043', 9.526313484173825, -0.0185339414233763, -0.3788794940290612, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122326, '699', '2025-11-13 08:48:00.000043', 9.526009810695259, -0.01296720307257611, -0.3789641147682248, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122328, '699', '2025-11-14 08:48:00.000043', 9.52570314885339, -0.007400681200296978, -0.3790485232552355, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122330, '699', '2025-11-15 08:48:00.000043', 9.525393560354003, -0.001834219336783748, -0.3791328075615206, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122332, '699', '2025-11-16 08:48:00.000043', 9.52508099383756, 0.003732267578884189, -0.3792170078603146, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122334, '699', '2025-11-17 08:48:00.000043', 9.5247654314149, 0.009298875793683744, -0.3793011723737383, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122336, '699', '2025-11-18 08:48:00.000043', 9.524446780606056, 0.01486567157928732, -0.3793853271370002, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122338, '699', '2025-11-19 08:48:00.000043', 9.5241249528506, 0.02043270189420479, -0.3794694882563029, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122340, '699', '2025-11-20 08:48:00.000043', 9.523799834330456, 0.02599998851596355, -0.3795536572642048, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122341, '699', '2025-11-21 08:48:00.000043', 9.52347126922077, 0.03156749749936603, -0.3796378021027497, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122342, '699', '2025-11-22 08:48:00.000043', 9.523139218263555, 0.03713510105548478, -0.3797218533501032, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122343, '699', '2025-11-23 08:48:00.000043', 9.522803663760822, 0.04270275729154854, -0.3798057886582149, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.368474');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124668, '503', '2025-11-25 00:00:00', -1.423019786822389, 4.992480095412201, 0.01084316845664216, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:03.713605');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124661, '503', '2025-11-18 00:00:00', -1.37053757536322, 5.004453647705624, 0.009663527903961354, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:52.812147');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124993, '-170', '2025-11-17 00:00:00', 0.5758781438715921, 0.816083148813899, -0.001394510656927728, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:18:54.200223');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124677, '601', '2025-11-05 00:00:00', 9.52943389130084, -0.0602095310502224, -0.3779599325828323, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:16.948036');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125211, '-170', '2025-11-10 00:00:00', 0.6719959812131076, 0.7404796775151962, -0.0009239534397086273, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:15.033682');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125223, '-170', '2025-11-08 00:00:00', 0.6977105025611996, 0.7167891145427182, -0.0007805372187568476, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:16.685667');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (125234, '-170', '2025-11-07 00:00:00', 0.710257061421177, 0.7046129581139392, -0.0007076462929604885, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:19:18.333269');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124695, '601', '2025-11-23 00:00:00', 9.52414174168671, 0.0406274169056107, -0.379855502014991, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:43.786886');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124686, '601', '2025-11-14 00:00:00', 9.524603623934071, -0.009106092850349263, -0.3791084795442762, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:15:30.297214');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (124652, '503', '2025-11-09 00:00:00', -1.313111119079036, 5.023883027271488, 0.008180246379868122, NULL, NULL, NULL, 'nasa_horizons', '2025-11-30 05:14:39.26603');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122175, '-168', '2025-10-30 08:48:00.000043', -0.5528633234732749, -1.399279056637429, -0.01576827831573396, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122177, '-168', '2025-10-31 08:48:00.000043', -0.5392961410317796, -1.40316225226667, -0.0161824606662972, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122179, '-168', '2025-11-01 08:48:00.000043', -0.5256824670378464, -1.406923201728856, -0.01659499021566624, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122181, '-168', '2025-11-02 08:48:00.000043', -0.5120233539600993, -1.410561172667051, -0.0170058287805287, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122183, '-168', '2025-11-03 08:48:00.000043', -0.4983198523085396, -1.414075443953025, -0.01741494421063252, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122185, '-168', '2025-11-04 08:48:00.000043', -0.4845730112522929, -1.417465307909753, -0.01782231020018391, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122187, '-168', '2025-11-05 08:48:00.000043', -0.4707838795164921, -1.420730072405868, -0.01822790595035024, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122189, '-168', '2025-11-06 08:48:00.000043', -0.4569535065347045, -1.423869062772448, -0.01863171569168929, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122191, '-168', '2025-11-07 08:48:00.000043', -0.4430829438290549, -1.426881623497624, -0.01903372807796942, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122193, '-168', '2025-11-08 08:48:00.000043', -0.4291732465808157, -1.429767119658483, -0.01943393546686116, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122195, '-168', '2025-11-09 08:48:00.000043', -0.4152254753498053, -1.432524938058773, -0.0198323331065636, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122197, '-168', '2025-11-10 08:48:00.000043', -0.4012406978990521, -1.43515448804877, -0.02022891824862243, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122199, '-168', '2025-11-11 08:48:00.000043', -0.3872199910784633, -1.437655202011801, -0.02062368920894639, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122201, '-168', '2025-11-12 08:48:00.000043', -0.3731644427192947, -1.440026535508369, -0.02101664440078636, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122203, '-168', '2025-11-13 08:48:00.000043', -0.3590751534893741, -1.442267967077028, -0.02140778136399952, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122205, '-168', '2025-11-14 08:48:00.000043', -0.3449532386595711, -1.444378997701969, -0.02179709581693333, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122207, '-168', '2025-11-15 08:48:00.000043', -0.3307998297360029, -1.446359149966002, -0.02218458075374879, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122209, '-168', '2025-11-16 08:48:00.000043', -0.3166160759168677, -1.448207966914105, -0.02257022560972545, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122211, '-168', '2025-11-17 08:48:00.000043', -0.302403145336076, -1.449925010659448, -0.02295401551585208, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122213, '-168', '2025-11-18 08:48:00.000043', -0.2881622260595761, -1.451509860770303, -0.02333593066167638, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122215, '-168', '2025-11-19 08:48:00.000043', -0.2738945268072798, -1.452962112484435, -0.02371594578256638, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122216, '-168', '2025-11-20 08:48:00.000043', -0.2596012773804539, -1.45428137480181, -0.02409402978552645, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122217, '-168', '2025-11-21 08:48:00.000043', -0.2452837287833426, -1.455467268506386, -0.02447014552162034, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122218, '-168', '2025-11-22 08:48:00.000043', -0.2309431530336429, -1.456519424171272, -0.024844249711396, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122219, '-168', '2025-11-23 08:48:00.000043', -0.2165808426639276, -1.457437480200301, -0.02521629302551552, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122220, '-168', '2025-11-24 08:48:00.000043', -0.2021981099236805, -1.458221080960787, -0.02558622031913584, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122221, '-168', '2025-11-25 08:48:00.000043', -0.1877962857012449, -1.458869875061073, -0.02595397101370792, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122222, '-168', '2025-11-26 08:48:00.000043', -0.1733767181909111, -1.459383513818839, -0.02631947961618418, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122223, '-168', '2025-11-27 08:48:00.000043', -0.1589407713369886, -1.459761649963372, -0.02668267636317545, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122224, '-168', '2025-11-28 08:48:00.000043', -0.1444898230888474, -1.460003936608028, -0.02704348797409442, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122225, '-168', '2025-11-29 08:48:00.000043', -0.1300252635087814, -1.460110026523845, -0.02740183849534253, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.271641');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122359, '10', '2025-10-30 08:48:41.505', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.410638');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122361, '10', '2025-11-29 08:48:41.505', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.410638');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122275, '999', '2025-11-18 08:48:00.000043', 19.10937220545882, -29.69621339033785, -2.348446974567612, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122277, '999', '2025-11-19 08:48:00.000043', 19.11209893563893, -29.69521197556886, -2.349354088217629, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122278, '999', '2025-11-20 08:48:00.000043', 19.11481664820615, -29.69421939206233, -2.35026014612715, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122279, '999', '2025-11-21 08:48:00.000043', 19.11752692710392, -29.69322815221384, -2.351155902897089, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122280, '999', '2025-11-22 08:48:00.000043', 19.12023787750744, -29.6922293980392, -2.352041284926677, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122281, '999', '2025-11-23 08:48:00.000043', 19.12295689701559, -29.69122080713131, -2.352925465164783, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122282, '999', '2025-11-24 08:48:00.000043', 19.12568406883536, -29.69020866961687, -2.353818675139769, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122283, '999', '2025-11-25 08:48:00.000043', 19.12841209117109, -29.68920226918831, -2.354723071537801, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122284, '999', '2025-11-26 08:48:00.000043', 19.13113279588437, -29.68820560149327, -2.355630820987097, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122285, '999', '2025-11-27 08:48:00.000043', 19.13384442852061, -29.68721381639553, -2.356531087211728, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122286, '999', '2025-11-28 08:48:00.000043', 19.13655321447805, -29.68621753895481, -2.357419690457228, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122287, '999', '2025-11-29 08:48:00.000043', 19.13926781153061, -29.68521123072782, -2.358302843681775, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.320145');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122404, '10', '2025-10-30 08:48:52.897', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.449287');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122406, '10', '2025-11-29 08:48:52.897', 0, 0, 0, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.449287');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122410, '799', '2025-11-24 08:48:00.000043', 10.00897856487991, 16.73139945990231, -0.06764286279369255, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122411, '799', '2025-11-25 08:48:00.000043', 10.00556679541825, 16.73323513150928, -0.0675917041604473, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122412, '799', '2025-11-26 08:48:00.000043', 10.00215467382775, 16.73507011557246, -0.06754052662551285, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122413, '799', '2025-11-27 08:48:00.000043', 9.99874227662801, 16.7369043941872, -0.06748933937142543, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122414, '799', '2025-11-28 08:48:00.000043', 9.995329509960328, 16.73873796379852, -0.06743831520130852, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122415, '799', '2025-11-29 08:48:00.000043', 9.991916247442228, 16.74057087221582, -0.06738730710994634, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.424516');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122425, '299', '2025-10-30 08:48:00.000043', -0.7175481079556979, 0.03969000833074263, 0.041947670256518, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122428, '299', '2025-10-31 08:48:00.000043', -0.7184955768595215, 0.01939222294882523, 0.04172347949928172, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122430, '299', '2025-11-01 08:48:00.000043', -0.7188733785168623, -0.0009209382993963202, 0.04146620777385501, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122432, '299', '2025-11-02 08:48:00.000043', -0.718681454745346, -0.02123337034775603, 0.04117607298507497, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122434, '299', '2025-11-03 08:48:00.000043', -0.717920204870069, -0.04152898252394346, 0.04085331923803433, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122436, '299', '2025-11-04 08:48:00.000043', -0.7165904846060056, -0.06179171178008817, 0.04049821659180737, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
INSERT INTO "public"."positions" ("id", "body_id", "time", "x", "y", "z", "vx", "vy", "vz", "source", "created_at") VALUES (122438, '299', '2025-11-05 08:48:00.000043', -0.7146936045488648, -0.08200553585434227, 0.04011106079152978, NULL, NULL, NULL, 'nasa_horizons', '2025-11-29 08:49:16.474376');
COMMIT;
-- ----------------------------
-- Table structure for resources
-- ----------------------------
DROP TABLE IF EXISTS "public"."resources";
CREATE TABLE "public"."resources" (
"id" int4 NOT NULL DEFAULT nextval('resources_id_seq'::regclass),
"body_id" varchar(50) COLLATE "pg_catalog"."default",
"resource_type" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"file_path" varchar(500) COLLATE "pg_catalog"."default" NOT NULL,
"file_size" int4,
"mime_type" varchar(100) COLLATE "pg_catalog"."default",
"extra_data" jsonb,
"created_at" timestamp(6) DEFAULT now(),
"updated_at" timestamp(6) DEFAULT now()
)
;
ALTER TABLE "public"."resources" OWNER TO "postgres";
COMMENT ON COLUMN "public"."resources"."body_id" IS 'Reference to celestial_bodies.id (optional)';
COMMENT ON COLUMN "public"."resources"."resource_type" IS 'Resource type';
COMMENT ON COLUMN "public"."resources"."file_path" IS 'Relative path from upload directory';
COMMENT ON COLUMN "public"."resources"."file_size" IS 'File size in bytes';
COMMENT ON COLUMN "public"."resources"."mime_type" IS 'MIME type';
COMMENT ON COLUMN "public"."resources"."extra_data" IS 'Extended metadata (JSON)';
-- ----------------------------
-- Records of resources
-- ----------------------------
BEGIN;
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (2, '10', 'texture', 'texture/2k_sun.jpg', 822427, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (3, '199', 'texture', 'texture/2k_mercury.jpg', 872555, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (4, '299', 'texture', 'texture/2k_venus_surface.jpg', 885075, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (5, '299', 'texture', 'texture/2k_venus_atmosphere.jpg', 229696, 'image/jpeg', '{"layer": "atmosphere"}', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (6, '399', 'texture', 'texture/2k_earth_daymap.jpg', 463087, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (7, '399', 'texture', 'texture/2k_earth_nightmap.jpg', 255287, 'image/jpeg', '{"layer": "night"}', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (8, '301', 'texture', 'texture/2k_moon.jpg', 1053869, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (9, '499', 'texture', 'texture/2k_mars.jpg', 750547, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (10, '599', 'texture', 'texture/2k_jupiter.jpg', 498976, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (11, '699', 'texture', 'texture/2k_saturn.jpg', 199916, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (12, '699', 'texture', 'texture/2k_saturn_ring_alpha.png', 12119, 'image/png', '{"layer": "ring"}', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (13, '799', 'texture', 'texture/2k_uranus.jpg', 77751, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (14, '899', 'texture', 'texture/2k_neptune.jpg', 241580, 'image/jpeg', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (15, NULL, 'texture', 'texture/2k_stars_milky_way.jpg', 251454, 'image/jpeg', '{"usage": "skybox"}', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (17, '-32', 'model', 'model/voyager_2.glb', 1720864, 'model/gltf-binary', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (20, '-82', 'model', 'model/cassini.glb', 1660492, 'model/gltf-binary', 'null', '2025-11-28 06:00:52.917643', '2025-11-28 06:00:52.917643');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (30, '90000030', 'texture', 'texture/1P:Halley.jpg', 442541, 'image/jpeg', NULL, '2025-11-30 14:10:37.17545', '2025-11-30 14:10:37.17545');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (21, '-98', 'model', 'model/new_horizons.glb', 2115124, 'model/gltf-binary', 'null', '2025-11-28 13:54:55.612414', '2025-11-28 13:54:55.612414');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (34, '90004920', 'texture', 'texture/3I:Atlas_20251130_225754.jpg', 137774, 'image/jpeg', NULL, '2025-11-30 14:57:54.577287', '2025-11-30 14:57:54.577287');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (35, '50326340', 'texture', 'texture/1I:Oumuamua_20251130_230201.jpg', 471693, 'image/jpeg', NULL, '2025-11-30 15:02:01.089358', '2025-11-30 15:02:01.089358');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (23, '2000001', 'texture', 'texture/2k_ceres_fictional.jpg', 1127678, 'image/jpeg', 'null', '2025-11-28 16:19:30.762827', '2025-11-28 16:19:30.762827');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (24, '136199', 'texture', 'texture/2k_eris_fictional.jpg', 0, 'image/jpeg', 'null', '2025-11-28 16:43:34.464108', '2025-11-28 16:43:34.464108');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (25, '136108', 'texture', 'texture/2k_haumea_fictional.jpg', 0, 'image/jpeg', 'null', '2025-11-28 16:44:39.856568', '2025-11-28 16:44:39.856568');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (26, '136472', 'texture', 'texture/2k_makemake_fictional.jpg', 0, 'image/jpeg', 'null', '2025-11-28 16:45:57.192149', '2025-11-28 16:45:57.192149');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (27, '999', 'texture', 'texture/2k_pluto.jpg', 0, 'image/jpeg', 'null', '2025-11-28 16:57:50.3253', '2025-11-28 16:57:50.3253');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (16, '-31', 'model', 'model/voyager_1.glb', 285936, 'model/gltf-binary', '{"scale": 1.5}', '2025-11-28 06:00:52.917643', '2025-11-30 08:42:16.279237');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (22, '-168', 'model', 'model/perseverance.glb', 4987176, 'model/gltf-binary', '{"scale": 0.6}', '2025-11-28 14:05:52.647406', '2025-11-30 08:51:35.219504');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (29, '-170', 'model', 'model/webb_space_telescope.glb', 4710016, 'model/gltf-binary', '{"scale": 0.2}', '2025-11-30 08:16:40.230455', '2025-11-30 08:53:46.402346');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (18, '-61', 'model', 'model/juno.glb', 8999028, 'model/gltf-binary', '{"scale": 0.3}', '2025-11-28 06:00:52.917643', '2025-11-30 08:54:27.375759');
INSERT INTO "public"."resources" ("id", "body_id", "resource_type", "file_path", "file_size", "mime_type", "extra_data", "created_at", "updated_at") VALUES (19, '-96', 'model', 'model/parker_solar_probe.glb', 443572, 'model/gltf-binary', '{"scale": 0.8}', '2025-11-28 06:00:52.917643', '2025-11-30 09:08:28.624255');
COMMIT;
-- ----------------------------
-- Table structure for role_menus
-- ----------------------------
DROP TABLE IF EXISTS "public"."role_menus";
CREATE TABLE "public"."role_menus" (
"id" int4 NOT NULL DEFAULT nextval('role_menus_id_seq'::regclass),
"role_id" int4 NOT NULL,
"menu_id" int4 NOT NULL,
"created_at" timestamp(6) DEFAULT now()
)
;
ALTER TABLE "public"."role_menus" OWNER TO "postgres";
-- ----------------------------
-- Records of role_menus
-- ----------------------------
BEGIN;
INSERT INTO "public"."role_menus" ("id", "role_id", "menu_id", "created_at") VALUES (1, 3, 1, '2025-11-28 18:07:11.767382');
INSERT INTO "public"."role_menus" ("id", "role_id", "menu_id", "created_at") VALUES (2, 3, 2, '2025-11-28 18:07:11.767382');
INSERT INTO "public"."role_menus" ("id", "role_id", "menu_id", "created_at") VALUES (3, 3, 3, '2025-11-28 18:07:11.767382');
INSERT INTO "public"."role_menus" ("id", "role_id", "menu_id", "created_at") VALUES (4, 3, 4, '2025-11-28 18:07:11.767382');
INSERT INTO "public"."role_menus" ("id", "role_id", "menu_id", "created_at") VALUES (5, 3, 5, '2025-11-28 18:07:11.767382');
INSERT INTO "public"."role_menus" ("id", "role_id", "menu_id", "created_at") VALUES (6, 3, 6, '2025-11-29 19:03:08.776597');
INSERT INTO "public"."role_menus" ("id", "role_id", "menu_id", "created_at") VALUES (7, 3, 7, '2025-11-29 19:03:08.776597');
INSERT INTO "public"."role_menus" ("id", "role_id", "menu_id", "created_at") VALUES (8, 3, 8, '2025-11-29 19:03:08.776597');
INSERT INTO "public"."role_menus" ("id", "role_id", "menu_id", "created_at") VALUES (9, 3, 10, '2025-11-30 16:04:59.572869');
COMMIT;
-- ----------------------------
-- Table structure for roles
-- ----------------------------
DROP TABLE IF EXISTS "public"."roles";
CREATE TABLE "public"."roles" (
"id" int4 NOT NULL DEFAULT nextval('roles_id_seq'::regclass),
"name" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"display_name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL,
"description" text COLLATE "pg_catalog"."default",
"created_at" timestamp(6) DEFAULT now(),
"updated_at" timestamp(6) DEFAULT now()
)
;
ALTER TABLE "public"."roles" OWNER TO "postgres";
COMMENT ON COLUMN "public"."roles"."name" IS 'Role name (e.g., ''admin'', ''user'')';
COMMENT ON COLUMN "public"."roles"."display_name" IS 'Display name';
COMMENT ON COLUMN "public"."roles"."description" IS 'Role description';
-- ----------------------------
-- Records of roles
-- ----------------------------
BEGIN;
INSERT INTO "public"."roles" ("id", "name", "display_name", "description", "created_at", "updated_at") VALUES (3, 'admin', '管理员', '系统管理员,拥有所有权限', '2025-11-28 18:07:11.767382', '2025-11-28 18:07:11.767382');
INSERT INTO "public"."roles" ("id", "name", "display_name", "description", "created_at", "updated_at") VALUES (4, 'user', '普通用户', '普通用户,仅有基本访问权限', '2025-11-28 18:07:11.767382', '2025-11-28 18:07:11.767382');
COMMIT;
-- ----------------------------
-- Table structure for static_data
-- ----------------------------
DROP TABLE IF EXISTS "public"."static_data";
CREATE TABLE "public"."static_data" (
"id" int4 NOT NULL DEFAULT nextval('static_data_id_seq'::regclass),
"category" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
"name_zh" varchar(200) COLLATE "pg_catalog"."default",
"data" jsonb NOT NULL,
"created_at" timestamp(6) DEFAULT now(),
"updated_at" timestamp(6) DEFAULT now()
)
;
ALTER TABLE "public"."static_data" OWNER TO "postgres";
COMMENT ON COLUMN "public"."static_data"."category" IS 'Data category';
COMMENT ON COLUMN "public"."static_data"."name" IS 'Name';
COMMENT ON COLUMN "public"."static_data"."name_zh" IS 'Chinese name';
COMMENT ON COLUMN "public"."static_data"."data" IS 'Complete data (JSON)';
-- ----------------------------
-- Records of static_data
-- ----------------------------
BEGIN;
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (1, 'star', 'Proxima Centauri', '比邻星', '{"ra": 217.43, "dec": -62.68, "name": "Proxima Centauri", "color": "#FF9966", "name_zh": "比邻星", "magnitude": 11.05, "distance_ly": 4.24}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (2, 'star', 'Alpha Centauri A', '南门二A', '{"ra": 219.9, "dec": -60.83, "name": "Alpha Centauri A", "color": "#FFFFAA", "name_zh": "南门二A", "magnitude": -0.01, "distance_ly": 4.37}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (3, 'star', 'Barnard''s Star', '巴纳德星', '{"ra": 269.45, "dec": 4.69, "name": "Barnard''s Star", "color": "#FF6666", "name_zh": "巴纳德星", "magnitude": 9.54, "distance_ly": 5.96}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (4, 'star', 'Sirius', '天狼星', '{"ra": 101.29, "dec": -16.72, "name": "Sirius", "color": "#FFFFFF", "name_zh": "天狼星", "magnitude": -1.46, "distance_ly": 8.6}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (5, 'star', 'Epsilon Eridani', '天苑四', '{"ra": 53.23, "dec": -9.46, "name": "Epsilon Eridani", "color": "#FFDDAA", "name_zh": "天苑四", "magnitude": 3.73, "distance_ly": 10.5}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (6, 'star', 'Procyon', '南河三', '{"ra": 114.83, "dec": 5.22, "name": "Procyon", "color": "#FFFFDD", "name_zh": "南河三", "magnitude": 0.34, "distance_ly": 11.4}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (7, 'star', 'Tau Ceti', '天仓五', '{"ra": 26.02, "dec": -15.94, "name": "Tau Ceti", "color": "#FFFFCC", "name_zh": "天仓五", "magnitude": 3.5, "distance_ly": 11.9}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (8, 'star', 'Vega', '织女星', '{"ra": 279.23, "dec": 38.78, "name": "Vega", "color": "#AACCFF", "name_zh": "织女星", "magnitude": 0.03, "distance_ly": 25}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (9, 'star', 'Arcturus', '大角星', '{"ra": 213.92, "dec": 19.18, "name": "Arcturus", "color": "#FFCC99", "name_zh": "大角星", "magnitude": -0.05, "distance_ly": 37}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (10, 'star', 'Altair', '牛郎星', '{"ra": 297.7, "dec": 8.87, "name": "Altair", "color": "#FFFFFF", "name_zh": "牛郎星", "magnitude": 0.77, "distance_ly": 17}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (11, 'star', 'Betelgeuse', '参宿四', '{"ra": 88.79, "dec": 7.41, "name": "Betelgeuse", "color": "#FF4444", "name_zh": "参宿四", "magnitude": 0.42, "distance_ly": 548}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (12, 'star', 'Rigel', '参宿七', '{"ra": 78.63, "dec": -8.2, "name": "Rigel", "color": "#AADDFF", "name_zh": "参宿七", "magnitude": 0.13, "distance_ly": 860}', '2025-11-27 11:04:42.525948', '2025-11-27 11:04:42.525948');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (18, 'galaxy', 'Andromeda Galaxy', '仙女座星系', '{"ra": 10.68, "dec": 41.27, "type": "spiral", "color": "#CCDDFF", "magnitude": 3.44, "diameter_kly": 220, "distance_mly": 2.537}', '2025-11-27 11:04:42.544697', '2025-11-27 11:04:42.544697');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (13, 'constellation', 'Orion', '猎户座', '{"lines": [[0, 1], [1, 2], [2, 3], [3, 4], [2, 5], [5, 6]], "stars": [{"ra": 88.79, "dec": 7.41, "name": "Betelgeuse"}, {"ra": 81.28, "dec": 6.35, "name": "Bellatrix"}, {"ra": 85.19, "dec": -1.94, "name": "Alnitak"}, {"ra": 84.05, "dec": -1.2, "name": "Alnilam"}, {"ra": 83.0, "dec": -0.3, "name": "Mintaka"}, {"ra": 86.94, "dec": -9.67, "name": "Saiph"}, {"ra": 78.63, "dec": -8.2, "name": "Rigel"}]}', '2025-11-27 11:04:42.539517', '2025-11-27 11:04:42.539517');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (14, 'constellation', 'Ursa Major', '大熊座', '{"lines": [[0, 1], [1, 2], [2, 3], [3, 4], [4, 5], [5, 6]], "stars": [{"ra": 165.93, "dec": 61.75, "name": "Dubhe"}, {"ra": 165.46, "dec": 56.38, "name": "Merak"}, {"ra": 178.46, "dec": 53.69, "name": "Phecda"}, {"ra": 183.86, "dec": 57.03, "name": "Megrez"}, {"ra": 193.51, "dec": 55.96, "name": "Alioth"}, {"ra": 200.98, "dec": 54.93, "name": "Mizar"}, {"ra": 206.89, "dec": 49.31, "name": "Alkaid"}]}', '2025-11-27 11:04:42.539517', '2025-11-27 11:04:42.539517');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (15, 'constellation', 'Cassiopeia', '仙后座', '{"lines": [[0, 1], [1, 2], [2, 3], [3, 4]], "stars": [{"ra": 2.29, "dec": 59.15, "name": "Caph"}, {"ra": 10.13, "dec": 56.54, "name": "Schedar"}, {"ra": 14.18, "dec": 60.72, "name": "Navi"}, {"ra": 21.45, "dec": 60.24, "name": "Ruchbah"}, {"ra": 25.65, "dec": 63.67, "name": "Segin"}]}', '2025-11-27 11:04:42.539517', '2025-11-27 11:04:42.539517');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (16, 'constellation', 'Leo', '狮子座', '{"lines": [[0, 2], [2, 3], [3, 4], [4, 1], [1, 0]], "stars": [{"ra": 152.09, "dec": 11.97, "name": "Regulus"}, {"ra": 177.26, "dec": 14.57, "name": "Denebola"}, {"ra": 154.99, "dec": 19.84, "name": "Algieba"}, {"ra": 168.53, "dec": 20.52, "name": "Zosma"}, {"ra": 173.95, "dec": 15.43, "name": "Chertan"}]}', '2025-11-27 11:04:42.539517', '2025-11-27 11:04:42.539517');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (17, 'constellation', 'Scorpius', '天蝎座', '{"lines": [[3, 0], [0, 1], [1, 4], [1, 2]], "stars": [{"ra": 247.35, "dec": -26.43, "name": "Antares"}, {"ra": 263.4, "dec": -37.1, "name": "Shaula"}, {"ra": 264.33, "dec": -43.0, "name": "Sargas"}, {"ra": 240.08, "dec": -22.62, "name": "Dschubba"}, {"ra": 262.69, "dec": -37.29, "name": "Lesath"}]}', '2025-11-27 11:04:42.539517', '2025-11-27 11:04:42.539517');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (28, 'constellation', 'Cygnus', '天鹅座', '{"lines": [[0, 1], [1, 2], [1, 3], [1, 4]], "stars": [{"ra": 310.36, "dec": 45.28, "name": "Deneb"}, {"ra": 305.56, "dec": 40.26, "name": "Sadr"}, {"ra": 292.68, "dec": 27.96, "name": "Albireo"}, {"ra": 296.24, "dec": 45.13, "name": "Delta Cygni"}, {"ra": 314.29, "dec": 33.97, "name": "Gienah"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (29, 'constellation', 'Aquila', '天鹰座', '{"lines": [[1, 0], [0, 2], [0, 3]], "stars": [{"ra": 297.7, "dec": 8.87, "name": "Altair"}, {"ra": 296.56, "dec": 10.61, "name": "Tarazed"}, {"ra": 298.83, "dec": 6.41, "name": "Alshain"}, {"ra": 304.48, "dec": 15.07, "name": "Deneb el Okab"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (30, 'constellation', 'Lyra', '天琴座', '{"lines": [[0, 3], [3, 1], [1, 2], [2, 0]], "stars": [{"ra": 279.23, "dec": 38.78, "name": "Vega"}, {"ra": 282.52, "dec": 33.36, "name": "Sheliak"}, {"ra": 284.74, "dec": 32.69, "name": "Sulafat"}, {"ra": 283.82, "dec": 36.9, "name": "Delta Lyrae"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (31, 'constellation', 'Pegasus', '飞马座', '{"lines": [[0, 1], [1, 2], [2, 0], [0, 3]], "stars": [{"ra": 346.19, "dec": 15.21, "name": "Markab"}, {"ra": 345.94, "dec": 28.08, "name": "Scheat"}, {"ra": 3.31, "dec": 15.18, "name": "Algenib"}, {"ra": 326.05, "dec": 9.88, "name": "Enif"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (32, 'constellation', 'Andromeda', '仙女座', '{"lines": [[0, 3], [3, 1], [1, 2]], "stars": [{"ra": 2.1, "dec": 29.09, "name": "Alpheratz"}, {"ra": 17.43, "dec": 35.62, "name": "Mirach"}, {"ra": 30.97, "dec": 42.33, "name": "Almach"}, {"ra": 8.78, "dec": 30.86, "name": "Delta Andromedae"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (33, 'constellation', 'Taurus', '金牛座', '{"lines": [[0, 1], [0, 2], [1, 3]], "stars": [{"ra": 68.98, "dec": 16.51, "name": "Aldebaran"}, {"ra": 81.57, "dec": 28.61, "name": "Elnath"}, {"ra": 56.87, "dec": 24.11, "name": "Alcyone"}, {"ra": 84.41, "dec": 21.14, "name": "Zeta Tauri"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (34, 'constellation', 'Gemini', '双子座', '{"lines": [[0, 1], [0, 2], [1, 3], [3, 2]], "stars": [{"ra": 116.33, "dec": 28.03, "name": "Pollux"}, {"ra": 113.65, "dec": 31.89, "name": "Castor"}, {"ra": 99.43, "dec": 16.4, "name": "Alhena"}, {"ra": 100.98, "dec": 25.13, "name": "Mebsuta"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (35, 'constellation', 'Virgo', '室女座', '{"lines": [[2, 1], [1, 0], [0, 3]], "stars": [{"ra": 201.3, "dec": -11.16, "name": "Spica"}, {"ra": 190.42, "dec": 1.76, "name": "Porrima"}, {"ra": 195.54, "dec": 10.96, "name": "Vindemiatrix"}, {"ra": 211.67, "dec": -0.67, "name": "Heze"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (36, 'constellation', 'Sagittarius', '人马座', '{"lines": [[0, 3], [3, 4], [4, 1], [1, 2]], "stars": [{"ra": 276.04, "dec": -34.38, "name": "Kaus Australis"}, {"ra": 283.82, "dec": -26.3, "name": "Nunki"}, {"ra": 290.97, "dec": -29.88, "name": "Ascella"}, {"ra": 276.99, "dec": -29.83, "name": "Kaus Media"}, {"ra": 279.23, "dec": -25.42, "name": "Kaus Borealis"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (37, 'constellation', 'Capricornus', '摩羯座', '{"lines": [[3, 1], [1, 2], [2, 0]], "stars": [{"ra": 326.76, "dec": -16.13, "name": "Deneb Algedi"}, {"ra": 305.25, "dec": -14.78, "name": "Dabih"}, {"ra": 325.02, "dec": -16.66, "name": "Nashira"}, {"ra": 304.51, "dec": -12.51, "name": "Algedi"}]}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (19, 'galaxy', 'Triangulum Galaxy', '三角座星系', '{"ra": 23.46, "dec": 30.66, "type": "spiral", "color": "#AACCEE", "magnitude": 5.72, "diameter_kly": 60, "distance_mly": 2.73}', '2025-11-27 11:04:42.544697', '2025-11-27 11:04:42.544697');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (20, 'galaxy', 'Large Magellanic Cloud', '大麦哲伦云', '{"ra": 80.89, "dec": -69.76, "type": "irregular", "color": "#DDCCFF", "magnitude": 0.9, "diameter_kly": 14, "distance_mly": 0.163}', '2025-11-27 11:04:42.544697', '2025-11-27 11:04:42.544697');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (21, 'galaxy', 'Small Magellanic Cloud', '小麦哲伦云', '{"ra": 12.8, "dec": -73.15, "type": "irregular", "color": "#CCBBEE", "magnitude": 2.7, "diameter_kly": 7, "distance_mly": 0.197}', '2025-11-27 11:04:42.544697', '2025-11-27 11:04:42.544697');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (22, 'galaxy', 'Milky Way Center', '银河系中心', '{"ra": 266.42, "dec": -29.01, "type": "galactic_center", "color": "#FFFFAA", "magnitude": -1, "diameter_kly": 100, "distance_mly": 0.026}', '2025-11-27 11:04:42.544697', '2025-11-27 11:04:42.544697');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (43, 'galaxy', 'Whirlpool Galaxy', '漩涡星系', '{"ra": 202.47, "dec": 47.2, "type": "spiral", "color": "#AADDFF", "magnitude": 8.4, "diameter_kly": 76, "distance_mly": 23}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (44, 'galaxy', 'Sombrero Galaxy', '草帽星系', '{"ra": 189.99, "dec": -11.62, "type": "spiral", "color": "#FFDDAA", "magnitude": 8.0, "diameter_kly": 50, "distance_mly": 29.3}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (45, 'galaxy', 'Pinwheel Galaxy', '风车星系', '{"ra": 210.8, "dec": 54.35, "type": "spiral", "color": "#BBDDFF", "magnitude": 7.9, "diameter_kly": 170, "distance_mly": 21}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (46, 'galaxy', 'Bode''s Galaxy', '波德星系', '{"ra": 148.97, "dec": 69.07, "type": "spiral", "color": "#CCDDFF", "magnitude": 6.9, "diameter_kly": 90, "distance_mly": 11.8}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (47, 'galaxy', 'Cigar Galaxy', '雪茄星系', '{"ra": 148.97, "dec": 69.68, "type": "starburst", "color": "#FFCCAA", "magnitude": 8.4, "diameter_kly": 37, "distance_mly": 11.5}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (48, 'galaxy', 'Centaurus A', '半人马座A', '{"ra": 201.37, "dec": -43.02, "type": "elliptical", "color": "#FFDDCC", "magnitude": 6.8, "diameter_kly": 60, "distance_mly": 13.7}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (49, 'galaxy', 'Sculptor Galaxy', '玉夫座星系', '{"ra": 15.15, "dec": -25.29, "type": "spiral", "color": "#CCDDEE", "magnitude": 7.2, "diameter_kly": 90, "distance_mly": 11.4}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (50, 'nebula', 'Orion Nebula', '猎户座大星云', '{"ra": 83.82, "dec": -5.39, "type": "emission", "color": "#FF6B9D", "magnitude": 4.0, "diameter_ly": 24, "distance_ly": 1344}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (51, 'nebula', 'Eagle Nebula', '鹰状星云', '{"ra": 274.7, "dec": -13.8, "type": "emission", "color": "#FF8B7D", "magnitude": 6.0, "diameter_ly": 70, "distance_ly": 7000}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (52, 'nebula', 'Crab Nebula', '蟹状星云', '{"ra": 83.63, "dec": 22.01, "type": "supernova_remnant", "color": "#FFAA66", "magnitude": 8.4, "diameter_ly": 11, "distance_ly": 6500}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (53, 'nebula', 'Ring Nebula', '环状星云', '{"ra": 283.4, "dec": 33.03, "type": "planetary", "color": "#66DDFF", "magnitude": 8.8, "diameter_ly": 1, "distance_ly": 2300}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (54, 'nebula', 'Helix Nebula', '螺旋星云', '{"ra": 337.41, "dec": -20.84, "type": "planetary", "color": "#88CCFF", "magnitude": 7.6, "diameter_ly": 2.5, "distance_ly": 700}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (55, 'nebula', 'Lagoon Nebula', '礁湖星云', '{"ra": 270.93, "dec": -24.38, "type": "emission", "color": "#FF99AA", "magnitude": 6.0, "diameter_ly": 55, "distance_ly": 4100}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (56, 'nebula', 'Horsehead Nebula', '马头星云', '{"ra": 85.3, "dec": -2.46, "type": "dark", "color": "#886655", "magnitude": 10.0, "diameter_ly": 3.5, "distance_ly": 1500}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (57, 'nebula', 'Eta Carinae Nebula', '船底座η星云', '{"ra": 161.26, "dec": -59.87, "type": "emission", "color": "#FFAACC", "magnitude": 3.0, "diameter_ly": 300, "distance_ly": 7500}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (58, 'nebula', 'North America Nebula', '北美洲星云', '{"ra": 312.95, "dec": 44.32, "type": "emission", "color": "#FF7788", "magnitude": 4.0, "diameter_ly": 50, "distance_ly": 1600}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (59, 'nebula', 'Trifid Nebula', '三叶星云', '{"ra": 270.36, "dec": -23.03, "type": "emission", "color": "#FF99DD", "magnitude": 6.3, "diameter_ly": 25, "distance_ly": 5200}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (60, 'nebula', 'Dumbbell Nebula', '哑铃星云', '{"ra": 299.9, "dec": 22.72, "type": "planetary", "color": "#77DDFF", "magnitude": 7.5, "diameter_ly": 1.44, "distance_ly": 1360}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (61, 'nebula', 'Veil Nebula', '面纱星云', '{"ra": 312.92, "dec": 30.72, "type": "supernova_remnant", "color": "#AADDFF", "magnitude": 7.0, "diameter_ly": 110, "distance_ly": 2400}', '2025-11-28 05:15:23.339711', '2025-11-28 05:15:23.339711');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (64, 'kuiper_belt', 'Kuiper Belt', '柯伊伯带', '{"size": 0.2, "color": "#AABBDD", "count": 1800, "opacity": 0.3, "heightScale": 0.1, "innerRadiusAU": 30, "outerRadiusAU": 50, "rotationSpeed": 0.005}', '2025-11-29 16:35:23.533261', '2025-11-29 16:35:23.533261');
INSERT INTO "public"."static_data" ("id", "category", "name", "name_zh", "data", "created_at", "updated_at") VALUES (63, 'asteroid_belt', 'Main Asteroid Belt', '主小行星带', '{"size": 0.1, "color": "#665544", "count": 800, "opacity": 0.4, "heightScale": 0.05, "innerRadiusAU": 2.2, "outerRadiusAU": 3.2, "rotationSpeed": 0.02}', '2025-11-29 16:35:23.533261', '2025-11-29 16:35:23.533261');
COMMIT;
-- ----------------------------
-- Table structure for system_settings
-- ----------------------------
DROP TABLE IF EXISTS "public"."system_settings";
CREATE TABLE "public"."system_settings" (
"id" int4 NOT NULL DEFAULT nextval('system_settings_id_seq'::regclass),
"key" varchar(100) COLLATE "pg_catalog"."default" NOT NULL,
"value" text COLLATE "pg_catalog"."default" NOT NULL,
"value_type" varchar(20) COLLATE "pg_catalog"."default" NOT NULL,
"category" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"label" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
"description" text COLLATE "pg_catalog"."default",
"is_public" bool,
"created_at" timestamptz(6) DEFAULT now(),
"updated_at" timestamptz(6)
)
;
ALTER TABLE "public"."system_settings" OWNER TO "postgres";
COMMENT ON COLUMN "public"."system_settings"."key" IS 'Setting key';
COMMENT ON COLUMN "public"."system_settings"."value" IS 'Setting value (JSON string or plain text)';
COMMENT ON COLUMN "public"."system_settings"."value_type" IS 'Value type: string, int, float, bool, json';
COMMENT ON COLUMN "public"."system_settings"."category" IS 'Setting category';
COMMENT ON COLUMN "public"."system_settings"."label" IS 'Display label';
COMMENT ON COLUMN "public"."system_settings"."description" IS 'Setting description';
COMMENT ON COLUMN "public"."system_settings"."is_public" IS 'Whether this setting is accessible to frontend';
-- ----------------------------
-- Records of system_settings
-- ----------------------------
BEGIN;
INSERT INTO "public"."system_settings" ("id", "key", "value", "value_type", "category", "label", "description", "is_public", "created_at", "updated_at") VALUES (2, 'current_cache_ttl_hours', '1', 'int', 'cache', '当前位置缓存时间(小时)', '当前位置数据在缓存中保存的时间', 'f', '2025-11-30 05:10:43.416174+00', NULL);
INSERT INTO "public"."system_settings" ("id", "key", "value", "value_type", "category", "label", "description", "is_public", "created_at", "updated_at") VALUES (3, 'historical_cache_ttl_days', '7', 'int', 'cache', '历史位置缓存时间(天)', '历史位置数据在缓存中保存的时间', 'f', '2025-11-30 05:10:43.416174+00', NULL);
INSERT INTO "public"."system_settings" ("id", "key", "value", "value_type", "category", "label", "description", "is_public", "created_at", "updated_at") VALUES (4, 'page_size', '10', 'int', 'ui', '每页显示数量', '管理页面默认每页显示的条数', 't', '2025-11-30 05:10:43.416174+00', NULL);
INSERT INTO "public"."system_settings" ("id", "key", "value", "value_type", "category", "label", "description", "is_public", "created_at", "updated_at") VALUES (5, 'nasa_api_timeout', '30', 'int', 'api', 'NASA API超时时间', '查询NASA Horizons API的超时时间', 'f', '2025-11-30 05:10:43.416174+00', NULL);
INSERT INTO "public"."system_settings" ("id", "key", "value", "value_type", "category", "label", "description", "is_public", "created_at", "updated_at") VALUES (6, 'orbit_points', '200', 'int', 'visualization', '轨道线点数', '生成轨道线时使用的点数,越多越平滑但性能越低', 't', '2025-11-30 05:10:43.416174+00', NULL);
INSERT INTO "public"."system_settings" ("id", "key", "value", "value_type", "category", "label", "description", "is_public", "created_at", "updated_at") VALUES (1, 'timeline_interval_days', '30', 'int', 'visualization', '时间轴播放间隔(天)', '星图时间轴播放时每次跳转的天数间隔', 't', '2025-11-30 05:10:43.416174+00', '2025-11-30 15:21:56.563851+00');
INSERT INTO "public"."system_settings" ("id", "key", "value", "value_type", "category", "label", "description", "is_public", "created_at", "updated_at") VALUES (7, 'danmaku_ttl', '86400', 'int', 'platform', '弹幕保留时间', '用户发送的弹幕在系统中保留的时间(秒)', 't', '2025-11-30 16:12:15.94262+00', NULL);
COMMIT;
-- ----------------------------
-- Table structure for tasks
-- ----------------------------
DROP TABLE IF EXISTS "public"."tasks";
CREATE TABLE "public"."tasks" (
"id" int4 NOT NULL DEFAULT nextval('tasks_id_seq'::regclass),
"task_type" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"status" varchar(20) COLLATE "pg_catalog"."default" NOT NULL DEFAULT 'pending'::character varying,
"description" varchar(255) COLLATE "pg_catalog"."default",
"params" jsonb,
"result" jsonb,
"progress" int4 DEFAULT 0,
"error_message" text COLLATE "pg_catalog"."default",
"created_by" int4,
"created_at" timestamptz(6) DEFAULT CURRENT_TIMESTAMP,
"updated_at" timestamptz(6) DEFAULT CURRENT_TIMESTAMP,
"started_at" timestamptz(6),
"completed_at" timestamptz(6)
)
;
ALTER TABLE "public"."tasks" OWNER TO "postgres";
-- ----------------------------
-- Records of tasks
-- ----------------------------
BEGIN;
INSERT INTO "public"."tasks" ("id", "task_type", "status", "description", "params", "result", "progress", "error_message", "created_by", "created_at", "updated_at", "started_at", "completed_at") VALUES (1, 'nasa_download', 'completed', 'Download positions for 1 bodies on 1 dates', '{"dates": ["2025-10-02"], "body_ids": ["-98"]}', '{"details": [{"dates": [{"date": "2025-10-02", "status": "success"}], "body_id": "-98", "body_name": "New Horizons"}], "total_failed": 0, "total_success": 1}', 100, NULL, NULL, '2025-11-30 16:00:06.394153+00', '2025-11-30 16:00:08.213837+00', NULL, '2025-11-30 08:00:08.20675+00');
INSERT INTO "public"."tasks" ("id", "task_type", "status", "description", "params", "result", "progress", "error_message", "created_by", "created_at", "updated_at", "started_at", "completed_at") VALUES (2, 'nasa_download', 'completed', 'Download positions for 1 bodies on 1 dates', '{"dates": ["2025-10-02"], "body_ids": ["-98"]}', '{"details": [{"dates": [{"date": "2025-10-02", "status": "skipped"}], "body_id": "-98", "body_name": "New Horizons"}], "total_failed": 0, "total_success": 1}', 100, NULL, NULL, '2025-11-30 16:00:08.948911+00', '2025-11-30 16:00:08.997236+00', NULL, '2025-11-30 08:00:08.994625+00');
INSERT INTO "public"."tasks" ("id", "task_type", "status", "description", "params", "result", "progress", "error_message", "created_by", "created_at", "updated_at", "started_at", "completed_at") VALUES (3, 'nasa_download', 'completed', 'Download positions for 1 bodies on 1 dates', '{"dates": ["2025-10-08"], "body_ids": ["-98"]}', '{"details": [{"dates": [{"date": "2025-10-08", "status": "success"}], "body_id": "-98", "body_name": "New Horizons"}], "total_failed": 0, "total_success": 1}', 100, NULL, NULL, '2025-11-30 16:00:10.526312+00', '2025-11-30 16:00:12.208615+00', NULL, '2025-11-30 08:00:12.201716+00');
INSERT INTO "public"."tasks" ("id", "task_type", "status", "description", "params", "result", "progress", "error_message", "created_by", "created_at", "updated_at", "started_at", "completed_at") VALUES (6, 'nasa_download', 'completed', 'Download positions for 4 bodies on 31 dates', '{"dates": ["2025-10-01", "2025-10-02", "2025-10-03", "2025-10-04", "2025-10-05", "2025-10-06", "2025-10-07", "2025-10-08", "2025-10-09", "2025-10-10", "2025-10-11", "2025-10-12", "2025-10-13", "2025-10-14", "2025-10-15", "2025-10-16", "2025-10-17", "2025-10-18", "2025-10-19", "2025-10-20", "2025-10-21", "2025-10-22", "2025-10-23", "2025-10-24", "2025-10-25", "2025-10-26", "2025-10-27", "2025-10-28", "2025-10-29", "2025-10-30", "2025-10-31"], "body_ids": ["503", "601", "301", "606"]}', '{"details": [{"dates": [{"date": "2025-10-01", "status": "success"}, {"date": "2025-10-02", "status": "success"}, {"date": "2025-10-03", "status": "success"}, {"date": "2025-10-04", "status": "success"}, {"date": "2025-10-05", "status": "success"}, {"date": "2025-10-06", "status": "success"}, {"date": "2025-10-07", "status": "success"}, {"date": "2025-10-08", "status": "success"}, {"date": "2025-10-09", "status": "success"}, {"date": "2025-10-10", "status": "success"}, {"date": "2025-10-11", "status": "success"}, {"date": "2025-10-12", "status": "success"}, {"date": "2025-10-13", "status": "success"}, {"date": "2025-10-14", "status": "success"}, {"date": "2025-10-15", "status": "success"}, {"date": "2025-10-16", "status": "success"}, {"date": "2025-10-17", "status": "success"}, {"date": "2025-10-18", "status": "success"}, {"date": "2025-10-19", "status": "success"}, {"date": "2025-10-20", "status": "success"}, {"date": "2025-10-21", "status": "success"}, {"date": "2025-10-22", "status": "success"}, {"date": "2025-10-23", "status": "success"}, {"date": "2025-10-24", "status": "success"}, {"date": "2025-10-25", "status": "success"}, {"date": "2025-10-26", "status": "success"}, {"date": "2025-10-27", "status": "success"}, {"date": "2025-10-28", "status": "success"}, {"date": "2025-10-29", "status": "success"}, {"date": "2025-10-30", "status": "success"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "503", "body_name": "Ganymede"}, {"dates": [{"date": "2025-10-01", "status": "success"}, {"date": "2025-10-02", "status": "success"}, {"date": "2025-10-03", "status": "success"}, {"date": "2025-10-04", "status": "success"}, {"date": "2025-10-05", "status": "success"}, {"date": "2025-10-06", "status": "success"}, {"date": "2025-10-07", "status": "success"}, {"date": "2025-10-08", "status": "success"}, {"date": "2025-10-09", "status": "success"}, {"date": "2025-10-10", "status": "success"}, {"date": "2025-10-11", "status": "success"}, {"date": "2025-10-12", "status": "success"}, {"date": "2025-10-13", "status": "success"}, {"date": "2025-10-14", "status": "success"}, {"date": "2025-10-15", "status": "success"}, {"date": "2025-10-16", "status": "success"}, {"date": "2025-10-17", "status": "success"}, {"date": "2025-10-18", "status": "success"}, {"date": "2025-10-19", "status": "success"}, {"date": "2025-10-20", "status": "success"}, {"date": "2025-10-21", "status": "success"}, {"date": "2025-10-22", "status": "success"}, {"date": "2025-10-23", "status": "success"}, {"date": "2025-10-24", "status": "success"}, {"date": "2025-10-25", "status": "success"}, {"date": "2025-10-26", "status": "success"}, {"date": "2025-10-27", "status": "success"}, {"date": "2025-10-28", "status": "success"}, {"date": "2025-10-29", "status": "success"}, {"date": "2025-10-30", "status": "success"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "601", "body_name": "Mimas"}, {"dates": [{"date": "2025-10-01", "status": "success"}, {"date": "2025-10-02", "status": "success"}, {"date": "2025-10-03", "status": "success"}, {"date": "2025-10-04", "status": "success"}, {"date": "2025-10-05", "status": "success"}, {"date": "2025-10-06", "status": "success"}, {"date": "2025-10-07", "status": "success"}, {"date": "2025-10-08", "status": "success"}, {"date": "2025-10-09", "status": "success"}, {"date": "2025-10-10", "status": "success"}, {"date": "2025-10-11", "status": "success"}, {"date": "2025-10-12", "status": "success"}, {"date": "2025-10-13", "status": "success"}, {"date": "2025-10-14", "status": "success"}, {"date": "2025-10-15", "status": "success"}, {"date": "2025-10-16", "status": "success"}, {"date": "2025-10-17", "status": "success"}, {"date": "2025-10-18", "status": "success"}, {"date": "2025-10-19", "status": "success"}, {"date": "2025-10-20", "status": "success"}, {"date": "2025-10-21", "status": "success"}, {"date": "2025-10-22", "status": "success"}, {"date": "2025-10-23", "status": "success"}, {"date": "2025-10-24", "status": "success"}, {"date": "2025-10-25", "status": "success"}, {"date": "2025-10-26", "status": "success"}, {"date": "2025-10-27", "status": "success"}, {"date": "2025-10-28", "status": "success"}, {"date": "2025-10-29", "status": "success"}, {"date": "2025-10-30", "status": "skipped"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "301", "body_name": "Moon"}, {"dates": [{"date": "2025-10-01", "status": "success"}, {"date": "2025-10-02", "status": "success"}, {"date": "2025-10-03", "status": "success"}, {"date": "2025-10-04", "status": "success"}, {"date": "2025-10-05", "status": "success"}, {"date": "2025-10-06", "status": "success"}, {"date": "2025-10-07", "status": "success"}, {"date": "2025-10-08", "status": "success"}, {"date": "2025-10-09", "status": "success"}, {"date": "2025-10-10", "status": "success"}, {"date": "2025-10-11", "status": "success"}, {"date": "2025-10-12", "status": "success"}, {"date": "2025-10-13", "status": "success"}, {"date": "2025-10-14", "status": "success"}, {"date": "2025-10-15", "status": "success"}, {"date": "2025-10-16", "status": "success"}, {"date": "2025-10-17", "status": "success"}, {"date": "2025-10-18", "status": "success"}, {"date": "2025-10-19", "status": "success"}, {"date": "2025-10-20", "status": "success"}, {"date": "2025-10-21", "status": "success"}, {"date": "2025-10-22", "status": "success"}, {"date": "2025-10-23", "status": "success"}, {"date": "2025-10-24", "status": "success"}, {"date": "2025-10-25", "status": "success"}, {"date": "2025-10-26", "status": "success"}, {"date": "2025-10-27", "status": "success"}, {"date": "2025-10-28", "status": "success"}, {"date": "2025-10-29", "status": "success"}, {"date": "2025-10-30", "status": "success"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "606", "body_name": "Titan"}], "total_failed": 0, "total_success": 124}', 100, NULL, NULL, '2025-11-30 16:12:22.533738+00', '2025-11-30 16:15:26.867409+00', NULL, '2025-11-30 08:15:26.863473+00');
INSERT INTO "public"."tasks" ("id", "task_type", "status", "description", "params", "result", "progress", "error_message", "created_by", "created_at", "updated_at", "started_at", "completed_at") VALUES (4, 'nasa_download', 'completed', 'Download positions for 3 bodies on 31 dates', '{"dates": ["2025-10-01", "2025-10-02", "2025-10-03", "2025-10-04", "2025-10-05", "2025-10-06", "2025-10-07", "2025-10-08", "2025-10-09", "2025-10-10", "2025-10-11", "2025-10-12", "2025-10-13", "2025-10-14", "2025-10-15", "2025-10-16", "2025-10-17", "2025-10-18", "2025-10-19", "2025-10-20", "2025-10-21", "2025-10-22", "2025-10-23", "2025-10-24", "2025-10-25", "2025-10-26", "2025-10-27", "2025-10-28", "2025-10-29", "2025-10-30", "2025-10-31"], "body_ids": ["50326340", "90000030", "90004920"]}', '{"details": [{"dates": [{"date": "2025-10-01", "status": "success"}, {"date": "2025-10-02", "status": "success"}, {"date": "2025-10-03", "status": "success"}, {"date": "2025-10-04", "status": "success"}, {"date": "2025-10-05", "status": "success"}, {"date": "2025-10-06", "status": "success"}, {"date": "2025-10-07", "status": "success"}, {"date": "2025-10-08", "status": "success"}, {"date": "2025-10-09", "status": "success"}, {"date": "2025-10-10", "status": "success"}, {"date": "2025-10-11", "status": "success"}, {"date": "2025-10-12", "status": "success"}, {"date": "2025-10-13", "status": "success"}, {"date": "2025-10-14", "status": "success"}, {"date": "2025-10-15", "status": "success"}, {"date": "2025-10-16", "status": "success"}, {"date": "2025-10-17", "status": "success"}, {"date": "2025-10-18", "status": "success"}, {"date": "2025-10-19", "status": "success"}, {"date": "2025-10-20", "status": "success"}, {"date": "2025-10-21", "status": "success"}, {"date": "2025-10-22", "status": "success"}, {"date": "2025-10-23", "status": "success"}, {"date": "2025-10-24", "status": "success"}, {"date": "2025-10-25", "status": "success"}, {"date": "2025-10-26", "status": "success"}, {"date": "2025-10-27", "status": "success"}, {"date": "2025-10-28", "status": "success"}, {"date": "2025-10-29", "status": "success"}, {"date": "2025-10-30", "status": "success"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "50326340", "body_name": "1I/''Oumuamua"}, {"dates": [{"date": "2025-10-01", "status": "success"}, {"date": "2025-10-02", "status": "success"}, {"date": "2025-10-03", "status": "success"}, {"date": "2025-10-04", "status": "success"}, {"date": "2025-10-05", "status": "success"}, {"date": "2025-10-06", "status": "success"}, {"date": "2025-10-07", "status": "success"}, {"date": "2025-10-08", "status": "success"}, {"date": "2025-10-09", "status": "success"}, {"date": "2025-10-10", "status": "success"}, {"date": "2025-10-11", "status": "success"}, {"date": "2025-10-12", "status": "success"}, {"date": "2025-10-13", "status": "success"}, {"date": "2025-10-14", "status": "success"}, {"date": "2025-10-15", "status": "success"}, {"date": "2025-10-16", "status": "success"}, {"date": "2025-10-17", "status": "success"}, {"date": "2025-10-18", "status": "success"}, {"date": "2025-10-19", "status": "success"}, {"date": "2025-10-20", "status": "success"}, {"date": "2025-10-21", "status": "success"}, {"date": "2025-10-22", "status": "success"}, {"date": "2025-10-23", "status": "success"}, {"date": "2025-10-24", "status": "success"}, {"date": "2025-10-25", "status": "success"}, {"date": "2025-10-26", "status": "success"}, {"date": "2025-10-27", "status": "success"}, {"date": "2025-10-28", "status": "success"}, {"date": "2025-10-29", "status": "success"}, {"date": "2025-10-30", "status": "success"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "90000030", "body_name": "1P/Halley"}, {"dates": [{"date": "2025-10-01", "status": "success"}, {"date": "2025-10-02", "status": "success"}, {"date": "2025-10-03", "status": "success"}, {"date": "2025-10-04", "status": "success"}, {"date": "2025-10-05", "status": "success"}, {"date": "2025-10-06", "status": "success"}, {"date": "2025-10-07", "status": "success"}, {"date": "2025-10-08", "status": "success"}, {"date": "2025-10-09", "status": "success"}, {"date": "2025-10-10", "status": "success"}, {"date": "2025-10-11", "status": "success"}, {"date": "2025-10-12", "status": "success"}, {"date": "2025-10-13", "status": "success"}, {"date": "2025-10-14", "status": "success"}, {"date": "2025-10-15", "status": "success"}, {"date": "2025-10-16", "status": "success"}, {"date": "2025-10-17", "status": "success"}, {"date": "2025-10-18", "status": "success"}, {"date": "2025-10-19", "status": "success"}, {"date": "2025-10-20", "status": "success"}, {"date": "2025-10-21", "status": "success"}, {"date": "2025-10-22", "status": "success"}, {"date": "2025-10-23", "status": "success"}, {"date": "2025-10-24", "status": "success"}, {"date": "2025-10-25", "status": "success"}, {"date": "2025-10-26", "status": "success"}, {"date": "2025-10-27", "status": "success"}, {"date": "2025-10-28", "status": "success"}, {"date": "2025-10-29", "status": "success"}, {"date": "2025-10-30", "status": "success"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "90004920", "body_name": "3I/ATLAS"}], "total_failed": 0, "total_success": 93}', 100, NULL, NULL, '2025-11-30 16:06:52.895854+00', '2025-11-30 16:09:16.87426+00', NULL, '2025-11-30 08:09:16.869001+00');
INSERT INTO "public"."tasks" ("id", "task_type", "status", "description", "params", "result", "progress", "error_message", "created_by", "created_at", "updated_at", "started_at", "completed_at") VALUES (5, 'nasa_download', 'completed', 'Download positions for 8 bodies on 31 dates', '{"dates": ["2025-10-01", "2025-10-02", "2025-10-03", "2025-10-04", "2025-10-05", "2025-10-06", "2025-10-07", "2025-10-08", "2025-10-09", "2025-10-10", "2025-10-11", "2025-10-12", "2025-10-13", "2025-10-14", "2025-10-15", "2025-10-16", "2025-10-17", "2025-10-18", "2025-10-19", "2025-10-20", "2025-10-21", "2025-10-22", "2025-10-23", "2025-10-24", "2025-10-25", "2025-10-26", "2025-10-27", "2025-10-28", "2025-10-29", "2025-10-30", "2025-10-31"], "body_ids": ["399", "599", "499", "199", "899", "699", "799", "299"]}', '{"details": [{"dates": [{"date": "2025-10-01", "status": "skipped"}, {"date": "2025-10-02", "status": "skipped"}, {"date": "2025-10-03", "status": "skipped"}, {"date": "2025-10-04", "status": "skipped"}, {"date": "2025-10-05", "status": "skipped"}, {"date": "2025-10-06", "status": "skipped"}, {"date": "2025-10-07", "status": "skipped"}, {"date": "2025-10-08", "status": "skipped"}, {"date": "2025-10-09", "status": "skipped"}, {"date": "2025-10-10", "status": "skipped"}, {"date": "2025-10-11", "status": "skipped"}, {"date": "2025-10-12", "status": "skipped"}, {"date": "2025-10-13", "status": "skipped"}, {"date": "2025-10-14", "status": "skipped"}, {"date": "2025-10-15", "status": "skipped"}, {"date": "2025-10-16", "status": "skipped"}, {"date": "2025-10-17", "status": "skipped"}, {"date": "2025-10-18", "status": "skipped"}, {"date": "2025-10-19", "status": "skipped"}, {"date": "2025-10-20", "status": "skipped"}, {"date": "2025-10-21", "status": "skipped"}, {"date": "2025-10-22", "status": "skipped"}, {"date": "2025-10-23", "status": "skipped"}, {"date": "2025-10-24", "status": "skipped"}, {"date": "2025-10-25", "status": "skipped"}, {"date": "2025-10-26", "status": "skipped"}, {"date": "2025-10-27", "status": "skipped"}, {"date": "2025-10-28", "status": "skipped"}, {"date": "2025-10-29", "status": "skipped"}, {"date": "2025-10-30", "status": "skipped"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "399", "body_name": "Earth"}, {"dates": [{"date": "2025-10-01", "status": "skipped"}, {"date": "2025-10-02", "status": "skipped"}, {"date": "2025-10-03", "status": "skipped"}, {"date": "2025-10-04", "status": "skipped"}, {"date": "2025-10-05", "status": "skipped"}, {"date": "2025-10-06", "status": "skipped"}, {"date": "2025-10-07", "status": "skipped"}, {"date": "2025-10-08", "status": "skipped"}, {"date": "2025-10-09", "status": "skipped"}, {"date": "2025-10-10", "status": "skipped"}, {"date": "2025-10-11", "status": "skipped"}, {"date": "2025-10-12", "status": "skipped"}, {"date": "2025-10-13", "status": "skipped"}, {"date": "2025-10-14", "status": "skipped"}, {"date": "2025-10-15", "status": "skipped"}, {"date": "2025-10-16", "status": "skipped"}, {"date": "2025-10-17", "status": "skipped"}, {"date": "2025-10-18", "status": "skipped"}, {"date": "2025-10-19", "status": "skipped"}, {"date": "2025-10-20", "status": "skipped"}, {"date": "2025-10-21", "status": "skipped"}, {"date": "2025-10-22", "status": "skipped"}, {"date": "2025-10-23", "status": "skipped"}, {"date": "2025-10-24", "status": "skipped"}, {"date": "2025-10-25", "status": "skipped"}, {"date": "2025-10-26", "status": "skipped"}, {"date": "2025-10-27", "status": "skipped"}, {"date": "2025-10-28", "status": "skipped"}, {"date": "2025-10-29", "status": "skipped"}, {"date": "2025-10-30", "status": "skipped"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "599", "body_name": "Jupiter"}, {"dates": [{"date": "2025-10-01", "status": "skipped"}, {"date": "2025-10-02", "status": "skipped"}, {"date": "2025-10-03", "status": "skipped"}, {"date": "2025-10-04", "status": "skipped"}, {"date": "2025-10-05", "status": "skipped"}, {"date": "2025-10-06", "status": "skipped"}, {"date": "2025-10-07", "status": "skipped"}, {"date": "2025-10-08", "status": "skipped"}, {"date": "2025-10-09", "status": "skipped"}, {"date": "2025-10-10", "status": "skipped"}, {"date": "2025-10-11", "status": "skipped"}, {"date": "2025-10-12", "status": "skipped"}, {"date": "2025-10-13", "status": "skipped"}, {"date": "2025-10-14", "status": "skipped"}, {"date": "2025-10-15", "status": "skipped"}, {"date": "2025-10-16", "status": "skipped"}, {"date": "2025-10-17", "status": "skipped"}, {"date": "2025-10-18", "status": "skipped"}, {"date": "2025-10-19", "status": "skipped"}, {"date": "2025-10-20", "status": "skipped"}, {"date": "2025-10-21", "status": "skipped"}, {"date": "2025-10-22", "status": "skipped"}, {"date": "2025-10-23", "status": "skipped"}, {"date": "2025-10-24", "status": "skipped"}, {"date": "2025-10-25", "status": "skipped"}, {"date": "2025-10-26", "status": "skipped"}, {"date": "2025-10-27", "status": "skipped"}, {"date": "2025-10-28", "status": "skipped"}, {"date": "2025-10-29", "status": "skipped"}, {"date": "2025-10-30", "status": "skipped"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "499", "body_name": "Mars"}, {"dates": [{"date": "2025-10-01", "status": "skipped"}, {"date": "2025-10-02", "status": "skipped"}, {"date": "2025-10-03", "status": "skipped"}, {"date": "2025-10-04", "status": "skipped"}, {"date": "2025-10-05", "status": "skipped"}, {"date": "2025-10-06", "status": "skipped"}, {"date": "2025-10-07", "status": "skipped"}, {"date": "2025-10-08", "status": "skipped"}, {"date": "2025-10-09", "status": "skipped"}, {"date": "2025-10-10", "status": "skipped"}, {"date": "2025-10-11", "status": "skipped"}, {"date": "2025-10-12", "status": "skipped"}, {"date": "2025-10-13", "status": "skipped"}, {"date": "2025-10-14", "status": "skipped"}, {"date": "2025-10-15", "status": "skipped"}, {"date": "2025-10-16", "status": "skipped"}, {"date": "2025-10-17", "status": "skipped"}, {"date": "2025-10-18", "status": "skipped"}, {"date": "2025-10-19", "status": "skipped"}, {"date": "2025-10-20", "status": "skipped"}, {"date": "2025-10-21", "status": "skipped"}, {"date": "2025-10-22", "status": "skipped"}, {"date": "2025-10-23", "status": "skipped"}, {"date": "2025-10-24", "status": "skipped"}, {"date": "2025-10-25", "status": "skipped"}, {"date": "2025-10-26", "status": "skipped"}, {"date": "2025-10-27", "status": "skipped"}, {"date": "2025-10-28", "status": "skipped"}, {"date": "2025-10-29", "status": "skipped"}, {"date": "2025-10-30", "status": "skipped"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "199", "body_name": "Mercury"}, {"dates": [{"date": "2025-10-01", "status": "skipped"}, {"date": "2025-10-02", "status": "skipped"}, {"date": "2025-10-03", "status": "skipped"}, {"date": "2025-10-04", "status": "skipped"}, {"date": "2025-10-05", "status": "skipped"}, {"date": "2025-10-06", "status": "skipped"}, {"date": "2025-10-07", "status": "skipped"}, {"date": "2025-10-08", "status": "skipped"}, {"date": "2025-10-09", "status": "skipped"}, {"date": "2025-10-10", "status": "skipped"}, {"date": "2025-10-11", "status": "skipped"}, {"date": "2025-10-12", "status": "skipped"}, {"date": "2025-10-13", "status": "skipped"}, {"date": "2025-10-14", "status": "skipped"}, {"date": "2025-10-15", "status": "skipped"}, {"date": "2025-10-16", "status": "skipped"}, {"date": "2025-10-17", "status": "skipped"}, {"date": "2025-10-18", "status": "skipped"}, {"date": "2025-10-19", "status": "skipped"}, {"date": "2025-10-20", "status": "skipped"}, {"date": "2025-10-21", "status": "skipped"}, {"date": "2025-10-22", "status": "skipped"}, {"date": "2025-10-23", "status": "skipped"}, {"date": "2025-10-24", "status": "skipped"}, {"date": "2025-10-25", "status": "skipped"}, {"date": "2025-10-26", "status": "skipped"}, {"date": "2025-10-27", "status": "skipped"}, {"date": "2025-10-28", "status": "skipped"}, {"date": "2025-10-29", "status": "skipped"}, {"date": "2025-10-30", "status": "skipped"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "899", "body_name": "Neptune"}, {"dates": [{"date": "2025-10-01", "status": "skipped"}, {"date": "2025-10-02", "status": "skipped"}, {"date": "2025-10-03", "status": "skipped"}, {"date": "2025-10-04", "status": "skipped"}, {"date": "2025-10-05", "status": "skipped"}, {"date": "2025-10-06", "status": "skipped"}, {"date": "2025-10-07", "status": "skipped"}, {"date": "2025-10-08", "status": "skipped"}, {"date": "2025-10-09", "status": "skipped"}, {"date": "2025-10-10", "status": "skipped"}, {"date": "2025-10-11", "status": "skipped"}, {"date": "2025-10-12", "status": "skipped"}, {"date": "2025-10-13", "status": "skipped"}, {"date": "2025-10-14", "status": "skipped"}, {"date": "2025-10-15", "status": "skipped"}, {"date": "2025-10-16", "status": "skipped"}, {"date": "2025-10-17", "status": "skipped"}, {"date": "2025-10-18", "status": "skipped"}, {"date": "2025-10-19", "status": "skipped"}, {"date": "2025-10-20", "status": "skipped"}, {"date": "2025-10-21", "status": "skipped"}, {"date": "2025-10-22", "status": "skipped"}, {"date": "2025-10-23", "status": "skipped"}, {"date": "2025-10-24", "status": "skipped"}, {"date": "2025-10-25", "status": "skipped"}, {"date": "2025-10-26", "status": "skipped"}, {"date": "2025-10-27", "status": "skipped"}, {"date": "2025-10-28", "status": "skipped"}, {"date": "2025-10-29", "status": "skipped"}, {"date": "2025-10-30", "status": "skipped"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "699", "body_name": "Saturn"}, {"dates": [{"date": "2025-10-01", "status": "skipped"}, {"date": "2025-10-02", "status": "skipped"}, {"date": "2025-10-03", "status": "skipped"}, {"date": "2025-10-04", "status": "skipped"}, {"date": "2025-10-05", "status": "skipped"}, {"date": "2025-10-06", "status": "skipped"}, {"date": "2025-10-07", "status": "skipped"}, {"date": "2025-10-08", "status": "skipped"}, {"date": "2025-10-09", "status": "skipped"}, {"date": "2025-10-10", "status": "skipped"}, {"date": "2025-10-11", "status": "skipped"}, {"date": "2025-10-12", "status": "skipped"}, {"date": "2025-10-13", "status": "skipped"}, {"date": "2025-10-14", "status": "skipped"}, {"date": "2025-10-15", "status": "skipped"}, {"date": "2025-10-16", "status": "skipped"}, {"date": "2025-10-17", "status": "skipped"}, {"date": "2025-10-18", "status": "skipped"}, {"date": "2025-10-19", "status": "skipped"}, {"date": "2025-10-20", "status": "skipped"}, {"date": "2025-10-21", "status": "skipped"}, {"date": "2025-10-22", "status": "skipped"}, {"date": "2025-10-23", "status": "skipped"}, {"date": "2025-10-24", "status": "skipped"}, {"date": "2025-10-25", "status": "skipped"}, {"date": "2025-10-26", "status": "skipped"}, {"date": "2025-10-27", "status": "skipped"}, {"date": "2025-10-28", "status": "skipped"}, {"date": "2025-10-29", "status": "skipped"}, {"date": "2025-10-30", "status": "skipped"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "799", "body_name": "Uranus"}, {"dates": [{"date": "2025-10-01", "status": "skipped"}, {"date": "2025-10-02", "status": "skipped"}, {"date": "2025-10-03", "status": "skipped"}, {"date": "2025-10-04", "status": "skipped"}, {"date": "2025-10-05", "status": "skipped"}, {"date": "2025-10-06", "status": "skipped"}, {"date": "2025-10-07", "status": "skipped"}, {"date": "2025-10-08", "status": "skipped"}, {"date": "2025-10-09", "status": "skipped"}, {"date": "2025-10-10", "status": "skipped"}, {"date": "2025-10-11", "status": "skipped"}, {"date": "2025-10-12", "status": "skipped"}, {"date": "2025-10-13", "status": "skipped"}, {"date": "2025-10-14", "status": "skipped"}, {"date": "2025-10-15", "status": "skipped"}, {"date": "2025-10-16", "status": "skipped"}, {"date": "2025-10-17", "status": "skipped"}, {"date": "2025-10-18", "status": "skipped"}, {"date": "2025-10-19", "status": "skipped"}, {"date": "2025-10-20", "status": "skipped"}, {"date": "2025-10-21", "status": "skipped"}, {"date": "2025-10-22", "status": "skipped"}, {"date": "2025-10-23", "status": "skipped"}, {"date": "2025-10-24", "status": "skipped"}, {"date": "2025-10-25", "status": "skipped"}, {"date": "2025-10-26", "status": "skipped"}, {"date": "2025-10-27", "status": "skipped"}, {"date": "2025-10-28", "status": "skipped"}, {"date": "2025-10-29", "status": "skipped"}, {"date": "2025-10-30", "status": "skipped"}, {"date": "2025-10-31", "status": "skipped"}], "body_id": "299", "body_name": "Venus"}], "total_failed": 0, "total_success": 248}', 100, NULL, NULL, '2025-11-30 16:12:12.677223+00', '2025-11-30 16:12:14.767963+00', NULL, '2025-11-30 08:12:14.764721+00');
COMMIT;
-- ----------------------------
-- Table structure for user_roles
-- ----------------------------
DROP TABLE IF EXISTS "public"."user_roles";
CREATE TABLE "public"."user_roles" (
"user_id" int4 NOT NULL,
"role_id" int4 NOT NULL,
"created_at" timestamp(6) DEFAULT now()
)
;
ALTER TABLE "public"."user_roles" OWNER TO "postgres";
-- ----------------------------
-- Records of user_roles
-- ----------------------------
BEGIN;
INSERT INTO "public"."user_roles" ("user_id", "role_id", "created_at") VALUES (2, 3, '2025-11-28 18:07:11.767382');
INSERT INTO "public"."user_roles" ("user_id", "role_id", "created_at") VALUES (3, 4, '2025-11-29 18:30:52.045915');
COMMIT;
-- ----------------------------
-- Table structure for users
-- ----------------------------
DROP TABLE IF EXISTS "public"."users";
CREATE TABLE "public"."users" (
"id" int4 NOT NULL DEFAULT nextval('users_id_seq'::regclass),
"username" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"password_hash" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"email" varchar(255) COLLATE "pg_catalog"."default",
"full_name" varchar(100) COLLATE "pg_catalog"."default",
"is_active" bool NOT NULL,
"created_at" timestamp(6) DEFAULT now(),
"updated_at" timestamp(6) DEFAULT now(),
"last_login_at" timestamp(6)
)
;
ALTER TABLE "public"."users" OWNER TO "postgres";
COMMENT ON COLUMN "public"."users"."username" IS 'Username (unique)';
COMMENT ON COLUMN "public"."users"."password_hash" IS 'Password hash (bcrypt)';
COMMENT ON COLUMN "public"."users"."email" IS 'Email address';
COMMENT ON COLUMN "public"."users"."full_name" IS 'Full name';
COMMENT ON COLUMN "public"."users"."is_active" IS 'Account active status';
COMMENT ON COLUMN "public"."users"."last_login_at" IS 'Last login time';
-- ----------------------------
-- Records of users
-- ----------------------------
BEGIN;
INSERT INTO "public"."users" ("id", "username", "password_hash", "email", "full_name", "is_active", "created_at", "updated_at", "last_login_at") VALUES (3, 'pepperdog', '$2b$12$KqTNQKf13L5rDUkt6yabNuh7fbmRsxME3W5OoVXj/C2.CLNcHvAz.', 'mula.liu@163.com', '胡椒狗', 't', '2025-11-29 18:30:52.045915', '2025-12-01 09:22:53.233616', '2025-12-01 09:22:53.516333');
INSERT INTO "public"."users" ("id", "username", "password_hash", "email", "full_name", "is_active", "created_at", "updated_at", "last_login_at") VALUES (2, 'cosmo', '$2b$12$42d8/NAaYJlK8w/1yBd5uegdHlDkpC9XFtXYu2sWq0EXj48KAMZ0i', 'admin@cosmo.com', 'COSMO零号', 't', '2025-11-28 18:07:11.767382', '2025-12-02 03:27:52.709283', '2025-12-02 03:27:52.961435');
COMMIT;
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."menus_id_seq"
OWNED BY "public"."menus"."id";
SELECT setval('"public"."menus_id_seq"', 10, true);
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."orbits_id_seq"
OWNED BY "public"."orbits"."id";
SELECT setval('"public"."orbits_id_seq"', 34, true);
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."positions_id_seq"
OWNED BY "public"."positions"."id";
SELECT setval('"public"."positions_id_seq"', 126682, true);
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."resources_id_seq"
OWNED BY "public"."resources"."id";
SELECT setval('"public"."resources_id_seq"', 35, true);
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."role_menus_id_seq"
OWNED BY "public"."role_menus"."id";
SELECT setval('"public"."role_menus_id_seq"', 9, true);
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."roles_id_seq"
OWNED BY "public"."roles"."id";
SELECT setval('"public"."roles_id_seq"', 4, true);
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."static_data_id_seq"
OWNED BY "public"."static_data"."id";
SELECT setval('"public"."static_data_id_seq"', 64, true);
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."system_settings_id_seq"
OWNED BY "public"."system_settings"."id";
SELECT setval('"public"."system_settings_id_seq"', 7, true);
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."tasks_id_seq"
OWNED BY "public"."tasks"."id";
SELECT setval('"public"."tasks_id_seq"', 6, true);
-- ----------------------------
-- Alter sequences owned by
-- ----------------------------
ALTER SEQUENCE "public"."users_id_seq"
OWNED BY "public"."users"."id";
SELECT setval('"public"."users_id_seq"', 3, true);
-- ----------------------------
-- Indexes structure for table celestial_bodies
-- ----------------------------
CREATE INDEX "idx_celestial_bodies_name" ON "public"."celestial_bodies" USING btree (
"name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
CREATE INDEX "idx_celestial_bodies_type" ON "public"."celestial_bodies" USING btree (
"type" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Checks structure for table celestial_bodies
-- ----------------------------
ALTER TABLE "public"."celestial_bodies" ADD CONSTRAINT "chk_type" CHECK (type::text = ANY (ARRAY['star'::character varying, 'planet'::character varying, 'moon'::character varying, 'probe'::character varying, 'comet'::character varying, 'asteroid'::character varying, 'dwarf_planet'::character varying, 'satellite'::character varying]::text[]));
-- ----------------------------
-- Primary Key structure for table celestial_bodies
-- ----------------------------
ALTER TABLE "public"."celestial_bodies" ADD CONSTRAINT "celestial_bodies_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table menus
-- ----------------------------
CREATE INDEX "idx_menus_parent_id" ON "public"."menus" USING btree (
"parent_id" "pg_catalog"."int4_ops" ASC NULLS LAST
);
CREATE INDEX "idx_menus_sort_order" ON "public"."menus" USING btree (
"sort_order" "pg_catalog"."int4_ops" ASC NULLS LAST
);
-- ----------------------------
-- Primary Key structure for table menus
-- ----------------------------
ALTER TABLE "public"."menus" ADD CONSTRAINT "menus_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table nasa_cache
-- ----------------------------
CREATE INDEX "idx_nasa_cache_body_id" ON "public"."nasa_cache" USING btree (
"body_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
CREATE INDEX "idx_nasa_cache_expires" ON "public"."nasa_cache" USING btree (
"expires_at" "pg_catalog"."timestamp_ops" ASC NULLS LAST
);
CREATE INDEX "idx_nasa_cache_time_range" ON "public"."nasa_cache" USING btree (
"body_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
"start_time" "pg_catalog"."timestamp_ops" ASC NULLS LAST,
"end_time" "pg_catalog"."timestamp_ops" ASC NULLS LAST
);
-- ----------------------------
-- Checks structure for table nasa_cache
-- ----------------------------
ALTER TABLE "public"."nasa_cache" ADD CONSTRAINT "chk_time_range" CHECK (end_time >= start_time);
-- ----------------------------
-- Primary Key structure for table nasa_cache
-- ----------------------------
ALTER TABLE "public"."nasa_cache" ADD CONSTRAINT "nasa_cache_pkey" PRIMARY KEY ("cache_key");
-- ----------------------------
-- Indexes structure for table orbits
-- ----------------------------
CREATE INDEX "idx_orbits_body_id" ON "public"."orbits" USING btree (
"body_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
CREATE INDEX "idx_orbits_updated_at" ON "public"."orbits" USING btree (
"updated_at" "pg_catalog"."timestamp_ops" ASC NULLS LAST
);
-- ----------------------------
-- Uniques structure for table orbits
-- ----------------------------
ALTER TABLE "public"."orbits" ADD CONSTRAINT "orbits_body_id_unique" UNIQUE ("body_id");
-- ----------------------------
-- Primary Key structure for table orbits
-- ----------------------------
ALTER TABLE "public"."orbits" ADD CONSTRAINT "orbits_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table positions
-- ----------------------------
CREATE INDEX "idx_positions_body_id" ON "public"."positions" USING btree (
"body_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
CREATE INDEX "idx_positions_body_time" ON "public"."positions" USING btree (
"body_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
"time" "pg_catalog"."timestamp_ops" ASC NULLS LAST
);
CREATE INDEX "idx_positions_time" ON "public"."positions" USING btree (
"time" "pg_catalog"."timestamp_ops" ASC NULLS LAST
);
-- ----------------------------
-- Uniques structure for table positions
-- ----------------------------
ALTER TABLE "public"."positions" ADD CONSTRAINT "positions_body_time_unique" UNIQUE ("body_id", "time");
-- ----------------------------
-- Checks structure for table positions
-- ----------------------------
ALTER TABLE "public"."positions" ADD CONSTRAINT "chk_source" CHECK (source::text = ANY (ARRAY['nasa_horizons'::character varying, 'calculated'::character varying, 'user_defined'::character varying, 'imported'::character varying]::text[]));
-- ----------------------------
-- Primary Key structure for table positions
-- ----------------------------
ALTER TABLE "public"."positions" ADD CONSTRAINT "positions_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table resources
-- ----------------------------
CREATE INDEX "idx_resources_body_id" ON "public"."resources" USING btree (
"body_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
CREATE INDEX "idx_resources_type" ON "public"."resources" USING btree (
"resource_type" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
CREATE UNIQUE INDEX "idx_resources_unique" ON "public"."resources" USING btree (
"body_id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
"resource_type" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
"file_path" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Checks structure for table resources
-- ----------------------------
ALTER TABLE "public"."resources" ADD CONSTRAINT "chk_resource_type" CHECK (resource_type::text = ANY (ARRAY['texture'::character varying, 'model'::character varying, 'icon'::character varying, 'thumbnail'::character varying, 'data'::character varying]::text[]));
-- ----------------------------
-- Primary Key structure for table resources
-- ----------------------------
ALTER TABLE "public"."resources" ADD CONSTRAINT "resources_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table role_menus
-- ----------------------------
CREATE INDEX "idx_role_menus_menu_id" ON "public"."role_menus" USING btree (
"menu_id" "pg_catalog"."int4_ops" ASC NULLS LAST
);
CREATE INDEX "idx_role_menus_role_id" ON "public"."role_menus" USING btree (
"role_id" "pg_catalog"."int4_ops" ASC NULLS LAST
);
-- ----------------------------
-- Primary Key structure for table role_menus
-- ----------------------------
ALTER TABLE "public"."role_menus" ADD CONSTRAINT "role_menus_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table roles
-- ----------------------------
CREATE UNIQUE INDEX "ix_roles_name" ON "public"."roles" USING btree (
"name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Primary Key structure for table roles
-- ----------------------------
ALTER TABLE "public"."roles" ADD CONSTRAINT "roles_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table static_data
-- ----------------------------
CREATE INDEX "idx_static_data_category" ON "public"."static_data" USING btree (
"category" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
CREATE INDEX "idx_static_data_data" ON "public"."static_data" USING gin (
"data" "pg_catalog"."jsonb_ops"
);
CREATE INDEX "idx_static_data_name" ON "public"."static_data" USING btree (
"name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Uniques structure for table static_data
-- ----------------------------
ALTER TABLE "public"."static_data" ADD CONSTRAINT "uq_category_name" UNIQUE ("category", "name");
-- ----------------------------
-- Checks structure for table static_data
-- ----------------------------
ALTER TABLE "public"."static_data" ADD CONSTRAINT "chk_category" CHECK (category::text = ANY (ARRAY['constellation'::character varying, 'galaxy'::character varying, 'star'::character varying, 'nebula'::character varying, 'cluster'::character varying, 'asteroid_belt'::character varying, 'kuiper_belt'::character varying]::text[]));
-- ----------------------------
-- Primary Key structure for table static_data
-- ----------------------------
ALTER TABLE "public"."static_data" ADD CONSTRAINT "static_data_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table system_settings
-- ----------------------------
CREATE UNIQUE INDEX "ix_system_settings_key" ON "public"."system_settings" USING btree (
"key" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Primary Key structure for table system_settings
-- ----------------------------
ALTER TABLE "public"."system_settings" ADD CONSTRAINT "system_settings_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table tasks
-- ----------------------------
CREATE INDEX "idx_tasks_created_at" ON "public"."tasks" USING btree (
"created_at" "pg_catalog"."timestamptz_ops" DESC NULLS FIRST
);
CREATE INDEX "idx_tasks_status" ON "public"."tasks" USING btree (
"status" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Primary Key structure for table tasks
-- ----------------------------
ALTER TABLE "public"."tasks" ADD CONSTRAINT "tasks_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Primary Key structure for table user_roles
-- ----------------------------
ALTER TABLE "public"."user_roles" ADD CONSTRAINT "user_roles_pkey" PRIMARY KEY ("user_id", "role_id");
-- ----------------------------
-- Indexes structure for table users
-- ----------------------------
CREATE UNIQUE INDEX "ix_users_email" ON "public"."users" USING btree (
"email" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
CREATE UNIQUE INDEX "ix_users_username" ON "public"."users" USING btree (
"username" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Primary Key structure for table users
-- ----------------------------
ALTER TABLE "public"."users" ADD CONSTRAINT "users_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Foreign Keys structure for table menus
-- ----------------------------
ALTER TABLE "public"."menus" ADD CONSTRAINT "menus_parent_id_fkey" FOREIGN KEY ("parent_id") REFERENCES "public"."menus" ("id") ON DELETE CASCADE ON UPDATE NO ACTION;
-- ----------------------------
-- Foreign Keys structure for table orbits
-- ----------------------------
ALTER TABLE "public"."orbits" ADD CONSTRAINT "orbits_body_id_fkey" FOREIGN KEY ("body_id") REFERENCES "public"."celestial_bodies" ("id") ON DELETE CASCADE ON UPDATE NO ACTION;
-- ----------------------------
-- Foreign Keys structure for table positions
-- ----------------------------
ALTER TABLE "public"."positions" ADD CONSTRAINT "positions_body_id_fkey" FOREIGN KEY ("body_id") REFERENCES "public"."celestial_bodies" ("id") ON DELETE CASCADE ON UPDATE NO ACTION;
-- ----------------------------
-- Foreign Keys structure for table resources
-- ----------------------------
ALTER TABLE "public"."resources" ADD CONSTRAINT "resources_body_id_fkey" FOREIGN KEY ("body_id") REFERENCES "public"."celestial_bodies" ("id") ON DELETE CASCADE ON UPDATE NO ACTION;
-- ----------------------------
-- Foreign Keys structure for table role_menus
-- ----------------------------
ALTER TABLE "public"."role_menus" ADD CONSTRAINT "role_menus_menu_id_fkey" FOREIGN KEY ("menu_id") REFERENCES "public"."menus" ("id") ON DELETE CASCADE ON UPDATE NO ACTION;
ALTER TABLE "public"."role_menus" ADD CONSTRAINT "role_menus_role_id_fkey" FOREIGN KEY ("role_id") REFERENCES "public"."roles" ("id") ON DELETE CASCADE ON UPDATE NO ACTION;
-- ----------------------------
-- Foreign Keys structure for table user_roles
-- ----------------------------
ALTER TABLE "public"."user_roles" ADD CONSTRAINT "user_roles_role_id_fkey" FOREIGN KEY ("role_id") REFERENCES "public"."roles" ("id") ON DELETE CASCADE ON UPDATE NO ACTION;
ALTER TABLE "public"."user_roles" ADD CONSTRAINT "user_roles_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "public"."users" ("id") ON DELETE CASCADE ON UPDATE NO ACTION;